diff options
author | Lukc <lukc@upyum.com> | 2010-12-18 23:16:03 +0100 |
---|---|---|
committer | Lukc <lukc@upyum.com> | 2010-12-18 23:16:03 +0100 |
commit | 1fa6afb7311322fa5c2b9c22a9a37c810a2b3418 (patch) | |
tree | 5b5f63901a4d7337f2abea8c90daae0330c93a0b /xorg-xtrans | |
download | xorg-1fa6afb7311322fa5c2b9c22a9a37c810a2b3418.tar.gz xorg-1fa6afb7311322fa5c2b9c22a9a37c810a2b3418.tar.bz2 xorg-1fa6afb7311322fa5c2b9c22a9a37c810a2b3418.tar.xz xorg-1fa6afb7311322fa5c2b9c22a9a37c810a2b3418.zip |
Diffstat (limited to 'xorg-xtrans')
-rw-r--r-- | xorg-xtrans/.footprint | 17 | ||||
-rw-r--r-- | xorg-xtrans/.md5sum | 1 | ||||
-rw-r--r-- | xorg-xtrans/Pkgfile | 18 | ||||
-rw-r--r-- | xorg-xtrans/Pkgfile.old | 19 |
4 files changed, 55 insertions, 0 deletions
diff --git a/xorg-xtrans/.footprint b/xorg-xtrans/.footprint new file mode 100644 index 0000000..b8a4b79 --- /dev/null +++ b/xorg-xtrans/.footprint @@ -0,0 +1,17 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/include/ +drwxr-xr-x root/root usr/include/X11/ +drwxr-xr-x root/root usr/include/X11/Xtrans/ +-rw-r--r-- root/root usr/include/X11/Xtrans/Xtrans.c +-rw-r--r-- root/root usr/include/X11/Xtrans/Xtrans.h +-rw-r--r-- root/root usr/include/X11/Xtrans/Xtransint.h +-rw-r--r-- root/root usr/include/X11/Xtrans/Xtranslcl.c +-rw-r--r-- root/root usr/include/X11/Xtrans/Xtranssock.c +-rw-r--r-- root/root usr/include/X11/Xtrans/Xtranstli.c +-rw-r--r-- root/root usr/include/X11/Xtrans/Xtransutil.c +-rw-r--r-- root/root usr/include/X11/Xtrans/transport.c +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/aclocal/ +-rw-r--r-- root/root usr/share/aclocal/xtrans.m4 +drwxr-xr-x root/root usr/share/pkgconfig/ +-rw-r--r-- root/root usr/share/pkgconfig/xtrans.pc diff --git a/xorg-xtrans/.md5sum b/xorg-xtrans/.md5sum new file mode 100644 index 0000000..5774d08 --- /dev/null +++ b/xorg-xtrans/.md5sum @@ -0,0 +1 @@ +2d1e57e82acc5f21797e92341415af2f xtrans-1.2.5.tar.bz2 diff --git a/xorg-xtrans/Pkgfile b/xorg-xtrans/Pkgfile new file mode 100644 index 0000000..6184001 --- /dev/null +++ b/xorg-xtrans/Pkgfile @@ -0,0 +1,18 @@ +description="xorg lib xtrans" +packager="" +maintainer="Tilman Sauerbeck, tilman at crux dot nu" +url="http://xorg.freedesktop.org" +depends=() + +name=xorg-xtrans +version=1.2.5 +release=1 +source=(http://xorg.freedesktop.org/releases/individual/lib/xtrans-1.2.5.tar.bz2) +build () +{ + cd xtrans-$version; + ./configure --prefix=/usr; + make; + make DESTDIR=$PKG install; + rmdir $PKG/usr/share/doc/{xtrans,} +} diff --git a/xorg-xtrans/Pkgfile.old b/xorg-xtrans/Pkgfile.old new file mode 100644 index 0000000..052f808 --- /dev/null +++ b/xorg-xtrans/Pkgfile.old @@ -0,0 +1,19 @@ +# Description: xorg lib xtrans +# URL: http://xorg.freedesktop.org +# Maintainer: Tilman Sauerbeck, tilman at crux dot nu + +name=xorg-xtrans +version=1.2.5 +release=1 +source=(http://xorg.freedesktop.org/releases/individual/lib/xtrans-$version.tar.bz2) + +build() { + cd xtrans-$version + + ./configure --prefix=/usr + + make + make DESTDIR=$PKG install + + rmdir $PKG/usr/share/doc/{xtrans,} +} |