wok annotate putty/receipt @ rev 5253

Removed firefox-simple-mail
author Christophe Lincoln <pankso@slitaz.org>
date Mon Apr 12 18:58:00 2010 +0200 (2010-04-12)
parents 3a535152c0cf
children 1185a6cb9260
rev   line source
rcx@4035 1 # SliTaz package receipt.
rcx@4035 2
rcx@4035 3 PACKAGE="putty"
pankso@4886 4 VERSION="0.60-2010-02-05"
rcx@4035 5 CATEGORY="utilities"
rcx@4035 6 SHORT_DESC="A free telnet/SSH client."
rcx@4035 7 MAINTAINER="rcx@zoominternet.net"
rcx@4035 8 DEPENDS="glibc-base expat zlib gtk+ atk cairo freetype fontconfig glib \
rcx@4035 9 libgio pango pixman libpng libxcb xcb-util xorg-libX11 xorg-libXau \
rcx@4035 10 xorg-libXcomposite xorg-libXcursor xorg-libXdamage xorg-libXdmcp \
paul@4913 11 xorg-libXext xorg-libXfixes xorg-libXinerama xorg-libXrender krb5 libcomerr3"
erjo@4784 12 BUILD_DEPENDS="slitaz-toolchain gtk+-dev imagemagick python perl krb5-dev"
rcx@4035 13 TARBALL="$PACKAGE-$VERSION.tar.gz"
erjo@4784 14 #WEB_SITE="http://putty.linux-mirror.org/"
rcx@4035 15 #WGET_URL="http://putty.linux-mirror.org/latest/$TARBALL"
rcx@4035 16 WGET_URL="http://tartarus.org/~simon/putty-snapshots/$TARBALL"
erjo@4784 17
rcx@4035 18 # Rules to configure and make the package.
rcx@4035 19 compile_rules()
rcx@4035 20 {
rcx@4035 21
rcx@4035 22 cd $src/icons &&
rcx@4035 23 make &&
rcx@4035 24 make install &&
rcx@4035 25
rcx@4035 26 cd $src/unix &&
rcx@4035 27
pascal@4898 28 sed -i 's/AM_PATH_GTK(.*//' configure.ac &&
pascal@4898 29 autoheader &&
pascal@4898 30 autoconf &&
pascal@4898 31
rcx@4035 32 sed -e 's/-Werror//g' -i configure &&
rcx@4035 33 ./configure \
rcx@4035 34 --prefix=/usr \
rcx@4035 35 --mandir=/usr/share/man \
rcx@4035 36 $CONFIGURE_ARGS &&
rcx@4035 37 make XFLAGS=-DTELNET_DEFAULT &&
erjo@4784 38 make DESTDIR=$src/_pkg install
erjo@4784 39 # &&
erjo@4784 40 #cp $src/icons/pterm-48.png $src/_pkg/usr/share/pixmaps/pterm.png &&
erjo@4784 41 #cp $src/icons/putty-48.png $src/_pkg/usr/share/pixmaps/putty.png
rcx@4035 42 }
rcx@4035 43
rcx@4035 44 # Rules to gen a SliTaz package suitable for Tazpkg.
rcx@4035 45 genpkg_rules()
rcx@4035 46 {
erjo@4784 47 mkdir -p $fs/usr/share $fs/usr/share/pixmaps
erjo@4784 48
erjo@4784 49 cp -a stuff/applications $src/_pkg/usr/share
rcx@4035 50 cp -a $_pkg/usr/bin $fs/usr
rcx@4035 51 cp -a $_pkg/usr/share/applications $fs/usr/share
rcx@4035 52 cp -a $_pkg/usr/share/pixmaps $fs/usr/share
erjo@4784 53 cp -a $src/icons/pterm-48.png $fs/usr/share/pixmaps/pterm.png
erjo@4784 54 cp -a $src/icons/putty-48.png $fs/usr/share/pixmaps/putty.png
rcx@4035 55 }