wok annotate nitrogen/receipt @ rev 9708
gcc: add few more options and enable c++ in --first-pass and remove --tune since we got configure WARNNIG, not use by LFS and not usefull we already have the tripplet --build, --host, --target
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Sun May 08 20:39:17 2011 +0200 (2011-05-08) |
parents | 5b44af8c1257 |
children | 99212aa2b897 |
rev | line source |
---|---|
mallory@3116 | 1 # SliTaz package receipt. |
mallory@3116 | 2 |
mallory@3116 | 3 PACKAGE="nitrogen" |
slaxemulator@6347 | 4 VERSION="1.5.1" |
mallory@3116 | 5 CATEGORY="x-window" |
mallory@3116 | 6 SHORT_DESC="Nitrogen is a background browser and setter for X windows." |
mallory@3116 | 7 MAINTAINER="mallory@sweetpeople.org" |
pascal@5004 | 8 DEPENDS="gtkmm libpng gcc-lib-base" |
slaxemulator@6347 | 9 BUILD_DEPENDS="gtkmm gtkmm-dev libpng-dev pkg-config glib-dev gtk+-dev cairomm-dev xorg-libXinerama-dev" |
mallory@3116 | 10 TARBALL="$PACKAGE-$VERSION.tar.gz" |
mallory@3116 | 11 WEB_SITE="http://projects.l3ib.org/nitrogen" |
mallory@3116 | 12 WGET_URL="$WEB_SITE/files/$TARBALL" |
jozee@4969 | 13 TAGS="wallpaper" |
mallory@3116 | 14 |
mallory@3116 | 15 # Rules to configure and make the package. |
mallory@3116 | 16 compile_rules() |
mallory@3116 | 17 { |
mallory@3116 | 18 cd $src |
mallory@3116 | 19 sed -e '/png.h/d' < src/Thumbview.cc > src/Thumbview.cc.patched |
mallory@3116 | 20 mv src/Thumbview.cc.patched src/Thumbview.cc |
mallory@3116 | 21 ./configure \ |
mallory@3116 | 22 --prefix=/usr \ |
mallory@3116 | 23 --infodir=/usr/share/info \ |
mallory@3116 | 24 --mandir=/usr/share/man \ |
mallory@3116 | 25 $CONFIGURE_ARGS && |
mallory@3116 | 26 make && make DESTDIR=$PWD/_pkg install |
mallory@3116 | 27 } |
mallory@3116 | 28 |
mallory@3116 | 29 # Rules to gen a SliTaz package suitable for Tazpkg. |
mallory@3116 | 30 genpkg_rules() |
mallory@3116 | 31 { |
mallory@3116 | 32 mkdir -p $fs/usr/share/pixmaps $fs/usr/share/applications |
mallory@3116 | 33 cp -a $_pkg/usr/bin $fs/usr |
mallory@3116 | 34 cp -a $_pkg/usr/share/icons/hicolor/32x32/apps/nitrogen.png $fs/usr/share/pixmaps/ |
mallory@3116 | 35 cp -a stuff/nitrogen.desktop $fs/usr/share/applications/ |
mallory@3116 | 36 } |
mallory@3116 | 37 |