Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Treeve Jelbert (ac4c3949e593b87744948cba299d3a3db152a640)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Treeve Jelbert <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Treeve Jelbert (ac4c3949e593b87744948cba299d3a3db152a640)
  • Date: Sun, 3 Feb 2019 15:17:15 +0000

GIT changes to master grimoire by Treeve Jelbert <treeve AT sourcemage.org>:

graphics-libs/mesalib/BUILD | 15
graphics-libs/mesalib/CONFIGURE | 46 -
graphics-libs/mesalib/CONFLICTS | 2
graphics-libs/mesalib/DEPENDS | 112 --
graphics-libs/mesalib/DETAILS | 36
graphics-libs/mesalib/DOWNLOAD | 1
graphics-libs/mesalib/EXPORTS | 1
graphics-libs/mesalib/FINAL | 3
graphics-libs/mesalib/HISTORY | 661 ----------------
graphics-libs/mesalib/INSTALL | 1
graphics-libs/mesalib/PREPARE | 2
graphics-libs/mesalib/PRE_BUILD | 21
graphics-libs/mesalib/PRE_SUB_DEPENDS | 4
graphics-libs/mesalib/PROVIDES | 2
graphics-libs/mesalib/SUB_DEPENDS | 23
graphics-libs/mesalib/UP_TRIGGERS | 4
xorg-xserver/xorg-server/BUILD | 29
xorg-xserver/xorg-server/CONFIGURE | 178 ----
xorg-xserver/xorg-server/CONFLICTS | 4
xorg-xserver/xorg-server/DEPENDS | 145 ---
xorg-xserver/xorg-server/DETAILS | 31
xorg-xserver/xorg-server/DOWNLOAD | 1
xorg-xserver/xorg-server/EXPORTS | 1
xorg-xserver/xorg-server/FINAL | 13
xorg-xserver/xorg-server/HISTORY | 813
--------------------
xorg-xserver/xorg-server/INSTALL | 9
xorg-xserver/xorg-server/POST_RESURRECT | 4
xorg-xserver/xorg-server/PRE_BUILD | 13
xorg-xserver/xorg-server/PRE_SUB_DEPENDS | 14
xorg-xserver/xorg-server/PROVIDES | 2
xorg-xserver/xorg-server/REPAIR^all^EXPORTS | 1
xorg-xserver/xorg-server/REPAIR^all^POST_RESURRECT | 4
xorg-xserver/xorg-server/REPAIR^all^PRE_SUB_DEPENDS | 14
xorg-xserver/xorg-server/REPAIR^all^SUB_DEPENDS | 24
xorg-xserver/xorg-server/SUB_DEPENDS | 25
xorg-xserver/xorg-server/UP_TRIGGERS | 12
xorg-xserver/xorg-server/fix-CVE-2018-14665.patch | 25
xorg-xserver/xorg-server/gl_select.patch | 50 -
xorg-xserver/xorg-server/startxinitrc | 5
xorg-xserver/xorg-server/xinitrc.desktop | 6
40 files changed, 32 insertions(+), 2325 deletions(-)

New commits:
commit ac4c3949e593b87744948cba299d3a3db152a640
Author: Treeve Jelbert <treeve AT sourcemage.org>
Commit: Treeve Jelbert <treeve AT sourcemage.org>

deprecate graphics-libs/mesalib [replaced by mesa]

commit a8bdd10b1a16700466b364c02ca7dd537adb3b2a
Author: Treeve Jelbert <treeve AT sourcemage.org>
Commit: Treeve Jelbert <treeve AT sourcemage.org>

deprecate xorg-xserver/xorg-server [replaced by xserver]

