wok-6.x annotate xplanet/receipt @ rev 8623
Fix: libarchive doesn't need acl hack anymore: acl files are now installed to the right location.
author | Antoine Bodin <gokhlayeh@slitaz.org> |
---|---|
date | Mon Feb 14 20:54:26 2011 +0100 (2011-02-14) |
parents | 3f03fb00b58b |
children | c33d24ce38b8 |
rev | line source |
---|---|
pascal@3804 | 1 # SliTaz package receipt. |
pascal@3804 | 2 |
pascal@3804 | 3 PACKAGE="xplanet" |
pascal@3804 | 4 VERSION="1.2.1" |
pascal@3804 | 5 CATEGORY="system-tools" |
pascal@3804 | 6 SHORT_DESC="Render major planets into the X root window." |
pascal@3804 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@3804 | 8 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pascal@3804 | 9 WEB_SITE="http://xplanet.sourceforge.net/" |
pascal@3804 | 10 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" |
pascal@3804 | 11 DEPENDS="perl jpeg libpng zlib tiff xorg-libX11 freetype pango fontconfig \ |
pascal@5008 | 12 glib xorg-libXau xorg-libXdmcp expat giflib xorg-libXss gcc-lib-base \ |
pascal@5008 | 13 util-linux-ng-uuid" |
pascal@3804 | 14 BUILD_DEPENDS="giflib-dev jpeg-dev libpng-dev zlib-dev tiff-dev \ |
pascal@3804 | 15 xorg-libX11-dev freetype-dev pango-dev fontconfig-dev glib-dev \ |
pascal@3804 | 16 xorg-libXau-dev xorg-libXdmcp-dev" |
pascal@3804 | 17 |
pascal@3804 | 18 # Rules to configure and make the package. |
pascal@3804 | 19 compile_rules() |
pascal@3804 | 20 { |
pascal@3804 | 21 cd $src |
pascal@3805 | 22 # Fix for gcc 4.4 |
pascal@3805 | 23 for file in src/Satellite.cpp src/Separation.cpp ; do |
pascal@3805 | 24 grep -q cstdio $file || sed -i '2i\#include <cstdio>' $file |
pascal@3805 | 25 done |
pascal@3804 | 26 ./configure --prefix=/usr --mandir=/usr/share/man $CONFIGURE_ARGS && |
pascal@3804 | 27 make && |
pascal@3804 | 28 make DESTDIR=$PWD/_pkg install |
pascal@3804 | 29 } |
pascal@3804 | 30 |
pascal@3804 | 31 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@3804 | 32 genpkg_rules() |
pascal@3804 | 33 { |
pascal@3804 | 34 mkdir -p $fs/usr/share |
pascal@3804 | 35 cp -a $_pkg/usr/share/xplanet $fs/usr/share |
pascal@3804 | 36 cp -a $_pkg/usr/bin $fs/usr |
pascal@3804 | 37 } |
pascal@3804 | 38 |