Date: Saturday, June 2, 2012 @ 17:42:39 Author: andyrtr Revision: 160632
upgpkg: libx11 1.5.0-1 upstream update 1.5.0; fix environment variable /usr/share/:/usr/local/share/:/usr/share order FS#30113 Modified: libx11/trunk/PKGBUILD libx11/trunk/xorg.csh libx11/trunk/xorg.sh ----------+ PKGBUILD | 8 ++++---- xorg.csh | 4 ++-- xorg.sh | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2012-06-02 21:31:52 UTC (rev 160631) +++ PKGBUILD 2012-06-02 21:42:39 UTC (rev 160632) @@ -2,7 +2,7 @@ # Maintainer: Jan de Groot <[email protected]> pkgname=libx11 -pkgver=1.4.99.902 +pkgver=1.5.0 pkgrel=1 pkgdesc="X11 client-side library" arch=(i686 x86_64) @@ -14,9 +14,9 @@ source=(${url}/releases/individual/lib/libX11-${pkgver}.tar.bz2 xorg.sh xorg.csh) -sha1sums=('afe75b7c2c54e354f726fd36251bcfec1e1f833a' - '4b756387426afb2a5bb7a155631ec42348abf5c1' - '45b0b310776cf5d9a94b4a18a5c63ddad9de6ba8') +sha256sums=('c382efd7e92bfc3cef39a4b7f1ecf2744ba4414a705e3bc1e697f75502bd4d86' + '1a1b5db0320579958fba24774bae7984a1b1b8c647ac6fbd4d8937178c48ed46' + '96c85ccbdcb056540f2e2b6cf48dea067f80260c16957ee401c49cf94cea5894') build() { cd "${srcdir}/libX11-${pkgver}" Modified: xorg.csh =================================================================== --- xorg.csh 2012-06-02 21:31:52 UTC (rev 160631) +++ xorg.csh 2012-06-02 21:42:39 UTC (rev 160632) @@ -3,9 +3,9 @@ setenv XDG_CACHE_HOME ${HOME}/.cache if (! ($?XDG_DATA_DIRS) ) then - setenv XDG_DATA_DIRS /usr/share/:/usr/local/share/ + setenv XDG_DATA_DIRS /usr/local/share/:/usr/share/ else - setenv XDG_DATA_DIRS /usr/share/:/usr/local/share/:${XDG_DATA_DIRS} + setenv XDG_DATA_DIRS /usr/local/share/:/usr/share/:${XDG_DATA_DIRS} endif if (! ($?XDG_CONFIG_DIRS) ) then Modified: xorg.sh =================================================================== --- xorg.sh 2012-06-02 21:31:52 UTC (rev 160631) +++ xorg.sh 2012-06-02 21:42:39 UTC (rev 160632) @@ -3,9 +3,9 @@ export XDG_CACHE_HOME=$HOME/.cache if [ -z $XDG_DATA_DIRS ]; then - export XDG_DATA_DIRS=/usr/share/:/usr/local/share/ + export XDG_DATA_DIRS=/usr/local/share/:/usr/share/ else - export XDG_DATA_DIRS=/usr/share/:/usr/local/share/:$XDG_DATA_DIRS + export XDG_DATA_DIRS=/usr/local/share/:/usr/share/:$XDG_DATA_DIRS fi if [ -z $XDG_CONFIG_DIRS ]; then
