[arch-commits] Commit in libx11/repos (8 files)

Andreas Radke andyrtr at nymeria.archlinux.org
Sat Feb 9 14:32:39 UTC 2013


    Date: Saturday, February 9, 2013 @ 15:32:39
  Author: andyrtr
Revision: 177813

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  libx11/repos/testing-i686/
  libx11/repos/testing-i686/PKGBUILD
    (from rev 177812, libx11/trunk/PKGBUILD)
  libx11/repos/testing-i686/xorg.csh
    (from rev 177812, libx11/trunk/xorg.csh)
  libx11/repos/testing-i686/xorg.sh
    (from rev 177812, libx11/trunk/xorg.sh)
  libx11/repos/testing-x86_64/
  libx11/repos/testing-x86_64/PKGBUILD
    (from rev 177812, libx11/trunk/PKGBUILD)
  libx11/repos/testing-x86_64/xorg.csh
    (from rev 177812, libx11/trunk/xorg.csh)
  libx11/repos/testing-x86_64/xorg.sh
    (from rev 177812, libx11/trunk/xorg.sh)

-------------------------+
 testing-i686/PKGBUILD   |   34 ++++++++++++++++++++++++++++++++++
 testing-i686/xorg.csh   |   15 +++++++++++++++
 testing-i686/xorg.sh    |   15 +++++++++++++++
 testing-x86_64/PKGBUILD |   34 ++++++++++++++++++++++++++++++++++
 testing-x86_64/xorg.csh |   15 +++++++++++++++
 testing-x86_64/xorg.sh  |   15 +++++++++++++++
 6 files changed, 128 insertions(+)

