wok-6.x annotate nitrogen/receipt @ rev 13206
fail2ban: update bdeps
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Mon Aug 06 14:55:22 2012 +0200 (2012-08-06) |
parents | 4f527a2114bf |
children | 380ffe05937a |
rev | line source |
---|---|
mallory@3116 | 1 # SliTaz package receipt. |
mallory@3116 | 2 |
mallory@3116 | 3 PACKAGE="nitrogen" |
slaxemulator@10248 | 4 VERSION="1.5.2" |
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 { |
pascal@12654 | 18 # Binutils 2.22 break many packages build without LDFLAGS set correctly. |
pascal@12654 | 19 export LDFLAGS="-Wl,--copy-dt-needed-entries" |
pascal@12654 | 20 |
mallory@3116 | 21 cd $src |
mallory@3116 | 22 sed -e '/png.h/d' < src/Thumbview.cc > src/Thumbview.cc.patched |
mallory@3116 | 23 mv src/Thumbview.cc.patched src/Thumbview.cc |
mallory@3116 | 24 ./configure \ |
mallory@3116 | 25 --prefix=/usr \ |
mallory@3116 | 26 --infodir=/usr/share/info \ |
mallory@3116 | 27 --mandir=/usr/share/man \ |
mallory@3116 | 28 $CONFIGURE_ARGS && |
mallory@3116 | 29 make && make DESTDIR=$PWD/_pkg install |
mallory@3116 | 30 } |
mallory@3116 | 31 |
mallory@3116 | 32 # Rules to gen a SliTaz package suitable for Tazpkg. |
mallory@3116 | 33 genpkg_rules() |
mallory@3116 | 34 { |
samuel_trassare@12062 | 35 mkdir -p $fs/usr/share/pixmaps |
mallory@3116 | 36 cp -a $_pkg/usr/bin $fs/usr |
samuel_trassare@12062 | 37 cp -a $_pkg/usr/share/icons/hicolor/32x32/apps/nitrogen.png \ |
samuel_trassare@12062 | 38 $fs/usr/share/pixmaps/ |
mallory@3116 | 39 } |
mallory@3116 | 40 |