CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
xorg-libxaw: initial import (verified compilation)
[attic/ports/xorg-cross.git] / xorg-libxaw / Pkgfile
1 # Description: X Athena Widgets toolkit
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-xproto xorg-libx11 xorg-xextproto xorg-libxext xorg-libxt xorg-libxmu xorg-libxpm
6
7 name=xorg-libxaw
8 version=1.0.6
9 release=1
10 source=(http://xorg.freedesktop.org/releases/individual/lib/libXaw-$version.tar.bz2)
11
12 build() {
13 cd libXaw-$version
14
15 export XAW6_LIBS="-L$CLFS/usr/lib -lXext -lXmu -lXt -lX11 -lSM -lICE"
16 export XAW6_CFLAGS="-I$CLFS/usr/include -I$CLFS/usr/include/X11 -I$CLFS/usr/include/X11/extensions"
17 export XAW7_LIBS="$XAW6_LIBS -lXpm"
18 export XAW7_CFLAGS="$XAW6_CFLAGS"
19
20 ./configure --build=$CHOST \
21 --host=$CTARGET \
22 --prefix=/usr \
23 --mandir=/usr/man
24
25 make
26 make DESTDIR=$PKG install
27 }