From: Jose V Beneyto Date: Fri, 18 Dec 2009 18:27:43 +0000 (+0100) Subject: xorg-xkbcomp: initial import (verified compilation) X-Git-Url: http://gitweb/?a=commitdiff_plain;h=7947a38e7843700ed0ee55cc11e50a4c191186c1;p=attic%2Fports%2Fxorg-cross.git xorg-xkbcomp: initial import (verified compilation) --- diff --git a/xorg-xkbcomp/.footprint b/xorg-xkbcomp/.footprint new file mode 100644 index 0000000..5b376a2 --- /dev/null +++ b/xorg-xkbcomp/.footprint @@ -0,0 +1,6 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/xkbcomp +drwxr-xr-x root/root usr/man/ +drwxr-xr-x root/root usr/man/man1/ +-rw-r--r-- root/root usr/man/man1/xkbcomp.1.gz diff --git a/xorg-xkbcomp/.md5sum b/xorg-xkbcomp/.md5sum new file mode 100644 index 0000000..226cdeb --- /dev/null +++ b/xorg-xkbcomp/.md5sum @@ -0,0 +1 @@ +38c387bacdc01038c8ac280588792bcf xkbcomp-1.1.1.tar.bz2 diff --git a/xorg-xkbcomp/Pkgfile b/xorg-xkbcomp/Pkgfile new file mode 100644 index 0000000..ed68e09 --- /dev/null +++ b/xorg-xkbcomp/Pkgfile @@ -0,0 +1,25 @@ +# Description: xorg XKB keyboard description compiler +# URL: http://xorg.freedesktop.org +# Maintainer: Tilman Sauerbeck tilman at crux dot nu +# Arch Maintainer System Team crux-arm at mikeux dot dyndns dot org +# Depends on: xorg-libx11 xorg-libxkbfile + +name=xorg-xkbcomp +version=1.1.1 +release=1 +source=(http://xorg.freedesktop.org/releases/individual/app/xkbcomp-$version.tar.bz2) + +build() { + cd xkbcomp-$version + + export XKBCOMP_LIBS="-L$CLFS/usr/lib -lxkbfile -lX11" + export XKBCOMP_CFLAGS="-I$CLFS/usr/include -I$CLFS/usr/include/X11" + + ./configure --build=$CHOST \ + --host=$CTARGET \ + --prefix=/usr \ + --mandir=/usr/man + + make + make DESTDIR=$PKG install +}