CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
a40bdfb9ddd05623d41d6bbd573e667d78950510
[attic/ports/xorg-cross.git] / xorg-libx11 / Pkgfile
1 # Description: X client library
2 # URL: http://xorg.freedesktop.org
3 # Maintainer: Tilman Sauerbeck, tilman at crux dot nu
4 # Arch Maintainer: CRUX-ARM System Team, crux-arm at mikeux dot dyndns dot org
5 # Depends on: xorg-libxcb xorg-xextproto xorg-xtrans org-kbproto xorg-inputproto
6
7 name=xorg-libx11
8 version=1.3.2
9 release=1
10 source=(http://xorg.freedesktop.org/releases/individual/lib/libX11-$version.tar.bz2)
11
12 build() {
13 cd libX11-$version
14
15 sed -i configure \
16 -e "s|KEYSYMDEF=.*|KEYSYMDEF=\"$CLFS/usr/include/X11/keysymdef.h\"|"
17
18 export X11_LIBS="-L$CLFS/usr/lib -lpthread-stubs"
19 export X11_CFLAGS="-I$CLFS/usr/include -I$CLFS/usr/include/X11 -I$CLFS/usr/include/X11/extensions"
20 export XPROTO_LIBS="$X11_LIBS"
21 export XPROTO_CFLAGS="$X11_CFLAGS"
22 export XKBPROTO_LIBS="$X11_LIBS"
23 export XKBPROTO_CFLAGS="$X11_CFLAGS"
24 export XDMCP_LIBS="$X11_LIBS"
25 export XDMCP_CFLAGS="$X11_CFLAGS"
26
27 ./configure --build=$CHOST \
28 --host=$CTARGET \
29 --prefix=/usr \
30 --mandir=/usr/man \
31 --enable-malloc0returnsnull
32
33 make
34 make DESTDIR=$PKG install
35
36 rm -rf $PKG/usr/share/doc
37 }