CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
xorg-xkbcomp: initial import (verified compilation)
authorJose V Beneyto <sepen@crux.nu>
Fri, 18 Dec 2009 18:27:43 +0000 (19:27 +0100)
committerJose V Beneyto <sepen@crux.nu>
Fri, 18 Dec 2009 18:27:43 +0000 (19:27 +0100)
xorg-xkbcomp/.footprint [new file with mode: 0644]
xorg-xkbcomp/.md5sum [new file with mode: 0644]
xorg-xkbcomp/Pkgfile [new file with mode: 0644]

diff --git a/xorg-xkbcomp/.footprint b/xorg-xkbcomp/.footprint
new file mode 100644 (file)
index 0000000..5b376a2
--- /dev/null
@@ -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 (file)
index 0000000..226cdeb
--- /dev/null
@@ -0,0 +1 @@
+38c387bacdc01038c8ac280588792bcf  xkbcomp-1.1.1.tar.bz2
diff --git a/xorg-xkbcomp/Pkgfile b/xorg-xkbcomp/Pkgfile
new file mode 100644 (file)
index 0000000..ed68e09
--- /dev/null
@@ -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
+}