diff --git a/graphics-libs/mesalib/BUILD b/graphics-libs/mesalib/BUILD
index 5ece048..27ba77d 100755
--- a/graphics-libs/mesalib/BUILD
+++ b/graphics-libs/mesalib/BUILD
@@ -1,14 +1 @@
-# I am confused about that. According to
-# https://bugs.freedesktop.org/show_bug.cgi?id=70471
-# llvm-config output should contain -fno-rtti.
-CXXFLAGS+=" -fno-rtti" &&
-
-local vulkan_drivers=${MESALIB_VULKAN// /,} &&
-vulkan_drivers=${vulkan_drivers//none/no} &&
-
-OPTS+=" --with-dri-drivers=${MESALIB_DRIVERS// /,} \
- --with-gallium-drivers=${MESALIB_GALLIUM// /,} \
- --with-vulkan-drivers=${vulkan_drivers} \
- --with-platforms=${MESA_EGL//\ /,} \
- ${MESALIB_OPTS}" &&
-default_build
+true
diff --git a/graphics-libs/mesalib/CONFIGURE b/graphics-libs/mesalib/CONFIGURE
deleted file mode 100755
index 10db778..0000000
--- a/graphics-libs/mesalib/CONFIGURE
+++ /dev/null
@@ -1,46 +0,0 @@
-list_remove MESALIB_OPTS "--enable-r600-llvm-compiler" &&
-
-. $GRIMOIRE/config_query_multi.function &&
-message "${MESSAGE_COLOR}MesaLib build types:\n" \
- "xlib: Stand-alone software rendering library;\n" \
- " Output is via xlib library functions;\n" \
- " No X server integration.\n" \
- "dri: Hardware acceleration in Linux with DRI-enabled kernel;\n"\
- " Integrated with DRI-enabled X server;\n" \
- " Required for building xorg-xserver with DRI enabled.\n" \
- "osmesa: Stand-alone software rendering library;\n" \
- " Off-screen rendering only;\n" \
- " No connection to X server at all.${DEFAULT_COLOR}" &&
-config_query_list MESALIB_BUILD \
- "Select build type?" \
- xlib \
- dri \
- osmesa &&
-
-case $MESALIB_BUILD in
- dri)
- AVAILABLE_DRIVERS="i915 i965 nouveau r200 radeon swrast"
-
- config_query_multi MESALIB_DRIVERS \
- "What drivers would you like to build?" \
- all $AVAILABLE_DRIVERS &&
-
- if list_find "$MESALIB_DRIVERS" all; then
- MESALIB_DRIVERS="$AVAILABLE_DRIVERS"
- fi
- ;;
- xlib)
- MESALIB_DRIVERS="swrast"
- ;;
-esac &&
-
-config_query_option MESALIB_OPTS "enable TLS support in GLX" n \
- "--enable-glx-tls" "--disable-glx-tls" &&
-# Vulkan support
-AVAILABLE_VULKAN="radeon intel"
-config_query_multi MESALIB_VULKAN \
- "which Vulkan drivers to build" \
- none all $AVAILABLE_VULKAN &&
-if list_find "$MESALIB_VULKAN" all; then
- MESALIB_VULKAN="$AVAILABLE_VULKAN"
-fi
diff --git a/graphics-libs/mesalib/CONFLICTS b/graphics-libs/mesalib/CONFLICTS
index 9cc9eaf..19d6b48 100755
--- a/graphics-libs/mesalib/CONFLICTS
+++ b/graphics-libs/mesalib/CONFLICTS
@@ -1 +1 @@
-conflicts mesalib-1x
+conflicts mesalib y
diff --git a/graphics-libs/mesalib/DEPENDS b/graphics-libs/mesalib/DEPENDS
deleted file mode 100755
index 40e6d67..0000000
--- a/graphics-libs/mesalib/DEPENDS
+++ /dev/null
@@ -1,112 +0,0 @@
-. "${GRIMOIRE}/FUNCTIONS" &&
-
-depends -sub "CXX" gcc &&
-depends bison &&
-depends flex &&
-depends gettext &&
-depends libdrm &&
-depends util-macros &&
-depends expat &&
-depends libxdamage &&
-depends libx11 &&
-depends libxshmfence &&
-depends nettle &&
-# Build process needs to work on some XML with that.
-# I do not test all configurations, therefore I pulled
-# the direct python dependency out of the llvm branch,
-# to be on the safe side.
-depends python &&
-depends -sub PYTHON libxml2 &&
-
-depends xorgproto &&
-
-if [[ "${MESALIB_BRANCH}" == "scm" ]]; then
- depends git
-fi &&
-
-if [[ "${MESALIB_BUILD}" == "dri" ]]; then
- depends libxext &&
- depends libxxf86vm &&
- depends libxdamage &&
- depends libxfixes &&
- depends libxcb &&
- depends expat &&
- optional_depends DEVICE-MANAGER \
- "" \
- "--enable-sysfs" \
- "Use a device manager instead of sysfs" &&
-
- optional_depends llvm \
- "--enable-llvm --enable-egl" \
- "--disable-llvm" \
- "for Gallium drivers" &&
-
- if is_depends_enabled "${SPELL}" "llvm"; then
- depends LIBELF &&
- depends mako &&
-
- local AVAILABLE_GALLIUM="i915 nouveau r300 r600 radeonsi freedreno svga
swrast vc4 virgl etnaviv imx" &&
-
- list_remove MESALIB_GALLIUM 'llvmpipe' &&
- list_remove MESALIB_GALLIUM 'radeon' &&
-
- config_query_multi MESALIB_GALLIUM \
- "What Gallium3D drivers would you like to build?" \
- all ${AVAILABLE_GALLIUM} &&
- if list_find "${MESALIB_GALLIUM}" "all"; then
- MESALIB_GALLIUM=${AVAILABLE_GALLIUM}
- fi &&
-
- # remove obsolete fbdev option
- list_remove MESA_EGL fbdev &&
- list_remove MESA_EGL wayland &&
-
- config_query_multi MESA_EGL "which EGL platforms?" android drm
surfaceless x11 &&
-
- list_remove MESALIB_OPTS '--disable-shared-glapi' &&
- list_add MESALIB_OPTS '--enable-shared-glapi'
-
- config_query_option MESALIB_OPTS "enable Generic Buffer Management?" n
\
- "--enable-gbm" "--disable-gbm"
- config_query_option MESALIB_OPTS "enable support for OpenGL ES 2.x
API?" n \
- "--enable-gles2" "--disable-gles2"
-
- if list_find "${MESALIB_GALLIUM}" "i915"; then
- sub_depends libdrm INTEL
- fi &&
- if list_find "${MESALIB_GALLIUM}" "nouveau"; then
- sub_depends libdrm NOUVEAU
- fi &&
- if (list_find "${MESALIB_GALLIUM}" "r300") ||
- (list_find "${MESALIB_GALLIUM}" "r600"); then
- sub_depends libdrm RADEON
- fi &&
- if list_find "${MESALIB_GALLIUM}" "radeonsi"; then
- sub_depends libdrm AMD
- fi
- fi
-fi &&
-
-if ( list_find "${MESALIB_DRIVERS}" i915 ) || \
- ( list_find "${MESALIB_DRIVERS}" i965); then
- sub_depends libdrm INTEL
-fi &&
-
-if ( list_find "${MESALIB_DRIVERS}" r200) || \
- ( list_find "${MESALIB_DRIVERS}" radeon); then
- sub_depends libdrm RADEON
-fi &&
-
-if ( list_find "${MESALIB_DRIVERS}" nouveau); then
- sub_depends libdrm NOUVEAU
-fi &&
-
-optional_depends libva "--enable-va" "--disable-va" "video
acceleration support" &&
-optional_depends libvdpau "--enable-vdpau" "--disable-vdpau" "VDPAU support"
&&
-optional_depends libxvmc "--enable-xvmc" "--disable-xvmc" "XvMC support
(obsolete)"
-optional_depends libunwind "--enable-libunwind" "--disable-libunwind"
"debugging" &&
-optional_depends libglvnd "--enable-libglvnd" "--disable-libglvnd" "GLVND
support" &&
-
-if ! is_depends_enabled "${SPELL}" "libglvnd"; then
- optional_depends smgl-gl_select "" "" "allow select OPENGL provider via
SMGL script"
-fi
diff --git a/graphics-libs/mesalib/DETAILS b/graphics-libs/mesalib/DETAILS
index 99d25b7..a45323e 100755
--- a/graphics-libs/mesalib/DETAILS
+++ b/graphics-libs/mesalib/DETAILS
@@ -1,32 +1,8 @@
-. ${GRIMOIRE}/FUNCTIONS
- SPELL="mesalib"
-if [[ "${MESALIB_BRANCH}" == "scm" ]]; then
- VERSION=$(get_scm_version)
- SOURCE="${SPELL}-git.tar.xz"
- FORCE_DOWNLOAD="on"
- SX="${SPELL}-git"
- SOURCE_URL[0]="git://anongit.freedesktop.org/git/mesa/mesa:${SX}"
- SOURCE_IGNORE="volatile"
-else
- VERSION="18.2.8"
-
SOURCE_HASH="sha256:1d2ed9fd435d86d95b7215b287258d3e6b1180293a36f688e5a2efc18298d863:UPSTREAM_HASH"
- SX="mesa-${VERSION}"
- SOURCE="${SX}.tar.xz"
- SOURCE_URL[0]="https://mesa.freedesktop.org/archive/${SOURCE}";
-fi
-SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SX}"
- LICENSE[0]="GPL"
- WEB_SITE="https://www.mesa3d.org/";
- KEYWORDS="graphics libs"
- ENTERED=20140414
- SHORT="Mesa implementation of the OpenGL(TM) API"
+ SPELL=mesalib
+ VERSION=0
+ PATCHLEVEL=9999
+ SHORT="deprecated"
cat << EOF
-Mesa is a 3-D graphics library with an API which is very similar to
-that of OpenGL.* To the extent that Mesa utilizes the OpenGL command
-syntax or state machine, it is being used with authorization from
-Silicon Graphics, Inc.(SGI). However, the author does not possess an
-OpenGL license from SGI, and makes no claim that Mesa is in any way a
-compatible replacement for OpenGL or associated with SGI. Those who
-want a licensed implementation of OpenGL should contact a licensed
-vendor.
+deprecated spell [replaced by mesa]
EOF
+
diff --git a/graphics-libs/mesalib/DOWNLOAD b/graphics-libs/mesalib/DOWNLOAD
new file mode 100755
index 0000000..27ba77d
--- /dev/null
+++ b/graphics-libs/mesalib/DOWNLOAD
@@ -0,0 +1 @@
+true
diff --git a/graphics-libs/mesalib/EXPORTS b/graphics-libs/mesalib/EXPORTS
deleted file mode 100755
index e9b2106..0000000
--- a/graphics-libs/mesalib/EXPORTS
+++ /dev/null
@@ -1 +0,0 @@
-MESALIB_BUILD
diff --git a/graphics-libs/mesalib/FINAL b/graphics-libs/mesalib/FINAL
deleted file mode 100755
index 913f00a..0000000
--- a/graphics-libs/mesalib/FINAL
+++ /dev/null
@@ -1,3 +0,0 @@
-if is_depends_enabled "${SPELL}" "smgl-gl_select"; then
- glselect mesa
-fi
diff --git a/graphics-libs/mesalib/HISTORY b/graphics-libs/mesalib/HISTORY
index 969992c..1ae4456 100644
--- a/graphics-libs/mesalib/HISTORY
+++ b/graphics-libs/mesalib/HISTORY
@@ -1,657 +1,4 @@
-2018-12-27 Pavel Vinogradov <public AT sourcemage.org>
- * DETAILS: version 18.2.8
-
-2018-09-07 Pavel Vinogradov <public AT sourcemage.org>
- * DETAILS: version 18.1.8
- * DEPENDS, FINAL, PRE_BUILD: made smgl-gl_select completely optional
- as in mesa
-
-2018-08-29 Pavel Vinogradov <public AT sourcemage.org>
- * DEPENDS, FINAL, PRE_BUILD: added libglvnd option
-
-2018-08-24 Pavel Vinogradov <public AT sourcemage.org>
- * DETAILS: version 18.1.7
-
-2018-08-13 Pavel Vinogradov <public AT sourcemage.org>
- * DETAILS: version 18.1.6
-
-2018-07-27 Pavel Vinogradov <public AT sourcemage.org>
- * DETAILS: version 18.1.5
-
-2018-07-13 Pavel Vinogradov <public AT sourcemage.org>
- * DETAILS: version 18.1.4
-
-2018-06-30 Pavel Vinogradov <public AT sourcemage.org>
- * DETAILS: version 18.1.3
-
-2018-06-16 Pavel Vinogradov <public AT sourcemage.org>
- * DETAILS: version 18.1.2
-
-2018-06-01 Pavel Vinogradov <public AT sourcemage.org>
- * DETAILS: version 18.1.1, switched to UPSTREAM_HASH because new
- public key is gpg2 only
-
-2018-05-17 Pavel Vinogradov <public AT sourcemage.org>
- * DETAILS: version 18.0.4
-
-2018-05-08 Ismael Luceno <ismael AT sourcemage.org>
- * SUB_DEPENDS: fixed duplicated ";;"
-
-2018-05-07 Pavel Vinogradov <public AT sourcemage.org>
- * DETAILS: version 18.0.3
-
-2018-04-28 Pavel Vinogradov <public AT sourcemage.org>
- * DETAILS: version 18.0.2
-
-2018-04-18 Pavel Vinogradov <public AT sourcemage.org>
- * DETAILS: version 18.0.1
-
-2018-04-10 Treeve Jelbert <treeve AT sourcemage.org>
- * SUB_DEPENDS PRE_SUB_DEPENDS:: delete WAYLAND
- * DEPENDS: delete wayland stuff
-
-2018-03-27 Pavel Vinogradov <public AT sourcemage.org>
- * DETAILS: version 18.0.0
-
-2018-03-22 Pavel Vinogradov <public AT sourcemage.org>
- * DETAILS: version 17.3.7
-
-2018-02-27 Pavel Vinogradov <public AT sourcemage.org>
- * DETAILS: version 17.3.6
-
-2018-02-20 Pavel Vinogradov <public AT sourcemage.org>
- * DETAILS: version 17.3.5
-
-2018-02-15 Pavel Vinogradov <public AT sourcemage.org>
- * DETAILS: version 17.3.4
- * DEPENDS: added git for scm branch, case -> if
-
-2018-02-06 Treeve Jelbert <treeve AT sourcemage.org>
- * DEPENDS: use xorgproto
-
-2018-01-20 Treeve Jelbert <treeve AT sourcemage.org>
- * DEPENDS: improve some flags
-
-2018-01-19 Pavel Vinogradov <public AT sourcemage.org>
- * DETAILS: version 17.3.3
-
-2018-01-09 Pavel Vinogradov <public AT sourcemage.org>
- * DETAILS: version 17.3.2
-
-2017-12-21 Pavel Vinogradov <public AT sourcemage.org>
- * DETAILS: version 17.3.1
-
-2017-12-08 Pavel Vinogradov <public AT sourcemage.org>
- * DETAILS: version 17.3.0
-
-2017-11-25 Pavel Vinogradov <public AT sourcemage.org>
- * DETAILS: version 17.2.6
-
-2017-11-11 Pavel Vinogradov <public AT sourcemage.org>
- * DETAILS: version 17.2.5
-
-2017-10-30 Pavel Vinogradov <public AT sourcemage.org>
- * DETAILS: version 17.2.4
-
-2017-10-19 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 17.2.3
- * PROVIDES: add MESA
- * DEPENDS: add libunwind
-
-2017-10-02 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 17.2.2
-
-2017-09-27 Thomas Orgis <sobukus AT sourcemage.org>
- * DEPENDS: libxml2 with PYTHON
-
-2017-09-18 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 17.2.1
-
-2017-09-05 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 17.2.0
-
-2017-08-28 Pavel Vinogradov <public AT sourcemage.org>
- * DETAILS: version 17.1.8
-
-2017-08-21 Pavel Vinogradov <public AT sourcemage.org>
- * DETAILS: version 17.1.7
-
-2017-08-07 Pavel Vinogradov <public AT sourcemage.org>
- * DETAILS: version 17.1.6
-
-2017-07-14 Pavel Vinogradov <public AT sourcemage.org>
- * DETAILS: version 17.1.5
-
-2017-07-01 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 17.1.4
-
-2017-06-19 Pavel Vinogradov <public AT sourcemage.org>
- * DETAILS: version 17.1.3
- * PRE_BUILD: removed LLVM linking fix
-
-2017-06-14 Ismael Luceno <ismael AT sourcemage.org>
- * DEPENDS: Remove ilo, not available anymore
-
-2017-06-05 Pavel Vinogradov <public AT sourcemage.org>
- * DETAILS: version 17.1.2
-
-2017-05-25 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 17.1.1
-
-2017-05-10 Pavel Vinogradov <public AT sourcemage.org>
- * DETAILS: version 17.1.0
-
-2017-04-30 Pavel Vinogradov <public AT sourcemage.org>
- * DETAILS: version 17.0.5
-
-2017-04-17 Pavel Vinogradov <public AT sourcemage.org>
- * DETAILS: version 17.0.4
- * BUILD: --with-egl-platforms -> --with-platforms
- * DEPENDS: reworked previous messy changes, updated available
- EGL platforms list
-
-2017-04-04 Eric Sandall <sandalle AT sourcemage.org>
- * DEPENDS: 17+ needs LIBDRM_AMD built in libdrm
- Which requires llvm for 'radv', so llvm is no longer optional.
- Always enable shared GL API.
- Remove unknown Gallium drivers llvmpipe and radeon.
- Add new Gallium drivers ilo, freedreno, vc4, etnaviv, and imx.
-
-2017-04-02 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 17.0.3
-
-2017-03-23 Pavel Vinogradov <public AT sourcemage.org>
- * CONFIGURE, DEPENDS: reorganized the code around Gallium drivers
-
-2017-03-21 Pavel Vinogradov <public AT sourcemage.org>
- * DETAILS: removed STAGED_INSTALL=off, caused missing dri and vdpau
- drivers
-
-2017-03-20 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 17.0.2
-
-2017-03-04 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 17.0.1
- * PRE_BUILD: remove vulkan fix
-
-2017-03-04 Treeve Jelbert <treeve AT sourcemage.org>
- switch url to https
-
-2017-03-01 Pavel Vinogradov <public AT sourcemage.org>
- * PRE_BUILD: added a fix for proper linking with our
- libLLVMAMDGPUInfo.so
-
-2017-02-13 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 17.0.0
- add gpg checking
- * CONFIGURE: delete ilo as an option
-
-2017-01-05 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 13.0.3
-
-2017-01-03 Pavel Vinogradov <public AT sourcemage.org>
- * PRE_BUILD: removed fixes for flex 2.6.2
-
-2016-12-06 Pavel Vinogradov <public AT sourcemage.org>
- * BUILD: added filtering of Vulkan choices here, reformatted OPTS
- * CONFIGURE: dropped Vulkan choice check for "none"
-
-2016-11-28 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 13.0.2
-
-2016-11-14 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 13.0.1
-
-2016-11-01 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 13.0.0
- * DEPENDS: add nettle
- * CONFIGURE: more gallium options
- vulkan support
- * BUILD: vulkan support
- * PRE_BUILD: fix vulkan build
-
-2016-10-26 Pavel Vinogradov <public AT sourcemage.org>
- * PRE_BUILD: added a fix to compile with flex 2.6.2
-
-2016-10-19 Pavel Vinogradov <public AT sourcemage.org>
- * PREPARE: added again for proper branching
-
-2016-10-14 Ismael Luceno <ismael AT sourcemage.org>
- * DEPENDS: libelf -> LIBELF
-
-2016-10-06 Pavel Vinogradov <public AT sourcemage.org>
- * PRE_BUILD: fixed sed script for headers according to scm branch,
- generalized search pattern
-
-2016-09-15 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 12.0.3
-
-2016-09-07 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 12.0.2
-
-2016-07-18 Pavel Vinogradov <public AT sourcemage.org>
- * DETAILS: more cleanups, reusability++
- * DEPENDS: removed python3 for scm branch, upstream rolled back to
- python2, ' -> ", escaping++
-
-2016-07-16 Pavel Vinogradov <public AT sourcemage.org>
- * DETAILS: fixed scm branch version (2), corrected variables'
- escaping and reusability
-
-2016-07-09 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 12.0.1
-
-2016-07-08 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 12.0.0
-
-2016-07-07 Thomas Orgis <sobukus AT sourcemage.org>
- * UP_TRIGGERS: re-added in new form, only triggering
- on the jump over version 9.0
-
-2016-07-07 Pavel Vinogradov <public AT sourcemage.org>
- * PRE_BUILD: replaced gl_select.patch with sed scripts
- * gl_select.patch: removed
-
-2016-07-05 Treeve Jelbert <treeve AT sourcemage.org>
- * UP_TRIGGERS: deleted, rely on xorg-server's triggers
-
-2016-05-23 Pavel Vinogradov <public AT sourcemage.org>
- * DEPENDS: scm branch needs python3 as well
-
-2016-05-12 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 11.2.2
-
-2016-04-18 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 11.2.1
-
-2016-04-04 Pavel Vinogradov <public AT sourcemage.org>
- * DETAILS: fixed scm branch version
-
-2016-04-04 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 11.2.0
-
-2016-02-11 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 11.1.2
-
-2016-01-15 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 11.1.1
- * DEPENDS: remove obsolete dependencies
-
-2015-12-17 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 11.1.0
- * BUILD, DEPENDS: tweak
-
-2015-12-12 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 11.0.7
-
-2015-11-21 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 11.0.6
-
-2015-11-13 Eric Sandall <sandalle AT sourcemage.org>
- * DEPENDS: dri3 support is not optional in 11.x
-
-2015-11-11 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 11.0.5
-
-2015-10-25 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 11.0.4
-
-2015-10-11 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 11.0.3
-
-2015-09-30 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 11.0.2
-
-2015-09-22 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 11.0.0
- * CONFIGURE DEPNDS: adjust
- * mesa-10.0-nv50-fix-build.patch: deleted
- * gl_select.patch: updated
- * PRE_BUILD: do not apply nv50 patch
-
-2015-09-13 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
- * DETAILS: version 10.6.7
-
-2015-09-07 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 10.6.6
-
-2015-08-22 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 10.6.5
-
-2015-08-14 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 10.6.4
-
-2015-07-28 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
- * DEPENDS: unconditionally depend on glproto, dri3proto,
- presentproto, libxshmfence
-
-2015-07-27 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 10.6.3
-
-2015-07-13 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 10.6.2
-
-2015-06-30 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 10.6.1
-
-2015-06-16 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 10.6.0
- * CONFIGURE: delete obsolete fbdev usage
- * RECAST: delete spurios file
-
-2015-05-28 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 10.5.6
-
-2015-05-24 Remko van der Vossen <wich AT sourcemage.org>
- * DEPENDS: clean up overzealous dependencies
-
-2015-05-12 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 10.5.5
-
-2015-05-05 Thomas Orgis <sobukus AT sourcemage.org>
- * DEPENDS: depend on smgl-gl_select
- * FINAL: call glselect (smgl-gl_select behind it)
-
-2015-04-25 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 10.5.4
- * DEPENDS: add gettext
-
-2015-04-24 Thomas Orgis <sobukus AT sourcemage.org>
- * DEPENDS: I beg to differ. The mesalib build I see really, really
- wants mako and python (python2, to be specific)!
-
-2015-03-29 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 10.5.2
- * DEPENDS: mako, python nolonger needed
-
-2015-03-22 Thomas Orgis <sobukus AT sourcemage.org>
- * BUILD: hack for finding moved libelf headers
- (--enable-compat in libelf build being another possibility)
- * DEPENDS: quote lists in list_find
-
-2015-03-20 Thomas Orgis <sobukus AT sourcemage.org>
- * UP_TRIGGERS: Use plain grep, not grep -P. This is an optional
feature.
-
-2015-03-19 Sukneet Basuta <sukneet AT sourcemage.org>
- * gl_select.patch: update to put libGLES files under .mesa
-
-2015-03-14 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 10.5.1
-
-2015-03-08 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 10.5.0
- * DEPENDS: add mako, now needed fot build
- UDEV => DEVICE-MANAGER
-
-2015-02-07 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 10.4.4
- * DEPENDS: tweak wayland support
-
-2015-01-13 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 10.4.2
-
-2015-01-01 Eric Sandall <sandalle AT sourcemage.org>
- * DEPENDS: Depends on g++ (CXX in gcc) from IRC
-
-2014-12-16 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 10.4.0
- * gl_select.patch: update, some files werre deleted
- * DEPENDS: radeonsi needs libelf
-
-2014-10-30 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 10.3.2
-
-2014-10-18 Jeremy Blosser <jblosser AT sourcemage.org>
- * DETAILS: Add missing 'fi'.
- * CONFIGURE: Account for $GALLIUM_DRIVERS getting stored as "" when
set
- to "none".
-
-2014-09-25 Treeve Jelbert <treeve AT sourcemage.org>
- * rename spell => mesalib
- * UP_TRIGGERS: added, detect old mesalib libraries
- * PROVIDES: delete MESALIB
-
-2014-09-25 Remko van der Vossen <wich AT sourcemage.org>
- * DEPENDS: libxt
- * DETAILS: development: 7.11.2
-
-2014-09-19 Treeve Jelbert <treeve AT sourcemage.org>
- * SUB_DEPENDS, PRE_SUB_DEPENDS,DEPENDS: fix list_find usage
-
-2014-08-24 Thomas Orgis <sobukus AT sourcemage.org>
- * BUILD, CONFIGURE: Change driver selection and make this beast build.
- It is not perfect, but results in a working build including r600 and
- nouveau drivers for me.
- * PRE_BUILD, mesa-10.0-nv50-fix-build.patch: Remove typeid usage since
- RTTI just won't work for us (another way would be to hack enforced
NDEBUG
- where it belongs).
-
-2014-08-23 Thomas Orgis <sobukus AT sourcemage.org>
- * DETAILS: version 10.2.6
-
-2014-08-11 Sukneet Basuta <sukneet AT sourcemage.org>
- * PRE_BUILD, gl_select.patch: added to install GL headers and libs
- to correct path for smgl-gl_select
-
-2014-08-03 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 10.2.5
-
-2014-07-18 Sukneet Basuta <sukneet AT sourcemage.org>
- * DEPENDS: corrected libdrm NOUVEAU sub_depends to NV
-
-2014-07-11 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 10.2.3
-
-2014-07-03 Ismael Luceno <ismael AT sourcemage.org>
- * DETAILS: Use get_scm_version
-
-2014-06-25 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 10.2.2
-
-2014-06-07 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 10.2.1
-
-2014-05-10 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 10.1.3
-
-2014-14-19 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 10.1.1
-
-2014-14-14 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 10.1.0
-
-2014-04-14 Treeve Jelbert <treeve AT sourcemage.org>
- * PROVIDES: add MESALIB
- * CONFLICTS: added, conflicts mesalib-1x
-
-2013-05-31 Eric Sandall <sandalle AT sourcemage.org>
- * DEPENDS: GLUT functionality depends on libxmu and libxi (plus
libx11)
-
-2012-07-26 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version git
- use STAGED_INSTALL=off, as 'make install' tries to
- create invalid hard links
- simplified version of spell from main grimoire
-
-2012-06-29 Vlad Glagolev <stealth AT sourcemage.org>
- * DETAILS: PATCHLEVEL=1
- * CONFIGURE: removed commented flags (moved to DEPENDS)
- * PROVIDES: removed GLUT, mesalib can't provide GLUT since it doesn't
- install GL/glut.h header, but requires it; plus GLU != GLUT
- * DEPENDS: added missing optional dependency on GLUT if GLU had been
- enabled; corrected list_find
-
-2011-11-21 Eric Sandall <sandalle AT sourcemage.org>
- * DETAILS: Latest development is 7.11.1
- Spell "development" correctly (and match PREPARE)
- * DEPENDS: llvm is required to build at least r300 Gallium drivers in
7.11
- * PRE_BUILD: No X11R6 mentioned in Makefiles and no Makefile.template
- for dri driver for 7.11.
- * PRE_BUILD, PRE_SUB_DEPENDS, SUB_DEPENDS: MESALIB_VER ->
MESALIB_BRANCH
- Also, "git" -> "scm" for MESALIB_BRANCH selection
-
-2011-09-27 Ismael Luceno <ismael AT sourcemage.org>
- * CONFIGURE: Fix broken case statement
-
-2011-09-26 Vlad Glagolev <stealth AT sourcemage.org>
- * DETAILS: select stable branch by default
-
-2011-09-22 Ismael Luceno <ismael AT sourcemage.org>
- * CONFIGURE, DEPENDS, DETAILS, PREPARE: Use prepare_select_branch
-
-2011-06-24 Vlad Glagolev <stealth AT sourcemage.org>
- * DEPENDS: correctly compare versions
-
-2011-06-14 Ladislav Hagara <hgr AT vabo.cz>
- * DETAILS: 7.10.3 (feature, developement)
-
-2011-04-10 Ladislav Hagara <hgr AT vabo.cz>
- * DETAILS: 7.10.2 (feature, developement)
-
-2011-03-03 Ladislav Hagara <hgr AT vabo.cz>
- * DETAILS: 7.9.2 (stable), 7.10.1 (feature, developement)
-
-2011-02-27 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
- * PRE_BUILD: apply Makefile-fix-sed-expression.patch to all versions
-
-2011-02-16 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
- * PRE_BUILD, Makefile-fix-sed-expression.patch: added patch to fix
- error caused by malformed sed expression
-
-2011-02-11 Vlad Glagolev <stealth AT sourcemage.org>
- * REPAIR^all^EXPORTS: really export MESALIB_BUILD
-
-2011-01-13 Vlad Glagolev <stealth AT sourcemage.org>
- * {REPAIR^all^,}EXPORTS: added, to export MESALIB_BUILD
-
-2011-01-11 Remko van der Vossen <wich AT sourcemage.org>
- * DEPENDS: stable now too depends on talloc and needs python bindings
- for libxml
-
-2011-01-10 Ladislav Hagara <hgr AT vabo.cz>
- * DETAILS: 7.9.1 (stable), 7.10 (feature, developement)
- * CONFIGURE: MESALIB_GALLIUM updated
-
-2011-01-07 Ladislav Hagara <hgr AT vabo.cz>
- * CONFIGURE: config_query_multi MESALIB_GALLIUM updated
- * CONFIGURE: AVAILABLE_DRIVERS updated
- * SUB_DEPENDS: added r600 to stable's AVAILABLE_DRIVERS
-
-2010-12-22 Ladislav Hagara <hgr AT vabo.cz>
- * DETAILS: 7.8.2 (stable), 7.9 (feature, developement)
- * PRE_BUILD, gl_select.patch: patch removed
-
-2010-11-12 Andraž "ruskie" Levstik <ruskie+f03a580f AT codemages.net>
- * gl_select-scm.patch: fixes for glselect
- * gl_select.patch: fixes for glselect
-
-2010-10-14 Eric Sandall <sandalle AT sourcemage.org>
- * BUILD: Radeon's mklib does not properly pass '-s' to LDFLAGS (bad
fix)
-
-2010-10-05 Vasil Yonkov <spirtbrat AT sourcemage.org>
- * DETAILS: feature => 7.6.2, developement => 7.9;
- updated MESALIB_VER=developement to 7.9
- updated MESALIB_VER=feature to 7.6.1
- BUILD: updated gallium options, added MESALIB_OPTS;
- CONFIGURE: updated gallium and dri drivers options; added missing
options;
- DEPENDS: made libxt optional; added conditional sub_depends on
libdrm;
- added talloc
-
-2010-09-14 Pol Vinogradov <vin.public AT gmail.com>
- * PRE_BUILD: removed link creation for git branch
-
-2010-08-19 Arjan Bouter <abouter AT sourcemage.org>
- * PROVIDES: enabled GLUT again, see docs/glu.html
- * DEPENDS: added talloc for the scm version
- * PRE_BUILD, autogen.patch: fixed autogen.sh for scm version
-
-2010-06-17 Ladislav Hagara <hgr AT vabo.cz>
- * DETAILS: 7.8.2 (development)
-
-2010-06-13 Robin Cook <rcook AT wyrms.net>
- * PROVIDES: removed GLUT
-
-2010-04-26 Eric Sandall <sandalle AT sourcemage.org>
- * CONFIGURE, SUB_DEPENDS: Enable nouveau for 7.8.1+ (development)
-
-2010-04-10 Treeve Jelbert <treeve AT sourcemage.org>
- * DEPENDS: remove imake, not needed
- * REPAIR^cfe9d942370d8c12716d288816996d37^DEPENDS: deleted
-
-2010-04-06 Eric Sandall <sandalle AT sourcemage.org>
- * {PRE_,}SUB_DEPENDS: Allow requiring non-stable (e.g. for new
- xf86-video-ati which needs the new KMS code)
-
-2010-04-06 Vasil Yonkov <spirtbrat AT sourcemage.org>
- * DETAILS: updated MESALIB_VER=developement to 7.8.1
-
-2010-04-03 Ladislav Hagara <hgr AT vabo.cz>
- * PRE_BUILD: removed sedit, none X11R6 in dri_glx.c (7.5.2, 7.7.1,
7.8)
-
-2010-03-31 Vasil Yonkov <spirtbrat AT sourcemage.org>
- * DETAILS: updated MESALIB_VER=feature to 7.7.1
- updated MESALIB_VER=developement to 7.8
-
-2010-02-26 Eric Sandall <sandalle AT sourcemage.org>
- * INSTALL: Fails with multiple make jobs
-
-2010-02-10 Pol Vinogradov <vin.public AT gmail.com>
- * PRE_BUILD: fix for git branch
-
-2010-02-03 Vasil Yonkov <spirtbrat AT sourcemage.org>
- * DETAILS, PREPARE: added a default version
-
-2010-01-23 Vasil Yonkov <spirtbrat AT sourcemage.org>
- * CONFIGURE, DEPENDS, DETAILS, PREPARE, PRE_BUILD,
- SUB_DEPENDS: added test and developement branches
-
-2010-01-02 Robert Figura <template AT sourcemage.org>
- * DETAILS: version 7.5.2
-
-2009-10-03 Treeve Jelbert <treeve AT sourcemage.org>
- * DEPENDS: force sub_depends XCB for libx11
-
-2009-09-13 Peng Chang (Charles) <chp AT sourcemage.org>
- * DETAILS: updated to 7.5.1, also updated SOURCE_URL and WEB_SITE
-
-2009-08-06 Arjan Bouter <abouter AT sourcemage.org>
- * CONFIGURE, BUILD: added gallium drivers
-
-2009-07-31 Eric Sandall <sandalle AT sourcemage.org>
- * DEPENDS: Bash does not support floating point arithmetic, reduce
- to integer.
- Need to use -lt instead of < for comparison otherwise stupid simple
- math such as 2411 < 243 will be true, but 2411 < 241 will be false.
- This fixes libdrm always being forced
- * PRE_BUILD: autogen.sh only exists in GIT checkout so only fix there
-
-2009-07-28 Arjan Bouter <abouter AT sourcemage.org>
- * PRE_BUILD: moved the sedit for configure
-
-2009-07-25 Arjan Bouter <abouter AT sourcemage.org>
- * PRE_BUILD: add patch for scm version, don't run configure
- from autogen.sh
- * DEPENDS: added optional dep on libxcb
- * CONFIGURE, SUB_DEPENDS: added r600 for scm version
- * PROVIDES: provides GLUT
- * gl_select-scm.patch: added
-
-2009-07-17 Eric Sandall <sandalle AT sourcemage.org>
- * DETAILS: Updated to 7.5
- SOURCE matches upstream posted MD5
-
-2009-06-24 Ladislav Hagara <hgr AT vabo.cz>
- * DETAILS: 7.4.4
-
-2009-06-20 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 7.4.3
-
-2009-05-28 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 7.4.2
-
-2009-04-18 Eric Sandall <sandalle AT sourcemage.org>
- * DETAILS: Updated to 7.4.1
-
-2009-04-01 Andraž "ruskie" Levstik <ruskie AT mages.ath.cx>
- * DETAILS: updated spell to 7.4
-
+2019-02-03 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 0
+ PATCHLEVEL=9999
+ spell deprecated [replaced by mesa]
diff --git a/graphics-libs/mesalib/INSTALL b/graphics-libs/mesalib/INSTALL
new file mode 100755
index 0000000..27ba77d
--- /dev/null
+++ b/graphics-libs/mesalib/INSTALL
@@ -0,0 +1 @@
+true
diff --git a/graphics-libs/mesalib/PREPARE b/graphics-libs/mesalib/PREPARE
deleted file mode 100755
index e38d86f..0000000
--- a/graphics-libs/mesalib/PREPARE
+++ /dev/null
@@ -1,2 +0,0 @@
-. "${GRIMOIRE}/FUNCTIONS" &&
-prepare_select_branch stable scm
diff --git a/graphics-libs/mesalib/PRE_BUILD b/graphics-libs/mesalib/PRE_BUILD
index 8ba19cd..27ba77d 100755
--- a/graphics-libs/mesalib/PRE_BUILD
+++ b/graphics-libs/mesalib/PRE_BUILD
@@ -1,20 +1 @@
-default_pre_build &&
-
-if is_depends_enabled "${SPELL}" "smgl-gl_select"; then
- cd ${SOURCE_DIRECTORY}/src &&
- sed -e '/lib_LTLIBRARIES/s:lib_:egl&:' \
- -e '/lib_LTLIBRARIES/iegllibdir = ${libdir}/.mesa' \
- -i egl/Makefile.am &&
- sed -e '/lib_LTLIBRARIES/s:lib_:gl_:' \
- -e '/gl_LTLIBRARIES/igldir = ${libdir}/.mesa' \
- -i glx/Makefile.am &&
- sed -e '/lib_LTLIBRARIES += es1api/s:lib_LTLIBRARIES +=:gles_LTLIBRARIES
=:' \
- -e '/gles_LTLIBRARIES = es1api/iglesdir = ${libdir}/.mesa' \
- -e '/lib_LTLIBRARIES += es2api/s:lib_LTLIBRARIES +=:gles2_LTLIBRARIES
=:' \
- -e '/gles2_LTLIBRARIES = es2api/igles2dir = ${libdir}/.mesa' \
- -i mapi/Makefile.am &&
- sed -i '/includedir/s;GL;&/.mesa;' Makefile.am mesa/Makefile.am
-fi &&
-
-cd ${SOURCE_DIRECTORY} &&
-autoreconf -f -i --symlink
+true
diff --git a/graphics-libs/mesalib/PRE_SUB_DEPENDS
b/graphics-libs/mesalib/PRE_SUB_DEPENDS
deleted file mode 100755
index bf78a14..0000000
--- a/graphics-libs/mesalib/PRE_SUB_DEPENDS
+++ /dev/null
@@ -1,4 +0,0 @@
-case $THIS_SUB_DEPENDS in
- DRI) [[ $MESALIB_BUILD == dri ]] && return 0 ;;
-esac
-return 1
diff --git a/graphics-libs/mesalib/PROVIDES b/graphics-libs/mesalib/PROVIDES
deleted file mode 100755
index 45eb22c..0000000
--- a/graphics-libs/mesalib/PROVIDES
+++ /dev/null
@@ -1,2 +0,0 @@
-OPENGL
-MESA
diff --git a/graphics-libs/mesalib/SUB_DEPENDS
b/graphics-libs/mesalib/SUB_DEPENDS
deleted file mode 100755
index b01b7f5..0000000
--- a/graphics-libs/mesalib/SUB_DEPENDS
+++ /dev/null
@@ -1,23 +0,0 @@
-case $THIS_SUB_DEPENDS in
- DRI)
- MESALIB_BUILD=dri &&
- persistent_add MESALIB_BUILD &&
-
- message "${MESSAGE_COLOR}DRI support requested, forcing build type" \
- "$MESALIB_BUILD for architecture\n${SMGL_COMPAT_ARCHS[1]}." \
- "$DEFAULT_COLOR" &&
-
- . $GRIMOIRE/config_query_multi.function &&
- if [[ $MESALIB_BUILD == dri ]]; then
- AVAILABLE_DRIVERS="i915 i965 nouveau r200 radeon swrast" &&
-
- config_query_multi MESALIB_DRIVERS \
- "What drivers would you like to build?" \
- $AVAILABLE_DRIVERS &&
- if list_find "$MESALIB_DRIVERS" all
- then
- MESALIB_DRIVERS="$AVAILABLE_DRIVERS"
- fi
- fi ;;
- *) echo "Unknown sub_depends $THIS_SUB_DEPENDS!"; return 1 ;;
-esac
diff --git a/graphics-libs/mesalib/UP_TRIGGERS
b/graphics-libs/mesalib/UP_TRIGGERS
index 5340938..5f1b84b 100755
--- a/graphics-libs/mesalib/UP_TRIGGERS
+++ b/graphics-libs/mesalib/UP_TRIGGERS
@@ -1,3 +1 @@
-. "$GRIMOIRE/FUNCTIONS" &&
-# Version 9.0 spun off GLU.
-check_dependents_versionjump $SPELL $VERSION 9.0
+up_trigger mesa cast_self
diff --git a/xorg-xserver/xorg-server/BUILD b/xorg-xserver/xorg-server/BUILD
index 90d8cae..27ba77d 100755
--- a/xorg-xserver/xorg-server/BUILD
+++ b/xorg-xserver/xorg-server/BUILD
@@ -1,28 +1 @@
-# fix for a gcc 4.2.0 regression
-# http://gcc.gnu.org/bugzilla/show_bug.cgi?id=30052
-if [[ $(installed_version gcc) == "4.2.0" ]] ; then
-CFLAGS="${CFLAGS/-Os/-O0}"
-CXXFLAGS="${CXXFLAGS/-Os/-O0}"
-CFLAGS="${CFLAGS/-O/-O0}"
-CXXFLAGS="${CXXFLAGS/-O/-O0}"
-CFLAGS="${CFLAGS/-O1/-O0}"
-CXXFLAGS="${CXXFLAGS/-O1/-O0}"
-CFLAGS="${CFLAGS/-O2/-O0}"
-CXXFLAGS="${CXXFLAGS/-O2/-O0}"
-CFLAGS="${CFLAGS/-O3/-O0}"
-CXXFLAGS="${CXXFLAGS/-O3/-O0}"
-fi &&
-VGC=$(installed_version gcc) &&
-VGC=${VGC%.?} &&
-if [[ "${VGC}" == "4.7" ]] || [[ "${VGC}" == "5.1" ]] ; then
- CFLAGS+=" -Wno-error=array-bounds"
-fi &&
-message CFLAGS=$CFLAGS
-OPTS="${XORG_SERVER_OPTS} \
- --with-xkb-output=$TRACK_ROOT/var/lib/xkb \
- --with-fontrootdir=${TRACK_ROOT}/usr/share/fonts/X11 \
- --disable-secure-rpc \
- --disable-xwin \
- --enable-dbe \
- ${OPTS}" &&
-default_build
+true
diff --git a/xorg-xserver/xorg-server/CONFIGURE
b/xorg-xserver/xorg-server/CONFIGURE
deleted file mode 100755
index 7b233cb..0000000
--- a/xorg-xserver/xorg-server/CONFIGURE
+++ /dev/null
@@ -1,178 +0,0 @@
-list_remove XORG_SERVER_OPTS "--enable-multibuffer" "--disable-multibuffer"
-list_remove XORG_SERVER_OPTS "--enable-aiglx" "--disable-aiglx"
-
-. $GRIMOIRE/config_query_multi.function
-
-# for order see configure.ac
-config_query_list XORG_SHA1 "Choose SHA1 implementation:" \
- nettle \
- libgcrypt \
- openssl &&
-
-config_query XORG_XINITRC_XSESSION \
- "install a .desktop file that calls the user's .xinitrc?" \
- n
&&
-
-config_query_option XORG_SERVER_OPTS \
- "Build documentation?" \
- n \
- "--enable-docs" \
- "--disable-docs" &&
-
-config_query_option XORG_SERVER_OPTS \
- "Build Glamor, for radeon?" \
- n \
- "--enable-glamor" \
- "--disable-glamor"
&&
-
-config_query_option XORG_SERVER_OPTS \
- "Build XRes extension?" \
- y \
- "--enable-xres" \
- "--disable-xres"
&&
-
-config_query_option XORG_SERVER_OPTS \
- "Build DPMS extension?" \
- y \
- "--enable-dpms" \
- "--disable-dpms"
&&
-
-
-config_query_option XORG_SERVER_OPTS \
- "Build Record extension?" \
- y \
- "--enable-record" \
- "--disable-record"
&&
-
-config_query_option XORG_SERVER_OPTS \
- "Build XDMCP extension?" \
- y \
- "--enable-xdmcp" \
- "--disable-xdmcp"
&&
-
-config_query_option XORG_SERVER_OPTS \
- "Build XDM_Auth_1 extension?" \
- y \
- "--enable-xdm-auth-1" \
- "--disable-xdm-auth-1"
&&
-
-config_query_option XORG_SERVER_OPTS \
- "Build GLX extension?" \
- y \
- "--enable-glx" \
- "--disable-glx"
&&
-
-config_query_option XORG_SERVER_OPTS \
- "Build DRI extension?" \
- y \
- "--enable-dri" \
- "--disable-dri"
&&
-
-config_query_option XORG_SERVER_OPTS \
- "Build Security extension?" \
- y \
- "--enable-xcsecurity" \
- "--disable-xcsecurity"
&&
-
-config_query_option XORG_SERVER_OPTS \
- "Build X-ACE extension?" \
- y \
- "--enable-xace" \
- "--disable-xace"
&&
-
-config_query_option XORG_SERVER_OPTS \
- "Build Xorg server?" \
- y \
- "--enable-xorg" \
- "--disable-xorg"
&&
-
-config_query_option XORG_SERVER_OPTS \
- "Build Xvfb server?" \
- y \
- "--enable-xvfb" \
- "--disable-xvfb"
&&
-
-config_query_option XORG_SERVER_OPTS \
- "Build Xnest server?" \
- n \
- "--enable-xnest" \
- "--disable-xnest"
&&
-
-message "${SPELL_COLOR}$SPELL${DEFAULT_COLOR} provides some advanced" \
- "${PROBLEM_COLOR}EXPERIMENTAL${DEFAULT_COLOR} options that may" \
- "${PROBLEM_COLOR}BREAK${DEFAULT_COLOR} the build or the final" \
- "executing of the server. So answer the following carefully"
&&
-
-config_query XORG_SERVER_ADVANCED "Do you wish the advanced options?" n
&&
-
-if [[ $XORG_SERVER_ADVANCED == y ]] ; then
-config_query_option XORG_SERVER_OPTS \
- "Build kdrive servers (EXPERIMENTAL)?" \
- n \
- "--enable-kdrive" \
- "--disable-kdrive"
&&
-
-config_query_option XORG_SERVER_OPTS \
- "Build the kdrive Xephyr server (EXPERIMENTAL)?" \
- n \
- "--enable-xephyr" \
- "--disable-xephyr"
&&
-
-config_query_option XORG_SERVER_OPTS \
- "Build the kdrive Xsdl server (EXPERIMENTAL)?" \
- n \
- "--enable-xsdl" \
- "--disable-xsdl"
&&
-
-config_query_option XORG_SERVER_OPTS \
- "Build the kdrive Xfbdev server (EXPERIMENTAL)?" \
- n \
- "--enable-xfbdev" \
- "--disable-xfbdev"
&&
-
-config_query_option XORG_SERVER_OPTS \
- "Build the kdrive Xfake server (EXPERIMENTAL)?" \
- n \
- "--enable-xfake" \
- "--disable-xfake"
&&
-# this tends to break stuff badly
-config_query_option XORG_SERVER_OPTS \
- "Install Xorg server as owned by root with setuid bit
(EXPERIMENTAL)?" \
- y \
- "--enable-install-setuid" \
- "--disable-install-setuid"
&&
-
-message "${QUERY_COLOR}Advanced options end here${DEFAULT_COLOR}"
-fi
-config_query_option XORG_SERVER_OPTS \
- "Enable Secure RPC?" \
- y \
- "--enable-secure-rpc" \
- "--disable-secure-rpc"
&&
-
-config_query_option XORG_SERVER_OPTS \
- "Build the xfree86 DDX utils?" \
- n \
- "--enable-xfree86-utils" \
- "--disable-xfree86-utils"
&&
-
-
-message "${MESSAGE_COLOR}Note:"
&&
-message "Default font search prefix is now /usr/share/fonts/X11 ."
&&
-message "You might want to make sure you got no old font installs left in"
&&
-message "/usr/lib/X11/fonts or instead have those paths set in xorg.conf ."
&&
-message "$DEFAULT_COLOR"
&&
-
-persistent_remove XORG_SERVER_FONT_100DPI
-persistent_remove XORG_SERVER_FONT_75DPI
-persistent_remove XORG_SERVER_FONT_SPEEDO
-persistent_remove XORG_SERVER_FONT_TYPE1
-persistent_remove XORG_SERVER_FONT_TTFOTF
-persistent_remove XORG_SERVER_FONT_MISC
-
-persistent_remove XORG_SERVER_INPUT_DRIVER
-persistent_remove XORG_SERVER_INPUT_OBSCURE
-persistent_remove XORG_SERVER_VIDEO_DRIVER_COMMON
-persistent_remove XORG_SERVER_VIDEO_DRIVER_UNCOMMON
-persistent_remove XORG_SERVER_VIDEO_DRIVER_OBSCURE
-
diff --git a/xorg-xserver/xorg-server/CONFLICTS
b/xorg-xserver/xorg-server/CONFLICTS
index 445448a..516ba84 100755
--- a/xorg-xserver/xorg-server/CONFLICTS
+++ b/xorg-xserver/xorg-server/CONFLICTS
@@ -1,3 +1 @@
-conflicts glamor
-conflicts xf86-video-modesetting
-conflicts xserver n
+conflicts xorg-server y
diff --git a/xorg-xserver/xorg-server/DEPENDS
b/xorg-xserver/xorg-server/DEPENDS
deleted file mode 100755
index 6e8b00f..0000000
--- a/xorg-xserver/xorg-server/DEPENDS
+++ /dev/null
@@ -1,145 +0,0 @@
-. $GRIMOIRE/FUNCTIONS
-
-case "$XORG_SHA1" in
- nettle)
- depends nettle '--with-sha1=libnettle'
- ;;
- libgcrypt)
- depends libgcrypt '--with-sha1=libgcrypt'
- ;;
- openssl)
- depends SSL '--with-sha1=libcrypto'
- ;;
-esac &&
-
-depends font-util &&
-depends xcb-util &&
-depends xcb-util-image &&
-depends xcb-util-wm &&
-depends xcb-util-keysyms &&
-depends xcb-util-renderutil &&
-
-depends xorgproto &&
-#
-## Check this every release as X.org likes to change things on us...
-#
-##Check this on updates
-depends libxv "--enable-xv" &&
-
-optional_depends libxinerama \
- "--enable-xinerama" \
- "--disable-xinerama" \
- "Multi screen support" &&
-##
-optional_depends libselinux \
- "" \
- "" \
- "Enable SELinux support" &&
-optional_depends libxscrnsaver \
- "--enable-screensaver" \
- "--disable-screensaver" \
- "Build ScreenSaver extension" &&
-optional_depends libxvmc \
- "--enable-xvmc" \
- "--disable-xvmc" \
- "Enable support for XvMC" &&
-
-optional_depends LOGIN-DAEMON \
- '--enable-systemd-logind' \
- '--disable-systemd-logind' \
- 'login daemon' &&
-
-#
-# May only select one:
-# configure: error: Hotplugging through both libudev and hal not allowed
-#
-# hal is preferred by upstream:
-# --enable-config-udev Build udev support (default: auto)
-# --disable-config-hal Build HAL support (default: auto)
-#
-message "You can either use hal OR udev for hotplugging" &&
-message "but NOT both" &&
-optional_depends hal \
- "--enable-config-hal --disable-config-udev" \
- "--disable-config-hal " \
- "Enable HAL support" &&
-
-if ! is_depends_enabled $SPELL hal; then
- optional_depends DEVICE-MANAGER \
- "--enable-config-udev --disable-config-hal" \
- "--disable-config-udev" \
- "enable udev kernel config support"
-fi &&
-
-if is_depends_enabled $SPELL $(get_spell_provider $SPELL LOGIN-DAEMON) \
- || is_depends_enabled $SPELL hal; then
- depends dbus
-fi &&
-
-optional_depends lbdmx \
- "--enable-dmx" \
- "--disable-dmx" \
- "Build DMX server" &&
-if is_depends_enabled $SPELL libdmx;then
- depends -sub XAW7 libxaw &&
- depends libxt &&
- depends libxpm &&
- depends libxmu
-fi &&
-
-
-if list_find "$XORG_SERVER_OPTS" "--enable-glamor"; then
- depends libepoxy
-fi &&
-
-optional_depends wayland '--enable-xwayland' \
- '--disable-xwayland' \
- 'build Xwayland DDX' &&
-if is_depends_enabled $SPELL wayland;then
- depends wayland-protocols
-fi &&
-optional_depends libunwind '--enable-libunwind' '--disable-libunwind'
'debugging support' &&
-
-depends freetype2 &&
-depends libxxf86dga "--enable-dga" &&
-depends libxcomposite "--enable-composite" &&
-depends libxxf86vm "--enable-xf86vidmode" &&
-depends libxi &&
-depends util-macros &&
-depends xinit &&
-depends xhost &&
-depends xauth &&
-depends pixman &&
-depends libxshmfence &&
-
-depends libxkbui &&
-depends libxfont2 &&
-depends xtrans &&
-depends libxau &&
-depends libxkbfile &&
-depends libxdmcp &&
-depends libdrm &&
-depends libxres &&
-depends bison &&
-depends flex &&
-depends pkgconfig &&
-depends libtool &&
-depends AWK &&
-depends MESA &&
-depends smgl-gl_select &&
-depends rgb &&
-depends libpciaccess &&
-depends libxtst &&
-
-message 'additional fonts are not needed, but can be installed indiviually'
&&
-
-message 'choose an input or video driver' &&
-message 'if these drivers are not suitable, choose from the xorg-drivers
section' &&
-
-suggest_depends xf86-input-evdev '' '' 'modern input drivers' &&
-suggest_depends xf86-input-synaptics '' '' 'modern input drivers' &&
-suggest_depends xf86-input-libinput '' '' 'modern input drivers' &&
-suggest_depends xf86-video-ati '' '' 'modern ATI drivers' &&
-suggest_depends xf86-video-amdgpu '' '' 'hardware accellerated AMD drivers'
&&
-suggest_depends xf86-video-intel '' '' 'modern Intel drivers' &&
-suggest_depends xf86-video-nouveau '' '' 'modern NVidia drivers'
diff --git a/xorg-xserver/xorg-server/DETAILS
b/xorg-xserver/xorg-server/DETAILS
index bc030a1..5f9f1ed 100755
--- a/xorg-xserver/xorg-server/DETAILS
+++ b/xorg-xserver/xorg-server/DETAILS
@@ -1,27 +1,8 @@
- SPELL=xorg-server
- VERSION=1.20.1
- SOURCE=$SPELL-$VERSION.tar.bz2
-
SOURCE_URL[0]=https://xorg.freedesktop.org/releases/individual/xserver/$SOURCE
- SOURCE2=$SOURCE.sig
- SOURCE2_URL[0]=${SOURCE_URL[0]}.sig
- SOURCE_GPG=xorg.gpg:$SOURCE.sig:UPSTREAM_KEY
- SOURCE2_IGNORE=signature
- SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
- WEB_SITE=https://xorg.freedesktop.org/
- ENTERED=20051125
- LICENSE[0]=XCL
- SECURITY_PATCH=14
- SHORT="X servers (including Xorg, Xprt, Xvfb, Xnest & Xdmx)"
+ SPELL=xorg-server
+ VERSION=0
+ PATCHLEVEL=9999
+ SHORT="deprecated"
cat << EOF
-X servers (including Xorg, Xprt, Xvfb, Xnest & Xdmx), the core of the X
-Window System.
-
-The X server accepts requests from client applications to create windows,
-which are (normally rectangular) "virtual screens" that the client program
-can draw into.
-
-Windows are then composed on the actual screen by the X server
-(or by a separate composite manager) as directed by the window manager,
-which usually communicates with the user via graphical controls such as
buttons
-and draggable titlebars and borders.
+deprecated spell [replaced by xserver]
EOF
+
diff --git a/xorg-xserver/xorg-server/DOWNLOAD
b/xorg-xserver/xorg-server/DOWNLOAD
new file mode 100755
index 0000000..27ba77d
--- /dev/null
+++ b/xorg-xserver/xorg-server/DOWNLOAD
@@ -0,0 +1 @@
+true
diff --git a/xorg-xserver/xorg-server/EXPORTS
b/xorg-xserver/xorg-server/EXPORTS
deleted file mode 100755
index 16799e1..0000000
--- a/xorg-xserver/xorg-server/EXPORTS
+++ /dev/null
@@ -1 +0,0 @@
-XORG_SERVER_OPTS
diff --git a/xorg-xserver/xorg-server/FINAL b/xorg-xserver/xorg-server/FINAL
deleted file mode 100755
index 42199eb..0000000
--- a/xorg-xserver/xorg-server/FINAL
+++ /dev/null
@@ -1,13 +0,0 @@
-. $GRIMOIRE/FUNCTIONS &&
-message "${PROBLEM_COLOR}"
-message "WARNING: if you have a path defined by RgbPath var in
/etc/X11/xorg.conf"
-message "-- remove it. Since xorg-server 1.5.0 RgbPath has been marked as
obsolete"
-message "and it's not used in xorg.conf anymore."
-message "${DEFAULT_COLOR}"
-
-message "${MESSAGE_COLOR}If your mouse or keyboard stop working, then add\n"
\
- "the following to /etc/X11/xorg.conf:\n"
\
- "Section \"ServerFlags\"\n"
\
- " Option \"AllowEmptyInput\" \"false\"\n"
\
- "EndSection${DEFAULT_COLOR}"
-glselect mesa
diff --git a/xorg-xserver/xorg-server/HISTORY
b/xorg-xserver/xorg-server/HISTORY
index a1858e7..7840504 100644
--- a/xorg-xserver/xorg-server/HISTORY
+++ b/xorg-xserver/xorg-server/HISTORY
@@ -1,809 +1,4 @@
-2018-12-19 Pavel Vinogradov <public AT sourcemage.org>
- * *SUB_DEPENDS: added XWAYLAND subdependency
-
-2018-10-28 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
- * PRE_BUILD, fix-CVE-2018-14665.patch: fix CVE-2018-14665
- * DETAILS: SECURITY_PATCH++
-
-2018-08-30 Pavel Vinogradov <public AT sourcemage.org>
- * POST_RESURRECT, PRE_BUILD, REPAIR^all^POST_RESURRECT: added check
- for smgl-gl_select availability
-
-2018-08-07 Pavel Vinogradov <public AT sourcemage.org>
- * DETAILS: version 1.20.1
-
-2018-06-01 Treeve Jelbert <treeve AT sourcemage.org>
- * CONFLICTS: add xserver
-
-2018-05-10 Pavel Vinogradov <public AT sourcemage.org>
- * DETAILS: version 1.20.0, redundancy--
-
-2018-02-10 Pavel Vinogradov <public AT sourcemage.org>
- * DEPENDS: libxfontcache is no longer needed
-
-2018-02-09 Pavel Vinogradov <public AT sourcemage.org>
- * DEPENDS: dropped evieext
-
-2018-02-06 Treeve Jelbert <treeve AT sourcemage.org>
- * DEPENDS: use xorgproto
-
-2018-02-01 Treeve Jelbert <treeve AT sourcemage.org>
- * DEPENDS: use MESA
-
-2017-12-21 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 1.19.6
-
-2017-10-19 Treeve Jelbert <treeve AT sourcemage.org>
- * DEPENDS: add flags to libunwind
- * PROVIDES: add XSERVER
-
-2017-10-13 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 1.19.5
- SECURITY_PATCH++ fix CVE-2017-12176..CVE-2017-12187
-
-2017-10-05 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 1.19.4
- SECURITY_PATCH++ fix CVE-2017-13721 & CVE-2017-13723
-
-2017-04-06 Pavel Vinogradov <public AT sourcemage.org>
- * DEPENDS: added missing &
-
-2017-03-15 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 1.19.3
- * DEPENDS: add font-util
-
-2017-03-03 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 1.19.2
- * DETAILS: add gpg checking
- SECURITY_PATCH++ fix CVE-2017-2624
- * PRE_BUILD: some install scripts are missing! - run autoreconf
-
-2017-01-12 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 1.19.1
-
-2016-11-22 Treeve Jelbert <treeve AT sourcemage.org>
- * DEPENDS: add wayland-protocols
-
-2016-11-16 Treeve Jelbert <treeve AT sourcemage.org>
- * DEPENDS: add libxfont2
-
-2016-11-15 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 1.19.0
-
-2016-10-29 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: 1.18.99.902
- : add gpg checking
- * CONFIGURE: remove aiglx
-
-2016-07-20 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 1.18.4
-
-2016-07-07 Thomas Orgis <sobukus AT sourcemage.org>
- * TRIGGERS: removed, mesalib triggers again
-
-2016-07-05 Treeve Jelbert <treeve AT sourcemage.org>
- * TRIGGERS: added, detect mesalib changes
-
-2016-07-02 Vlad Glagolev <stealth AT sourcemage.org>
- * DEPENDS: SHA1 implementation is chosen earlier in the file
-
-2016-04-14 Thomas Orgis <sobukus AT sourcemage.org>
- * SUB_DEPENDS: added XVFB
-
-2016-04-05 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: 1.18.3
-
-2016-03-12 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: 1.18.2
- * xwayland-fix-a-crash-on-output-removal.patch: deleted
- * Add-hybrid-full-size-empty-clip-mode-to-SetRootClip.patch: deleted
- * PRE_BUILD: no upstream patches
-
-2016-03-02 Remko van der Vossen <wich AT sourcemage.org>
- * DEPENDS: don't force dbus dependency when it isn't needed
-
-2016-02-09 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: 1.18.1
- PATCHLEVEL=1
- * UP_TRIGGERS: improve it
- * CONFIGURE: remove obsolete option
- * PRE_BUILD: apply upstream patches
- * xwayland-fix-a-crash-on-output-removal.patch: added
- * Add-hybrid-full-size-empty-clip-mode-to-SetRootClip.patch: added
-
-2015-11-10 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: 1.18.0
- * DEPENDS: add LOGIN-DAEMON, xf86-video-amdgpu, dbus
- remove obsolete config-dbus options
- * CONFIGURE: remove obsolete options
-
-2015-10-31 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: 1.17.4
-
-2015-10-27 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: 1.17.3
-
-2015-06-17 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: 1.17.2
- SECURITY_PATCH++ fix CVE-2015-3164
- * xorg-server-1.17.1-gcc5_fixes-1.patch: fr;ryrf
- * PRE_BUILD: adjust
-
-2015-06-04 Treeve Jelbert <treeve AT sourcemage.org>
- * DEPENDS, CONFIGURE: simplify driver selection
- instead of giving a vast list of optional drivers, suggest the most
likely ones
- any others can be installed individually if needed
- likewise for fonts
- * DEPENDS: remove font-cursor-misc. font-misc-misc, font-alias
- * DEPENDS: xf86-video-nouveau, not xf86-video-nv
-
-2015-05-05 Thomas Orgis <sobukus AT sourcemage.org>
- * DEPENDS: on smgl-gl_select
-
-2015-04-26 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
- * PRE_BUILD, xorg-server-1.17.1-gcc5_fixes-1.patch: add patch from
- LFS to fix build with gcc 5
-
-2015-04-25 Vlad Glagolev <stealth AT sourcemage.org>
- * CONFIGURE: added selection of SHA1 implementation
- * DEPENDS: fixed dependencies on a crypto library
-
-2015-04-22 Treeve Jelbert <treeve AT sourcemage.org>
- * UP_TRIGGERS: remove things which do not depend on xorg-server
- * DEPENDS: libxinerama is optional
-
-2015-02-11 Vlad Glagolev <stealth AT sourcemage.org>
- * DEPENDS: UDEV -> DEVICE-MANAGER
-
-2015-02-11 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: 1.17.1
- SECURITY_PATCH=9 fix CVE-2015-0255
-
-2015-02-05 Pavel Vinogradov <vin.public AT gmail.com>
- * DEPENDS: added xcb-util-renderutil
-
-2015-02-05 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: 1.17.0
- update description
- * CONFLICTS: add xf86-video-modesetting, glamor
- * CONFIGURE: delete obsolete options
- * DEPENDS: presentproto is required
-
-2014-12-20 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: 1.16.3
- CVE-2014-8092..8103
-
-2014-12-12 Pol Vinogradov <vin.public AT gmail.com>
- * DEPENDS: removed gawk again
-
-2014-12-12 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: 1.16.2.901
- SECURITY_PATCH++, fixes MANY CVE
-
-2014-11-11 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: 1.16.2
-
-2014-09-25 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: 1.16.1
- * DEPENDS: now use mesalib
-
-2014-09-18 Pol Vinogradov <vin.public AT gmail.com>
- * PRE_SUB_DEPENDS, REPAIR*SUB_DEPENDS: fixed GLAMOR subdependency
-
-2014-08-27 Thomas Orgis <sobukus AT sourcemage.org>
- * DEPENDS: really needs mesalib-1x ... so actually the old mesalib
- spell is obsolete, what's the plan?
-
-2014-08-24 Thomas Orgis <sobukus AT sourcemage.org>
- * DEPENDS: needs xcb cruft to build
-
-2014-08-19 Treeve Jelbert <treeve AT sourcemage.org>
- * DEPENDS: openssl => SSL
- * SUB_DEPENDS, PRE_SUB_DEPENDS: openssl => SSL
-
-2014-07-18 Sukneet Basuta <sukneet AT sourcemage.org>
- * CONFIGURE: missed an 'a' in 'disable-glamor'
-
-2014-07-17 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: 1.16.0
- * CONFLICTS: added, for glamor
- * CONFIGURE: query for glamor support
- * SUB_DEPENDS, PRE_SUB_DEPENDS: add glamor support
- * DEPENDS: add libepoxy, optional wayland, nettle
-
-2014-04-14 Treeve Jelbert <treeve AT sourcemage.org>
- * DEPENDS: mesalib => MESALIB
-
-2014-04-14 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: 1.15.1
-
-2013-12-28 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: 1.15.0
- * DEPENDS: add presentproto, dri3proto, libxshmfence
- remove -force_depends usage
- * BUILD, CONFIGURE: remove obsolete options
-
-2013-12-14 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
- * DETAILS: 1.14.5
-
-2013-11-19 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: 1.14.4
- SECURITY_PATCH++ fixes CVE-2013-4396
-
-2013-10-12 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
- * PRE_BUILD, 0001-fix-buffer-overflow.patch: remove obsolete
- patch that prevents PRE_BUILD from succeeding
- * gl_select.patch: renew patch so PRE_BUILD succeeds
-
-2013-07-27 Treeve Jelbert <treeve AT sourcemage.org>
- * DEPENDS: udev => UDEV
-
-2013-06-26 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: 1.14.2
-
-2013-04-17 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
- * DETAILS: version 1.14.1, this fixes CVE-2013-1940
-
-2013-03-22 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
- * DETAILS: version 1.14.0
- * PRE_BUILD, 0001-fix-buffer-overflow.patch: fix off-by-one error
-
-2012-11-04 Vlad Glagolev <stealth AT sourcemage.org>
- * DEPENDS: added missing libxtst dependency
- * REPAIR^all^SUB_DEPENDS: added
- * {REPAIR^all^,}PRE_SUB_DEPENDS: added DRI extension subdependency
check
- * SUB_DEPENDS: added DRI extension subdependency; corrected actions
for
- DPMS; added missing `&&'s
-
-2012-08-27 Ladislav Hagara <hgr AT vabo.cz>
- * DETAILS: 1.12.4
- * gl_select.patch: updated
-
-2012-07-13 Treeve Jelbert <treeve AT sourcemage.org>
- * BUILD: generalise fix for gcc-4.7.x
-
-2012-07-12 Ladislav Hagara <hgr AT vabo.cz>
- * DETAILS: 1.12.3
- * gl_select.patch: updated
-
-2012-05-30 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: 1.12.2
-
-2012-05-27 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: 1.12.1.902
- * gl_select.patch: updtae pathc
- * BUILD: suppress errors with gcc-4.7.0
-
-2012-04-16 Ladislav Hagara <hgr AT vabo.cz>
- * DETAILS: 1.12.1
-
-2012-03-05 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: 1.12.0
-
-2012-02-16 Treeve Jelbert <treeve AT sourcemage.org>
- * DEPENDS: adjust depends for DMX
- remove obsolete depends
-
-2012-01-28 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: 1.11.4
-
-2011-12-17 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: 1.11.3
-
-2011-11-05 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: 1.11.2
- SECURITY_PATCH=5
- CVE-2011-4028: File disclosure vulnerability
- CVE-2011-4029: File permission change vulnerability
- * DEPENDS: if dmxproto is present, also need libdmx
- option for libselinux is now xcsecurity, but does not work
- * BUILD: force disable-secure-rpc
-
-2011-09-24 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: 1.11.1
-
-2011-08-27 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: 1.11.0
-
-2011-08-19 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: 1.10.4
-
-2011-07-08 Ladislav Hagara <hgr AT vabo.cz>
- * DETAILS: 1.10.3
-
-2011-05-29 Ladislav Hagara <hgr AT vabo.cz>
- * DETAILS: 1.10.2
-
-2011-05-15 Arjan Bouter <abouter AT sourcemage.org>
- * DEPENDS: fixed hal+dbus / udev hotplug options
-
-2011-04-16 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: 1.10.1
- * PRE_BUILD: remove sdksyms.c fix
-
-2011-03-18 Pol Vinogradov <vin.public AT gmail.com>
- * PRE_BUILD: added a workaround for error with sdksyms.c
-
-2011-03-10 Eric Sandall <sandalle AT sourcemage.org>
- * PRE_SUB_DEPENDS, SUB_DEPENDS: Allow forcing kdrive and xephyr
- xephyr requires kdrive
-
-2011-02-27 Ladislav Hagara <hgr AT vabo.cz>
- * DETAILS: 1.10.0
-
-2011-02-17 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
- * INSTALL: create /usr/share/xsessions if it is missing and
- xinitrc.desktop is to be installed
-
-2011-02-05 Ladislav Hagara <hgr AT vabo.cz>
- * DETAILS: 1.9.4
-
-2010-12-21 Ladislav Hagara <hgr AT vabo.cz>
- * DETAILS: 1.9.3
-
-2010-11-27 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
- * INSTALL, CONFIGURE, startxinitrc, xinitrc.desktop: added optional
- .desktop file that calls the user's .xinitrc
- * DETAILS: PATCHLEVEL=1
-
-2010-11-12 Andraž "ruskie" Levstik <ruskie+f03a580f AT codemages.net>
- * gl_select.patch: updated for glselect
-
-2010-10-18 Ladislav Hagara <hgr AT vabo.cz>
- * DEPENDS: removed xf86-video-i810 (has been removed form test
already)
-
-2010-09-04 Eric Sandall <sandalle AT sourcemage.org>
- * DETAILS: Updated to 1.9.0
- SOURCE matches upstream posted SHA1
- * CONFIGURE: -multibuffer no longer an option remove query and from
- XORG_SERVER_OPTS
- * DEPENDS: Optionally depends on udev for configuration support
- May only select udev xor (hal (preferred) or dbus)
-
-2010-06-26 Eric Sandall <sandalle AT sourcemage.org>
- * DETAILS: Updated to 1.8.1
- SOURCE matches upstream posted SHA1
- Requires DRI (mesalib) 7.8.0+ (currently development release)
- * BUILD: fontdir -> fontrootdir
-
-2010-05-04 Eric Sandall <sandalle AT sourcemage.org>
- * DETAILS: Updated to 1.7.7
- SOURCE matches upstream posted SHA1
-
-2010-03-24 Vlad Glagolev <stealth AT sourcemage.org>
- * [REPAIR^all^]EXPORTS: added, to provide XORG_SERVER_OPTS outside
-
-2010-03-17 Ladislav Hagara <hgr AT vabo.cz>
- * DETAILS: 1.7.6
-
-2010-02-23 Arwed v. Merkatz <v.merkatz AT gmx.net>
- * PRE_SUB_DEPENDS, REPAIR^all^PRE_SUB_DEPENDS: fixed DPMS sub
- dependency to actually return 0 if it is available, otherwise always
- recompiles xorg-server if something needs DPMS
-
-2010-02-17 Ladislav Hagara <hgr AT vabo.cz>
- * DETAILS: 1.7.5
-
-2010-02-04 Ladislav Hagara <hgr AT vabo.cz>
- * CONFLICTS, UP_TRIGGERS: none provider of monolithic X now
-
-2010-01-07 Eric Sandall <sandalle AT sourcemage.org>
- * DETAILS: Updated to 1.7.4
- SOURCE matches upstream posted SHA1
- Removed PATCHLEVEL
-
-2009-12-16 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
- * CONFIGURE: fixed the ati driver name and changed the nvidia one to
- the provider - NVIDIA
- * DEPENDS: specify the grimoire for dependencies on z-rejected spells;
- handle errors for the selective video driver choice
-
-2009-12-16 Thomas Orgis <sobukus AT sourcemage.org>
- * BUILD: Changed default font prefix to /usr/share/fonts/X11 .
- * CONFIGURE: Added note about font paths.
- * DETAILS: patchlevel
-
-2009-12-15 Eric Sandall <sandalle AT sourcemage.org>
- * DETAILS: Updated to 1.7.3 (bugfix for 1.7.2)
- SOURCE matches upstream posted SHA1
-
-2009-11-26 Vlad Glagolev <stealth AT sourcemage.org>
- * DEPENDS: force recordproto if record ext has been selected
-
-2009-10-27 Eric Sandall <sandalle AT sourcemage.org>
- * DETAILS: Updated to 1.7.1
- SOURCE matches upstream posted MD5
-
-2009-10-14 Andraž "ruskie" Levstik <ruskie+f03a580f AT codemages.net>
- * DEPENDS: removed some depends as per Treeve's suggestion,
- added xf86-video-nouveau to the list
- * CONFIGURE: added xf86-video-nouveau to the list
-
-2009-10-10 Andraž "ruskie" Levstik <ruskie+f03a580f AT codemages.net>
- * DETAILS: updated spell to 1.7.0
- * DEPENDS: updated
- * gl_select.diff: patch
-
-2009-08-01 Eric Sandall <sandalle AT sourcemage.org>
- * DETAILS: Updated to 1.6.3
- SOURCE matches upstream posted MD5
-
-2009-07-09 Andraž "ruskie" Levstik <ruskie+f03a580f AT codemages.net>
- * DETAILS: updated spell to 1.6.2
- * BUILD: updated
- * CONFIGURE: removed options
- * DEPENDS: updated
-
-2009-04-25 Andraž "ruskie" Levstik <ruskie+f03a580f AT codemages.net>
- * REPAIR^all^PRE_SUB_DEPENDS: added
- * PRE_SUB_DEPENDS: DPMS as sub_dependency
- * SUB_DEPENDS: DPMS as sub_dependency
-
-2009-04-18 Eric Sandall <sandalle AT sourcemage.org>
- * DETAILS, BUILD, PRE_BUILD: MesaLib source is no longer required at
build
-
-2009-04-15 Andraž "ruskie" Levstik <ruskie AT mages.ath.cx>
- * DETAILS: updated spell to 1.6.1
- * xorg-server-mesa.patch: removed
- * PRE_BUILD: removed the patch
- * gl_select.patch: updated
-
-2009-04-01 Eric Sandall <sandalle AT sourcemage.org>
- * DETAILS: Updated MesaLib to 7.4
- SOURCE matches upstream posted MD5
- * CONFIGURE: Moved xf86-video-vga from common to uncommon (doesn't
even build)
- * DEPENDS: Moved xf86-video-vga from common to uncommon (doesn't even
build)
-
-2009-02-28 Andraž "ruskie" Levstik <ruskie AT mages.ath.cx>
- * DETAILS: updated spell to 1.6.0
- * BUILD: updated
- * CONFIGURE: updated
- * DEPENDS: updated
- * PRE_BUILD: removed evdev patch, updated gl_select
- * evdev-flush.patch: removed
- * gl_select.patch: updated
-
-2009-02-20 Andraž "ruskie" Levstik <ruskie AT mages.ath.cx>
- * FINAL: left this one out
-
-2009-02-10 Andraž "ruskie" Levstik <ruskie AT mages.ath.cx>
- * DEPENDS: added z-rej dependency, use NVIDIA provider
-
-2009-02-09 Andraž "ruskie" Levstik <ruskie AT mages.ath.cx>
- * PRE_BUILD: use glselect function
- * DEPENDS: no longer use smgl-gl_select,
- added nvidia_legacy* and renamed ati_driver to ati-fglrx
- * FINAL: use glselect
- * POST_RESURRECT: restore mesa, add FUNCTIONS
- * gl_select.patch: libwfb is always on
- * REPAIR^all^POST_RESURRECT:: copy of POST_RESURRECT
-
-2009-02-08 Andraž "ruskie" Levstik <ruskie AT mages.ath.cx>
- * PRE_BUILD: added smgl-gl_select patch, and run it before building,
- apply a sed as per lynx^3 to fix drm if patch is applied it seems
- * DEPENDS: added smgl-gl_select
- * gl_select.patch: patch to modify some installation paths
- * DETAILS: patchlevel++
- * FINAL: run smgl-gl_select -d
- * CONFIGURE: removed the unknown options(configure complains)
-
-2009-01-26 Andraž "ruskie" Levstik <ruskie AT mages.ath.cx>
- * DEPENDS: no more XPrint
-
-2009-01-23 Eric Sandall <sandalle AT sourcemage.org>
- * DETAILS: Updated MesaLib to 7.3
- PATCHLEVEL++
-
-2009-01-22 Ethan Grammatikidis <eekee57 AT fastmail.fm>
- * DEPENDS: Added openssl; render/glyph.c requires openssl/sha.h
-
-2009-01-20 Ethan Grammatikidis <eekee57 AT fastmail.fm>
- * CONFIGURE, PRE_BUILD: made George's patch optional because it
- broke compilation for me.
-
-2009-01-18 George Sherwood <gsherwood AT sourcemage.org>
- * PRE_BUILD: Added patch
- * xorg-server-mesa.patch: Added patch to fix Bug #14937
-
-2008-11-20 George Sherwood <gsherwood AT sourcemage.org>
- * CONFIGURE: Add option to use build builtin bitmap fonts
-
-2008-11-18 Robin Cook <rcook AT wyrms.net>
- * PRE_BUILD: apply evdev patch to flush evdev keymap.
- http://lists.freedesktop.org/archives/xorg/2008-November/040239.html
-
-2008-11-10 Eric Sandall <sandalle AT sourcemage.org>
- * FINAL: Add info for kbd/mouse drivers in 1.5.3
-
-2008-11-06 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 1.5.3
- * PRE_BUILD: remove randr.patch
- * randr.patch: deleted
-
-2008-10-14 Vlad Glagolev <stealth AT sourcemage.org>
- * INSTALL: removed -- not needed anymore (default_install)
- * FINAL: removed deprecated comments; cleaned up
- * UP_TRIGGERS: check_self every spell needed to be checked on casting
X
- include 1.4.2 in version list where every spell needed to be
checked is
- casted
-
-2008-10-13 Vlad Glagolev <stealth AT sourcemage.org>
- * UP_TRIGGERS: fixed up_triggerring if any local grimoires exist
-
-2008-10-11 Vlad Glagolev <stealth AT sourcemage.org>
- * DETAILS: updated spell to 1.5.2; removed useless XORG_VER; quoting
- paths; cleaned up
-
-2008-10-09 Vlad Glagolev <stealth AT sourcemage.org>
- * DETAILS: updated spell to 1.5.1; use new mesalib (7.2)
- * DEPENDS: added required libpciaccess
- * BUILD: fixed dri path; removed forcing "--disable-xprint", cause
- in DEPENDS it's optional
- * FINAL: added RgbPath warning
-
-2008-09-19 Arjan Bouter <abouter AT sourcemage.org>
- * DEPENDS: made libxp+printproto optional
-
-2008-09-11 Thomas Orgis <sobukus AT sourcemage.org>
- * CONFIGURE, DEPENDS: reorder common video choices to be (hopefully)
- a bit more consistent (similar hardware together), include Matrox
- chips in common list instead of obscure (they're still produced...
- prolly more common than S3 Trio64 or such...).
- * DEPENDS: also add Matrox to sane drivers
-
-2008-09-09 Vlad Glagolev <stealth AT sourcemage.org>
- * PRE_BUILD: added randr.patch to try to fix the flickering issue from
- http://thread.gmane.org/gmane.comp.freedesktop.xorg/30567
- * DETAILS: PATCHLEVEL=1
-
-2008-09-04 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
- * UP_TRIGGERS: don't trigger spells we depend on
- readded some spells to check_self, removed too many
- don't use spell as a variable, bad things happen
-
-2008-08-30 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
- * UP_TRIGGERS: fixed this braindead pos
- don't fail if there's nothing to up_trigger
-
-2008-08-30 Andraž "ruskie" Levstik <ruskie AT mages.ath.cx>
- * CONFIGURE: added xf86-video-intel, thanks Enqlave
- * DEPENDS: added xf86-video-intel, thanks Enqlave
-
-2008-08-30 Vlad Glagolev <stealth AT sourcemage.org>
- * DETAILS: sync mesalib version with current
- * UP_TRIGGERS: fixed weird syntax error (missing `then'): that's why
- ";" rocks, and "\n" doesn't, cleaned up
-
-2008-08-29 Andraž "ruskie" Levstik <ruskie AT mages.ath.cx>
- * UP_TRIGGERS: re-added with migration magic as well
-
-2008-08-28 Andraž "ruskie" Levstik <ruskie AT mages.ath.cx>
- * UP_TRIGGERS: disabled for now, not needed
-
-2008-08-26 Andraž "ruskie" Levstik <ruskie AT mages.ath.cx>
- * CONFIGURE: added a warning for the more advanced options
-
-2008-08-25 Andraž "ruskie" Levstik <ruskie AT mages.ath.cx>
- * CONFIGURE: unlocking all the optional drivers now
- * DEPENDS: runtime_depends_2 used in place of regular
-
-2008-07-13 Andraž "ruskie" Levstik <ruskie AT mages.ath.cx>
- * DEPENDS: changed some stuff and commented out some other stuff
- * CONFIGURE: removed some stuff to DEPENDS/BUILD
- * BUILD: forcing dbe
-
-2008-06-16 Andraž "ruskie" Levstik <ruskie AT mages.ath.cx>
- * DETAILS: updated spell to 1.4.2
- mesalib upped to 7.0.3
-
-2008-04-20 Andraž "ruskie" Levstik <ruskie AT mages.ath.cx>
- * CONFIGURE: according to sobukus TLS means Thread Local Storage
-
-2008-04-13 Eric Sandall <sandalle AT sourcemage.org>
- * PRE_SUB_DEPENDS, SUB_DEPENDS: Allow forcing composite support
- Bug #13360
- * CONFIGURE: Remove XWin option, only used for Cygwin anyways
- Bug #13476
- * DEPENDS: Depends on libxfont built with fontcache support (Bug
#13374)
- * BUILD: Disable XWin (Bug #13476)
-
-2008-03-17 Eric Sandall <sandalle AT sourcemage.org>
- * CONFLICTS: Auto-conflicts with xorg as well
-
-2008-03-16 Eric Sandall <sandalle AT sourcemage.org>
- * CONFLICTS: Auto-conflicts with all prior monolithic X providers
-
-2008-01-04 Juuso Alasuutari <iuso AT sourcemage.org>
- * UP_TRIGGERS: Fixed loop constructs, fixes bug #14166.
-
-2007-12-25 Andraž "ruskie" Levstik <ruskie AT mages.ath.cx>
- * DETAILS: updated spell to 1.4.0.90
- fixed long description wrap
- * FINAL: ups... forgot to mention the removal of that hack atm
-
-2007-12-02 Andraž "ruskie" Levstik <ruskie AT mages.ath.cx>
- * BUILD: correct some paths and fix XKB breakage
- * PRE_BUILD: unpack into the SOURCE_DIRECTORY
- * FINAL: add a hack to force rebuild of some spells AFTER
- the cast
- * UP_TRIGGERS: stuff needs to be rebuilt
- * DETAILS: mesalib to 7.0.2
-
-2007-11-23 Eric Sandall <sandalle AT sourcemage.org>
- * DEPENDS: Depends on libx11
- * PROVIDES: Does not provide X11-LIBS (libx11 does)
-
-2007-10-14 Ismael E. Luceno <ismael.luceno AT gmail.com>
- * DETAILS: updated description & short
-
-2007-09-09 Andraž "ruskie" Levstik <ruskie AT mages.ath.cx>
- * DETAILS: version update
- * DEPENDS: new depends pixman, hal and dbus
-
-2007-09-07 Andraž "ruskie" Levstik <ruskie AT mages.ath.cx>
- * BUILD: added a fix for a gcc 4.2.0 regression
-
-2007-04-24 Andraž "ruskie" Levstik <ruskie AT mages.ath.cx>
- * DETAILS: update to 1.3.0.0
-
-2007-04-03 Andraž "ruskie" Levstik <ruskie AT mages.ath.cx>
- * DETAILS: updato to 1.2.99.903
-
-2007-03-21 Andraž "ruskie" Levstik <ruskie AT mages.ath.cx>
- * DETAILS: update to 1.2.99.902
-
-2007-02-01 Andraž "ruskie" Levstik <ruskie AT mages.ath.cx>
- * DETAILS: version update to 1.2.0, PATCHLEVEL++
- * xorg-server-1.1.99.903-fixes-1.patch: removed
- * PRE_BUILD: removed patch
- * DEPENDS: dmx causing probs, added libxi
- * BUILD: dmx causing probs
- * CONFIGURE: minor fixups, enable/disable XInput
-
-2006-12-31 Thomas Orgis <sobukus AT sourcemage.org>
- * DETAILS, PRE_BUILD, xorg-server-1.1.99.903-fixes-1.patch:
- first patchlevel, fixing Makefile stuff for including mipmap.c
-
-2006-12-03 Andraž "ruskie" Levstik <ruskie AT mages.ath.cx>
- * DETAILS: update to 1.1.99.903 and 6.5.2
-
-2006-11-24 Andraž "ruskie" Levstik <ruskie AT mages.ath.cx>
- * DETAILS: update to 1.1.99.902
-
-2006-10-26 Andraž "ruskie" Levstik <ruskie AT mages.ath.cx>
- * INSTALL: no more bothering with libGLcore
-
-2006-10-21 Juuso Alasuutari <iuso AT sourcemage.org>
- * DEPENDS: Changed xorgcfg option default to 'n' (broken at
- the moment), added question marks to prompts, other minor
- verbal fixes.
-
-2006-10-18 Andraž "ruskie" Levstik <ruskie AT mages.ath.cx>
- * INSTALL: minor fix
-
-2006-10-14 Andraž "ruskie" Levstik <ruskie AT mages.ath.cx>
- * INSTALL: make it +x
- * FINAL: add smgl-gl_select, removed and added a temp symlink hack
- * DETAILS: version update and mesalib++
- * DEPENDS: removed depends on smgl-gl_select for now
- * CONFIGURE: new options, old options
-
-2006-10-13 Andraž "ruskie" Levstik <ruskie AT mages.ath.cx>
- * DEPENDS: typo
-
-2006-10-12 Andraž "ruskie" Levstik <ruskie AT mages.ath.cx>
- * INSTALL: making it multi GL Library compatible
- * DETAILS: PATCHLEVEL++
- * DEPENDS: depend on smgl_gl-select
-
-2006-09-16 Andraž "ruskie" Levstik <ruskie AT mages.ath.cx>
- * DETAILS: new version of mesalib 6.5.1, back to 6.5
-
-2006-09-02 Eric Sandall <sandalle AT sourcemage.org>
- * DEPENDS: Disable xprint (breaks build) (Bug #12713)
-
-2006-08-27 Andraž "ruskie" Levstik <ruskie AT mages.ath.cx>
- * DETAILS: update to 1.1.1, SECURITY_PATCH +
-
-2006-05-26 Andraž "ruskie" Levstik <ruskie AT mages.ath.cx>
- * CONFIGURE: mark certain opitons as EXPERIMENTAL
- * PROVIDES: removed XDAMAGE
- * DEPENDS: make libxv non-optional for now bug #12140,
- ups vars can't start with numbers #10866
-
-2006-06-25 Eric Sandall <sandalle AT sourcemage.org>
- * DEPENDS: Depend on libxinerama if building DRI in XORG_SERVER_OPTS,
- otherwise this is optional.
-
-2006-05-23 Andraž "ruskie" Levstik <ruskie AT mages.ath.cx>
- * DETAILS: xorg 7.1 update
- * PRE_BUILD: two patches less to apply
- * CONFIGURE: added more options, forgot a "
- * DEPENDS: added more options
-
-2006-05-06 Robin Cook <rcook AT wyrms.net>
- * DETAILS: +1 SECURITY_PATCH
- * PRE_BUILD: apply patch xorg-server-1.0.x-mitri.diff
-
-2006-04-06 Pieter Lenaerts <e-type AT cwazy.co.uk>
- * CONFIGURE: corrected filename to be sourced
-
-2006-04-05 Andraž "ruskie" Levstik <ruskie AT mages.ath.cx>
- * CONFIGURE: ups... wrongly renamed
-
-2006-03-30 Andraž "ruskie" Levstik <ruskie AT mages.ath.cx>
- * CONFIGURE: added fonts, input drivers, video drivers, some cleanup
- * DEPENDS: added fonts, input drivers, video drivers, some cleanup
-
-2006-03-22 Andraž "ruskie" Levstik <ruskie AT mages.ath.cx>
- * DETAILS: SECURITY_PATCH=1, newer mesalib
- * PRE_BUILD: apply patch
- * xorg-server-1.0.1-geteuid.diff: added
- * MesaLib-6.4.1.tar.bz2.sig: removed
-
-2006-03-12 Andraž "ruskie" Levstik <ruskie AT mages.ath.cx>
- * CONFIGURE: sanitizing options
-
-2006-03-06 Karsten Behrmann <BearPerson AT sourcemage.org>
- * BUILD: (automated) remove unneeded old opts
-
-2006-03-05 Karsten Behrmann <BearPerson AT sourcemage.org>
- * CONFIGURE, BUILD: (automated) unify config_query_option variable
name
-
-2006-03-02 Andraž "ruskie" Levstik <ruskie AT mages.ath.cx>
- * DETAILS: bad SOURCE2 URL was defined as SOURCE
- * fontcache.c.includes.patch: added to fix buggy includes
- * PRE_BUILD: apply patch
- * DEPENDS: added basic fonts and rgb
-
-2006-02-25 Andraž "ruskie" Levstik <ruskie AT mages.ath.cx>
- * DEPENDS: removed profile and added some others
- needed for a proper out of the box working Xorg
-
-2006-02-11 Robin Cook <rcook AT wyrms.net>
- * BUILD: added OPTS
-
-2006-01-23 Robin Cook <rcook AT wyrms.net>
- * DETAILS: added MesaLib as SOURCE2
- * PRE_BUILD: added to extract mesalib
- * BUILD: added to put mesa source path to OPTS
- * FINAL: added to delete mesalib source
-
-2005-12-23 Robin Cook <rcook AT wyrms.net>
- * PROVIDES: removed OPENGL as it doesn't
-
-2005-12-22 Robin Cook <rcook AT wyrms.net>
- * DETAILS: Updated VERSION to 1.0.1
- added XORG_VER
- updated SOURCE, SOURCE_URL, and SOURCE_DIRECTORY
-
-2005-12-21 Robin Cook <rcook AT wyrms.net>
- * DEPENDS: added libmesa as could not get it to build without it even
- with DIR & GLX sen to no.
- added libxres
- * PROVIDES: added
-
-2005-12-15 Robin Cook <rcook AT wyrms.net>
- * DETAILS: Updated VERSION to 1.0.0
- * DEPENDS: changed SECTION proto to proto-profile
- * CONFIGURE: changed as kept hanging while casting
-
-2005-12-15 Robin Cook <rcook AT wyrms.net>
- * DETAILS: Updated SOURCE_URL to RC4
-
-2005-12-15 Robin Cook <rcook AT wyrms.net>
- * DETAILS: Updated VERSION to 0.99.4
- converted SOURCEHASH to SOURCE_GPG
-
-2005-12-14 Robin Cook <rcook AT wyrms.net>
- * DETAILS: Updated SOURCE_URL
-
-2005-11-25 Andraž "ruskie" Levstik <ruskie AT mages.ath.cx>
- * CONFIGURE: added tons of options
- * DEPENDS: cosmetic fix
-
-2005-11-25 Karsten Behrmann <BearPerson AT sourcemage.org>
- * DEPENDS: auto-created or updated
-
-2005-11-25 Andraž "ruskie" Levstik <ruskie AT mages.ath.cx>
- * DETAILS, HISTORY: created spell
+2019-02-03 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 0
+ PATCHLEVEL=9999
+ spell deprecated [replaced by xserver]
diff --git a/xorg-xserver/xorg-server/INSTALL
b/xorg-xserver/xorg-server/INSTALL
index 2d8350f..27ba77d 100755
--- a/xorg-xserver/xorg-server/INSTALL
+++ b/xorg-xserver/xorg-server/INSTALL
@@ -1,8 +1 @@
-default_install &&
-if [[ $XORG_XINITRC_XSESSION == "y" ]]; then
- install -m755 ${SCRIPT_DIRECTORY}/startxinitrc ${INSTALL_ROOT}/usr/bin &&
- if [[ ! -d ${INSTALL_ROOT}/usr/share/xsessions ]]; then
- mkdir -p ${INSTALL_ROOT}/usr/share/xsessions || return 1
- fi &&
- install -m644 ${SCRIPT_DIRECTORY}/xinitrc.desktop
${INSTALL_ROOT}/usr/share/xsessions || return 1
-fi
+true
diff --git a/xorg-xserver/xorg-server/POST_RESURRECT
b/xorg-xserver/xorg-server/POST_RESURRECT
deleted file mode 100755
index b17d803..0000000
--- a/xorg-xserver/xorg-server/POST_RESURRECT
+++ /dev/null
@@ -1,4 +0,0 @@
-. "${GRIMOIRE}/FUNCTIONS" &&
-if spell_ok "smgl-gl_select"; then
- glselect mesa
-fi
diff --git a/xorg-xserver/xorg-server/PRE_BUILD
b/xorg-xserver/xorg-server/PRE_BUILD
index 77dcea1..27ba77d 100755
--- a/xorg-xserver/xorg-server/PRE_BUILD
+++ b/xorg-xserver/xorg-server/PRE_BUILD
@@ -1,12 +1 @@
-default_pre_build &&
-cd "$SOURCE_DIRECTORY" &&
-if spell_ok "smgl-gl_select"; then
- # required to build
- glselect mesa &&
- # some install scripts are missing!
- autoreconf -f -i --symlink &&
- patch -p1 < $SPELL_DIRECTORY/gl_select.patch
-fi &&
-
-patch -p1 < "$SPELL_DIRECTORY/fix-CVE-2018-14665.patch"
-
+true
diff --git a/xorg-xserver/xorg-server/PRE_SUB_DEPENDS
b/xorg-xserver/xorg-server/PRE_SUB_DEPENDS
deleted file mode 100755
index 7fd4fb6..0000000
--- a/xorg-xserver/xorg-server/PRE_SUB_DEPENDS
+++ /dev/null
@@ -1,14 +0,0 @@
-case $THIS_SUB_DEPENDS in
- XCOMPOSITE) is_depends_enabled $SPELL libxcomposite ;;
- DPMS) list_find "$XORG_SERVER_OPTS" "--enable-dpms" && return 0 ;;
- DRI) list_find "$XORG_SERVER_OPTS" "--enable-dri" && return 0 ;;
- GLAMOR) list_find "$XORG_SERVER_OPTS" "--enable-glamor" && return 0 ;;
- KDRIVE) list_find "$XORG_SERVER_OPTS" "--enable-kdrive" && return 0 ;;
-# Xephyr requires Kdrive and list_find returns true if at least one matches
- XEPHYR) list_find "$XORG_SERVER_OPTS" "--enable-kdrive" &&
- list_find "$XORG_SERVER_OPTS" "--enable-xephyr" && return 0 ;;
- XVFB) list_find "$XORG_SERVER_OPTS" "--enable-xvfb" && return 0 ;;
- XWAYLAND) is_depends_enabled $SPELL wayland ;;
- *) message "${PROBLEM_COLOR}bogus sub_depends: $SPELL
$THIS_SUB_DEPENDS${DEFAULT_COLOR}" ;
- return 1;;
-esac
diff --git a/xorg-xserver/xorg-server/PROVIDES
b/xorg-xserver/xorg-server/PROVIDES
deleted file mode 100755
index f43e807..0000000
--- a/xorg-xserver/xorg-server/PROVIDES
+++ /dev/null
@@ -1,2 +0,0 @@
-X11-SERVER
-XSERVER
diff --git a/xorg-xserver/xorg-server/REPAIR^all^EXPORTS
b/xorg-xserver/xorg-server/REPAIR^all^EXPORTS
deleted file mode 100755
index 16799e1..0000000
--- a/xorg-xserver/xorg-server/REPAIR^all^EXPORTS
+++ /dev/null
@@ -1 +0,0 @@
-XORG_SERVER_OPTS
diff --git a/xorg-xserver/xorg-server/REPAIR^all^POST_RESURRECT
b/xorg-xserver/xorg-server/REPAIR^all^POST_RESURRECT
deleted file mode 100755
index b17d803..0000000
--- a/xorg-xserver/xorg-server/REPAIR^all^POST_RESURRECT
+++ /dev/null
@@ -1,4 +0,0 @@
-. "${GRIMOIRE}/FUNCTIONS" &&
-if spell_ok "smgl-gl_select"; then
- glselect mesa
-fi
diff --git a/xorg-xserver/xorg-server/REPAIR^all^PRE_SUB_DEPENDS
b/xorg-xserver/xorg-server/REPAIR^all^PRE_SUB_DEPENDS
deleted file mode 100755
index b75a433..0000000
--- a/xorg-xserver/xorg-server/REPAIR^all^PRE_SUB_DEPENDS
+++ /dev/null
@@ -1,14 +0,0 @@
-case $THIS_SUB_DEPENDS in
- XCOMPOSITE) is_depends_enabled $SPELL libxcomposite ;;
- DPMS) list_find "$XORG_SERVER_OPTS" "--enable-dpms" && return 0 ;;
- DRI) list_find "$XORG_SERVER_OPTS" "--enable-dri" && return 0 ;;
- GLAMOR) list_find "$XORG_SERVER_OPTS" "--enable-glamor" && return 0 ;;
- KDRIVE) list_find "$XORG_SERVER_OPTS" "--enable-kdrive" && return 0 ;;
-# Xephyr requires Kdrive and list_find returns true if at least one matches
- XEPHYR) list_find "$XORG_SERVER_OPTS" "--enable-kdrive" &&
- list_find "$XORG_SERVER_OPTS" "--enable-xephyr" && return 0 ;;
- XVFB) list_find "$XORG_SERVER_OPTS" "--enable-xvfb" && return 0 ;;
- XWAYLAND) is_depends_enabled $SPELL wayland ;;
- *) message "${PROBLEM_COLOR}bogus sub_depends: $SPELL
$THIS_SUB_DEPENDS${DEFAULT_COLOR}" ;
- return 1;;
-esac
diff --git a/xorg-xserver/xorg-server/REPAIR^all^SUB_DEPENDS
b/xorg-xserver/xorg-server/REPAIR^all^SUB_DEPENDS
deleted file mode 100755
index 4acd740..0000000
--- a/xorg-xserver/xorg-server/REPAIR^all^SUB_DEPENDS
+++ /dev/null
@@ -1,24 +0,0 @@
-case "$THIS_SUB_DEPENDS" in
- XCOMPOSITE) message "${MESSAGE_COLOR}Composite extension required, forcing
it.${DEFAULT_COLOR}" &&
- depends libxcomposite "--enable-composite" ;;
- DPMS) message "${MESSAGE_COLOR}DPMS extension required, forcing
it.${DEFAULT_COLOR}" &&
- list_remove XORG_SERVER_OPTS "--disable-dpms" &&
- list_add XORG_SERVER_OPTS "--enable-dpms" ;;
- DRI) message "${MESSAGE_COLOR}DRI extension required, forcing
it.${DEFAULT_COLOR}" &&
- list_remove XORG_SERVER_OPTS "--disable-dri" &&
- list_add XORG_SERVER_OPTS "--enable-dri" ;;
- GLAMOR) message "${MESSAGE_COLOR}GLAMORI extension required, forcing
it.${DEFAULT_COLOR}" &&
- list_remove XORG_SERVER_OPTS "--disable-glamor" &&
- list_add XORG_SERVER_OPTS "--enable-glamor" ;;
- KDRIVE) message "${MESSAGE_COLOR}Forcing Kdrive...${DEFAULT_COLOR}" &&
- list_remove XORG_SERVER_OPTS "--disable-kdrive" &&
- list_add XORG_SERVER_OPTS "--enable-kdrive" ;;
-# Xephyr requires Kdrive
- XEPHYR) message "${MESSAGE_COLOR}Forcing Kdrive and
Xephyr...${DEFAULT_COLOR}" &&
- list_remove XORG_SERVER_OPTS "--disable-kdrive
--disable-xephyr" &&
- list_add XORG_SERVER_OPTS "--enable-kdrive --enable-xephyr" ;;
- XWAYLAND) message "${MESSAGE_COLOR}Forcing XWayland...${DEFAULT_COLOR}"
&&
- depends wayland "--enable-xwayland" ;;
- *) message "${PROBLEM_COLOR}bogus sub_depends: $SPELL
$THIS_SUB_DEPENDS${DEFAULT_COLOR}" ;
- return 1;;
-esac
diff --git a/xorg-xserver/xorg-server/SUB_DEPENDS
b/xorg-xserver/xorg-server/SUB_DEPENDS
deleted file mode 100755
index 1e08a5b..0000000
--- a/xorg-xserver/xorg-server/SUB_DEPENDS
+++ /dev/null
@@ -1,25 +0,0 @@
-case "$THIS_SUB_DEPENDS" in
- XCOMPOSITE) message "${MESSAGE_COLOR}Composite extension required, forcing
it.${DEFAULT_COLOR}" &&
- depends libxcomposite "--enable-composite" ;;
- DPMS) message "${MESSAGE_COLOR}DPMS extension required, forcing
it.${DEFAULT_COLOR}" &&
- list_remove XORG_SERVER_OPTS "--disable-dpms" &&
- list_add XORG_SERVER_OPTS "--enable-dpms" ;;
- DRI) message "${MESSAGE_COLOR}DRI extension required, forcing
it.${DEFAULT_COLOR}" &&
- list_remove XORG_SERVER_OPTS "--disable-dri" &&
- list_add XORG_SERVER_OPTS "--enable-dri" ;;
- GLAMOR) message "${MESSAGE_COLOR}Glamor required, forcing
it.${DEFAULT_COLOR}" &&
- list_remove XORG_SERVER_OPTS "--disable-glamor" &&
- list_add XORG_SERVER_OPTS "--enable-glamor" ;;
- KDRIVE) message "${MESSAGE_COLOR}Forcing Kdrive...${DEFAULT_COLOR}" &&
- list_remove XORG_SERVER_OPTS "--disable-kdrive" &&
- list_add XORG_SERVER_OPTS "--enable-kdrive" ;;
-# Xephyr requires Kdrive
- XEPHYR) message "${MESSAGE_COLOR}Forcing Kdrive and
Xephyr...${DEFAULT_COLOR}" &&
- list_remove XORG_SERVER_OPTS "--disable-kdrive
--disable-xephyr" &&
- list_add XORG_SERVER_OPTS "--enable-kdrive --enable-xephyr" ;;
- XVFB) list_add XORG_SERVER_OPTS "--enable-xvfb" ;;
- XWAYLAND) message "${MESSAGE_COLOR}Forcing XWayland...${DEFAULT_COLOR}"
&&
- depends wayland "--enable-xwayland" ;;
- *) message "${PROBLEM_COLOR}bogus sub_depends: $SPELL
$THIS_SUB_DEPENDS${DEFAULT_COLOR}" ;
- return 1;;
-esac
diff --git a/xorg-xserver/xorg-server/UP_TRIGGERS
b/xorg-xserver/xorg-server/UP_TRIGGERS
index 6f9bf38..331aa7e 100755
--- a/xorg-xserver/xorg-server/UP_TRIGGERS
+++ b/xorg-xserver/xorg-server/UP_TRIGGERS
@@ -1,11 +1 @@
-local OLD_SPELL_VERSION=""
-if spell_ok $SPELL; then
- OLD_SPELL_VERSION="$(installed_version $SPELL)"
- if test "${VERSION:0:3}" != "${OLD_SPELL_VERSION:0:3}"; then
- message "This is a possibly incompatible update of $SPELL..."
- message "Figuring out what spells need to be recast, this may take a
while."
- for each in $(show_up_depends $SPELL 1); do
- up_trigger $each check_self
- done
- fi
-fi
+up_trigger xserver cast_self
diff --git a/xorg-xserver/xorg-server/fix-CVE-2018-14665.patch
b/xorg-xserver/xorg-server/fix-CVE-2018-14665.patch
deleted file mode 100644
index bfa7773..0000000
--- a/xorg-xserver/xorg-server/fix-CVE-2018-14665.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-diff --git a/hw/xfree86/common/xf86Init.c b/hw/xfree86/common/xf86Init.c
-index
6c25eda739719d11f0e4c2dcf59c2a06d2b9ac97..0f57efa86324bb933fe9e239b46f62d04a739d39
100644
---- a/hw/xfree86/common/xf86Init.c
-+++ b/hw/xfree86/common/xf86Init.c
-@@ -935,14 +935,18 @@ ddxProcessArgument(int argc, char **argv, int i)
- /* First the options that are not allowed with elevated privileges */
- if (!strcmp(argv[i], "-modulepath")) {
- CHECK_FOR_REQUIRED_ARGUMENT();
-- xf86CheckPrivs(argv[i], argv[i + 1]);
-+ if (xf86PrivsElevated())
-+ FatalError("\nInvalid argument -modulepath "
-+ "with elevated privileges\n");
- xf86ModulePath = argv[i + 1];
- xf86ModPathFrom = X_CMDLINE;
- return 2;
- }
- if (!strcmp(argv[i], "-logfile")) {
- CHECK_FOR_REQUIRED_ARGUMENT();
-- xf86CheckPrivs(argv[i], argv[i + 1]);
-+ if (xf86PrivsElevated())
-+ FatalError("\nInvalid argument -logfile "
-+ "with elevated privileges\n");
- xf86LogFile = argv[i + 1];
- xf86LogFileFrom = X_CMDLINE;
- return 2;
diff --git a/xorg-xserver/xorg-server/gl_select.patch
b/xorg-xserver/xorg-server/gl_select.patch
deleted file mode 100644
index fa7fb1b..0000000
--- a/xorg-xserver/xorg-server/gl_select.patch
+++ /dev/null
@@ -1,50 +0,0 @@
-From f6b348700dcd99d4ab086a709e3309e610721822 Mon Sep 17 00:00:00 2001
-From: Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
-Date: Sat, 12 Oct 2013 19:47:22 +0200
-Subject: [PATCH] gl_select
-
----
- hw/xfree86/dixmods/Makefile.in | 13 +++++++++++--
- 1 file changed, 11 insertions(+), 2 deletions(-)
-
-diff --git a/hw/xfree86/dixmods/Makefile.in b/hw/xfree86/dixmods/Makefile.in
-index ce03745..ac0bee9 100644
---- a/hw/xfree86/dixmods/Makefile.in
-+++ b/hw/xfree86/dixmods/Makefile.in
-@@ -515,7 +515,7 @@ module_LTLIBRARIES = libfb.la \
- libshadow.la
-
- extsmoduledir = $(moduledir)/extensions
--extsmodule_LTLIBRARIES = $(GLXMODS)
-+extsmodule_LTLIBRARIES =
- AM_CFLAGS = @XORG_CFLAGS@ @DIX_CFLAGS@
- INCLUDES = @XORG_INCS@ \
- -I$(top_srcdir)/hw/xfree86/loader \
-@@ -577,6 +577,15 @@ $(ACLOCAL_M4): $(am__aclocal_m4_deps)
- $(am__aclocal_m4_deps):
- install-extsmoduleLTLIBRARIES: $(extsmodule_LTLIBRARIES)
- @$(NORMAL_INSTALL)
-+ $(mkdir_p) "$(DESTDIR)$(extsmoduledir)/.mesa"
-+ @lst='$(GLXMODS)'; for r in $$lst; do \
-+ if test -f $$r; then \
-+ h=$(am__strip_dir) \
-+ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS)
--mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) '$$r'
'$(DESTDIR)$(extsmoduledir)/.mesa/'"; \
-+ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS)
--mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$r
"$(DESTDIR)$(extsmoduledir)/.mesa/"; \
-+ else :; fi; \
-+ done
-+
- @list='$(extsmodule_LTLIBRARIES)'; test -n "$(extsmoduledir)" ||
list=; \
- list2=; for p in $$list; do \
- if test -f $$p; then \
-@@ -824,7 +833,7 @@ distdir: $(DISTFILES)
- done
- check-am: all-am
- check: check-am
--all-am: Makefile $(LTLIBRARIES)
-+all-am: Makefile $(LTLIBRARIES) $(GLXMODS)
- installdirs:
- for dir in "$(DESTDIR)$(extsmoduledir)" "$(DESTDIR)$(moduledir)"; do \
- test -z "$$dir" || $(MKDIR_P) "$$dir"; \
---
-1.8.4.1
-
diff --git a/xorg-xserver/xorg-server/startxinitrc
b/xorg-xserver/xorg-server/startxinitrc
deleted file mode 100755
index e1bf78c..0000000
--- a/xorg-xserver/xorg-server/startxinitrc
+++ /dev/null
@@ -1,5 +0,0 @@
-#!/bin/bash
-
-if [[ -f "${HOME}/.xinitrc" ]]; then
- source ${HOME}/.xinitrc
-fi
diff --git a/xorg-xserver/xorg-server/xinitrc.desktop
b/xorg-xserver/xorg-server/xinitrc.desktop
deleted file mode 100644
index ca4e504..0000000
--- a/xorg-xserver/xorg-server/xinitrc.desktop
+++ /dev/null
@@ -1,6 +0,0 @@
-[Desktop Entry]
-Encoding=UTF-8
-Name=xinitrc
-Comment=This session starts the .xinitrc file
-TryExec=startxinitrc
-Exec=startxinitrc



  • [SM-Commit] GIT changes to master grimoire by Treeve Jelbert (ac4c3949e593b87744948cba299d3a3db152a640), Treeve Jelbert, 02/03/2019

Archive powered by MHonArc 2.6.24.

Top of Page