CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
xorg-xprop: initial import (verified compilation)
authorJose V Beneyto <sepen@crux.nu>
Thu, 24 Dec 2009 11:38:36 +0000 (12:38 +0100)
committerJose V Beneyto <sepen@crux.nu>
Thu, 24 Dec 2009 11:38:36 +0000 (12:38 +0100)
xorg-xprop/.footprint [new file with mode: 0644]
xorg-xprop/.md5sum [new file with mode: 0644]
xorg-xprop/Pkgfile [new file with mode: 0644]

diff --git a/xorg-xprop/.footprint b/xorg-xprop/.footprint
new file mode 100644 (file)
index 0000000..d44adc4
--- /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/xprop
+drwxr-xr-x     root/root       usr/man/
+drwxr-xr-x     root/root       usr/man/man1/
+-rw-r--r--     root/root       usr/man/man1/xprop.1.gz
diff --git a/xorg-xprop/.md5sum b/xorg-xprop/.md5sum
new file mode 100644 (file)
index 0000000..780e667
--- /dev/null
@@ -0,0 +1 @@
+f0bacbd30f0dd1c1e9ccafe97687b7a4  xprop-1.1.0.tar.bz2
diff --git a/xorg-xprop/Pkgfile b/xorg-xprop/Pkgfile
new file mode 100644 (file)
index 0000000..f762d64
--- /dev/null
@@ -0,0 +1,27 @@
+# Description: Property displayer for X
+# URL: http://xorg.freedesktop.org
+# Maintainer: Tilman Sauerbeck tilman at crux dot nu
+# Arch Maintainer: CRUX-ARM System Team crux-arm at mikeux dot dyndns dot org
+# Depends on: xorg-libxmu xorg-libx11
+
+name=xorg-xprop
+version=1.1.0
+release=1
+source=(http://xorg.freedesktop.org/releases/individual/app/xprop-$version.tar.bz2)
+
+build() {
+  cd xprop-$version
+
+  export DEFAULT_LIBS="-L$CLFS/usr/lib"
+  export DEFAULT_CFLAGS="-I$CLFS/usr/include -I$CLFS/usr/include/X11 -I$CLFS/usr/include/X11/extensions"
+  export XPROP_LIBS="$DEFAULT_LIBS -lX11"
+  export XPROP_CFLAGS="$DEFAULT_CFLAGS"
+
+  ./configure --build=$CHOST \
+              --host=$CTARGET \
+              --prefix=/usr \
+              --mandir=/usr/man
+
+  make
+  make DESTDIR=$PKG install
+}