wok annotate claws-mail/receipt @ rev 3886
perdition: ensure pidfile are valid
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Wed Aug 12 18:13:06 2009 +0200 (2009-08-12) |
parents | 2407153fdf77 |
children | a960fee00f2f |
rev | line source |
---|---|
erjo@1239 | 1 # SliTaz package receipt. |
erjo@1239 | 2 |
erjo@1239 | 3 PACKAGE="claws-mail" |
erjo@3648 | 4 VERSION="3.7.2" |
pascal@1423 | 5 CATEGORY="network" |
erjo@1304 | 6 SHORT_DESC="The user-firendly, lightweight and fast email client" |
erjo@1239 | 7 MAINTAINER="erjo@slitaz.org" |
pascal@2489 | 8 DEPENDS="libetpan libdb cyrus-sasl curl gpgme enchant dbus dbus-glib expat \ |
pascal@2489 | 9 gnutls gtk+ libgcrypt startup-notification xorg-libICE xorg-libSM \ |
pascal@2489 | 10 xorg-libX11 xorg-libXau xorg-libXcomposite xorg-libXcursor xorg-libXdmcp \ |
pascal@2513 | 11 xorg-libXext xorg-libXfixes xorg-libXinerama xorg-libXrandr xorg-libXrender \ |
erjo@3648 | 12 xorg-libXdamag" |
erjo@3648 | 13 BUILD_DEPENDS="libetpan-dev curl-dev gpgme-dev glib-dev libgpg-error-dev enchant libidn-dev" |
erjo@1239 | 14 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
erjo@1239 | 15 WEB_SITE="http://www.claws-mail.org/index.php" |
pascal@1776 | 16 WGET_URL="http://master.dl.sourceforge.net/sourceforge/sylpheed-claws/$TARBALL" |
erjo@1239 | 17 |
erjo@1239 | 18 # Rules to configure and make the package. |
erjo@1239 | 19 compile_rules() |
erjo@1239 | 20 { |
erjo@1239 | 21 cd $src |
erjo@1239 | 22 ./configure --prefix=/usr \ |
erjo@1239 | 23 --infodir=/usr/share/info \ |
erjo@1239 | 24 --disable-ldap \ |
erjo@1239 | 25 --disable-jpilot \ |
erjo@1239 | 26 --disable-dillo-viewer-plugin \ |
pascal@1514 | 27 --mandir=/usr/share/man $CONFIGURE_ARGS && |
pascal@1514 | 28 make && |
erjo@1239 | 29 make DESTDIR=$PWD/_pkg install |
erjo@1239 | 30 } |
erjo@1239 | 31 |
erjo@1239 | 32 # Rules to gen a SliTaz package suitable for Tazpkg. |
erjo@1239 | 33 genpkg_rules() |
erjo@1239 | 34 { |
erjo@1239 | 35 mkdir -p $fs/usr/lib/$PACKAGE/plugins \ |
erjo@1239 | 36 $fs/usr/share/locale \ |
erjo@1239 | 37 $fs/usr/share/ |
erjo@1239 | 38 cp -a $_pkg/usr/bin $fs/usr |
erjo@1239 | 39 cp -a $_pkg/usr/share/applications $fs/usr/share |
erjo@1239 | 40 cp -a $_pkg/usr/share/icons $fs/usr/share |
erjo@1239 | 41 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale |
erjo@1239 | 42 strip -s $fs/usr/bin/* |
erjo@1239 | 43 } |
erjo@1239 | 44 |