wok-next annotate xplanet/receipt @ rev 4357
Add: bluez (Bluetooth protocol stack)
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Sun Oct 04 15:44:01 2009 +0200 (2009-10-04) |
parents | 8f6f06772026 |
children | 413b0174114a |
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@3804 | 12 glib xorg-libXau xorg-libXdmcp expat" |
pascal@3804 | 13 BUILD_DEPENDS="giflib-dev jpeg-dev libpng-dev zlib-dev tiff-dev \ |
pascal@3804 | 14 xorg-libX11-dev freetype-dev pango-dev fontconfig-dev glib-dev \ |
pascal@3804 | 15 xorg-libXau-dev xorg-libXdmcp-dev" |
pascal@3804 | 16 |
pascal@3804 | 17 # Rules to configure and make the package. |
pascal@3804 | 18 compile_rules() |
pascal@3804 | 19 { |
pascal@3804 | 20 cd $src |
pascal@3805 | 21 # Fix for gcc 4.4 |
pascal@3805 | 22 for file in src/Satellite.cpp src/Separation.cpp ; do |
pascal@3805 | 23 grep -q cstdio $file || sed -i '2i\#include <cstdio>' $file |
pascal@3805 | 24 done |
pascal@3804 | 25 ./configure --prefix=/usr --mandir=/usr/share/man $CONFIGURE_ARGS && |
pascal@3804 | 26 make && |
pascal@3804 | 27 make DESTDIR=$PWD/_pkg install |
pascal@3804 | 28 } |
pascal@3804 | 29 |
pascal@3804 | 30 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@3804 | 31 genpkg_rules() |
pascal@3804 | 32 { |
pascal@3804 | 33 mkdir -p $fs/usr/share |
pascal@3804 | 34 cp -a $_pkg/usr/share/xplanet $fs/usr/share |
pascal@3804 | 35 cp -a $_pkg/usr/bin $fs/usr |
pascal@3804 | 36 } |
pascal@3804 | 37 |