Copied: libx11/repos/testing-i686/PKGBUILD (from rev 177812, libx11/trunk/PKGBUILD)
===================================================================
--- testing-i686/PKGBUILD	                        (rev 0)
+++ testing-i686/PKGBUILD	2013-02-09 14:32:39 UTC (rev 177813)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Jan de Groot <jgc at archlinux.org>
+
+pkgname=libx11
+pkgver=1.5.0
+pkgrel=2
+pkgdesc="X11 client-side library"
+arch=(i686 x86_64)
+url="http://xorg.freedesktop.org/"
+depends=('libxcb' 'xproto' 'kbproto')
+makedepends=('xorg-util-macros' 'xextproto' 'xtrans' 'inputproto')
+options=('!libtool')
+license=('custom')
+source=(${url}/releases/individual/lib/libX11-${pkgver}.tar.bz2)
+sha256sums=('c382efd7e92bfc3cef39a4b7f1ecf2744ba4414a705e3bc1e697f75502bd4d86')
+
+build() {
+  cd "${srcdir}/libX11-${pkgver}"
+  ./configure --prefix=/usr --disable-static --disable-xf86bigfont
+  make
+}
+
+check() {
+  cd "${srcdir}/libX11-${pkgver}"
+  make check
+}
+
+package() {
+  cd "${srcdir}/libX11-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+
+  install -d -m755 "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}

Copied: libx11/repos/testing-i686/xorg.csh (from rev 177812, libx11/trunk/xorg.csh)
===================================================================
--- testing-i686/xorg.csh	                        (rev 0)
+++ testing-i686/xorg.csh	2013-02-09 14:32:39 UTC (rev 177813)
@@ -0,0 +1,15 @@
+setenv XDG_DATA_HOME ${HOME}/.local/share
+setenv XDG_CONFIG_HOME ${HOME}/.config
+setenv XDG_CACHE_HOME ${HOME}/.cache
+
+if (! ($?XDG_DATA_DIRS) ) then
+  	setenv XDG_DATA_DIRS /usr/local/share/:/usr/share/
+else
+	setenv XDG_DATA_DIRS /usr/local/share/:/usr/share/:${XDG_DATA_DIRS}
+endif
+
+if (! ($?XDG_CONFIG_DIRS) ) then
+	setenv XDG_CONFIG_DIRS /etc/xdg
+else
+	setenv XDG_CONFIG_DIRS /etc/xdg:${XDG_CONFIG_DIRS}
+endif

Copied: libx11/repos/testing-i686/xorg.sh (from rev 177812, libx11/trunk/xorg.sh)
===================================================================
--- testing-i686/xorg.sh	                        (rev 0)
+++ testing-i686/xorg.sh	2013-02-09 14:32:39 UTC (rev 177813)
@@ -0,0 +1,15 @@
+export XDG_DATA_HOME=$HOME/.local/share
+export XDG_CONFIG_HOME=$HOME/.config
+export XDG_CACHE_HOME=$HOME/.cache
+
+if [ -z $XDG_DATA_DIRS ]; then
+	export XDG_DATA_DIRS=/usr/local/share/:/usr/share/
+else
+	export XDG_DATA_DIRS=/usr/local/share/:/usr/share/:$XDG_DATA_DIRS
+fi
+
+if [ -z $XDG_CONFIG_DIRS ]; then
+	export XDG_CONFIG_DIRS=/etc/xdg
+else
+	export XDG_CONFIG_DIRS=/etc/xdg:$XDG_CONFIG_DIRS
+fi

Copied: libx11/repos/testing-x86_64/PKGBUILD (from rev 177812, libx11/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD	                        (rev 0)
+++ testing-x86_64/PKGBUILD	2013-02-09 14:32:39 UTC (rev 177813)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Jan de Groot <jgc at archlinux.org>
+
+pkgname=libx11
+pkgver=1.5.0
+pkgrel=2
+pkgdesc="X11 client-side library"
+arch=(i686 x86_64)
+url="http://xorg.freedesktop.org/"
+depends=('libxcb' 'xproto' 'kbproto')
+makedepends=('xorg-util-macros' 'xextproto' 'xtrans' 'inputproto')
+options=('!libtool')
+license=('custom')
+source=(${url}/releases/individual/lib/libX11-${pkgver}.tar.bz2)
+sha256sums=('c382efd7e92bfc3cef39a4b7f1ecf2744ba4414a705e3bc1e697f75502bd4d86')
+
+build() {
+  cd "${srcdir}/libX11-${pkgver}"
+  ./configure --prefix=/usr --disable-static --disable-xf86bigfont
+  make
+}
+
+check() {
+  cd "${srcdir}/libX11-${pkgver}"
+  make check
+}
+
+package() {
+  cd "${srcdir}/libX11-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+
+  install -d -m755 "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}

Copied: libx11/repos/testing-x86_64/xorg.csh (from rev 177812, libx11/trunk/xorg.csh)
===================================================================
--- testing-x86_64/xorg.csh	                        (rev 0)
+++ testing-x86_64/xorg.csh	2013-02-09 14:32:39 UTC (rev 177813)
@@ -0,0 +1,15 @@
+setenv XDG_DATA_HOME ${HOME}/.local/share
+setenv XDG_CONFIG_HOME ${HOME}/.config
+setenv XDG_CACHE_HOME ${HOME}/.cache
+
+if (! ($?XDG_DATA_DIRS) ) then
+  	setenv XDG_DATA_DIRS /usr/local/share/:/usr/share/
+else
+	setenv XDG_DATA_DIRS /usr/local/share/:/usr/share/:${XDG_DATA_DIRS}
+endif
+
+if (! ($?XDG_CONFIG_DIRS) ) then
+	setenv XDG_CONFIG_DIRS /etc/xdg
+else
+	setenv XDG_CONFIG_DIRS /etc/xdg:${XDG_CONFIG_DIRS}
+endif

Copied: libx11/repos/testing-x86_64/xorg.sh (from rev 177812, libx11/trunk/xorg.sh)
===================================================================
--- testing-x86_64/xorg.sh	                        (rev 0)
+++ testing-x86_64/xorg.sh	2013-02-09 14:32:39 UTC (rev 177813)
@@ -0,0 +1,15 @@
+export XDG_DATA_HOME=$HOME/.local/share
+export XDG_CONFIG_HOME=$HOME/.config
+export XDG_CACHE_HOME=$HOME/.cache
+
+if [ -z $XDG_DATA_DIRS ]; then
+	export XDG_DATA_DIRS=/usr/local/share/:/usr/share/
+else
+	export XDG_DATA_DIRS=/usr/local/share/:/usr/share/:$XDG_DATA_DIRS
+fi
+
+if [ -z $XDG_CONFIG_DIRS ]; then
+	export XDG_CONFIG_DIRS=/etc/xdg
+else
+	export XDG_CONFIG_DIRS=/etc/xdg:$XDG_CONFIG_DIRS
+fi




More information about the arch-commits mailing list