wok-current annotate xorg-cf-files/receipt @ rev 6653
Fixed gdk-pixbuf. Added xpm and jpeg to be build into gdk-pixbuf instead of being just plugins. Fixes some missing icons and background from being missig in slitaz desktop.
| author | Christopher Rogers <slaxemulator@gmail.com> |
|---|---|
| date | Mon Oct 11 01:06:19 2010 +0000 (2010-10-11) |
| parents | |
| children | 07ae722ec64e |
| rev | line source |
|---|---|
| rcx@3142 | 1 # SliTaz package receipt. |
| rcx@3142 | 2 |
| rcx@3142 | 3 PACKAGE="xorg-cf-files" |
| rcx@3142 | 4 VERSION="1.0.2" |
| rcx@3142 | 5 CATEGORY="development" |
| rcx@3142 | 6 SHORT_DESC="Conf files used by xorg and imake." |
| rcx@3142 | 7 MAINTAINER="rcx@zoominternet.net" |
| rcx@3142 | 8 DEPENDS="" |
| rcx@3142 | 9 BUILD_DEPENDS="slitaz-toolchain" |
| rcx@3142 | 10 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
| rcx@3142 | 11 WEB_SITE="http://www.x.org/" |
| rcx@3142 | 12 WGET_URL="$XORG_MIRROR/util/$TARBALL" |
| rcx@3142 | 13 |
| rcx@3142 | 14 # Rules to configure and make the package. |
| rcx@3142 | 15 compile_rules() |
| rcx@3142 | 16 { |
| rcx@3142 | 17 cd $src |
| rcx@3142 | 18 ./configure \ |
| rcx@3142 | 19 --prefix=/usr \ |
| rcx@3142 | 20 --infodir=/usr/share/info \ |
| rcx@3142 | 21 --mandir=/usr/share/man \ |
| rcx@3142 | 22 $CONFIGURE_ARGS && |
| rcx@3142 | 23 make && make DESTDIR=$PWD/_pkg install |
| rcx@3142 | 24 } |
| rcx@3142 | 25 |
| rcx@3142 | 26 # Rules to gen a SliTaz package suitable for Tazpkg. |
| rcx@3142 | 27 genpkg_rules() |
| rcx@3142 | 28 { |
| rcx@3142 | 29 mkdir -p $fs/usr |
| rcx@3142 | 30 cp -a $_pkg/usr/lib $fs/usr |
| rcx@3142 | 31 } |
| rcx@3142 | 32 |