wok-next annotate vte/receipt @ rev 6928

Up: elfutils to 0.149. Fixed it to build in clean chroot. Fixed it also to download sources with real wget by since sources are on https host. So now elfutils can download its sources just fine.
author Christopher Rogers <slaxemulator@gmail.com>
date Fri Oct 22 22:36:22 2010 +0000 (2010-10-22)
parents 3974255ebbd6
children a6dee356e21f
rev   line source
pankso@189 1 # SliTaz package receipt.
pankso@189 2
pankso@189 3 PACKAGE="vte"
slaxemulator@6846 4 VERSION="0.26.1"
pankso@211 5 CATEGORY="utilities"
pascal@228 6 SHORT_DESC="Terminal capabilities for GTK+ widgets."
pascal@2526 7 DEPENDS="gtk+ ncurses xorg-libXdamage"
slaxemulator@6846 8 BUILD_DEPENDS="gtk+-dev perl perl-xml-parser intltool ncurses-dev gobject-introspection-dev"
pankso@189 9 MAINTAINER="pankso@slitaz.org"
pankso@189 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
pankso@189 11 WEB_SITE="http://www.gnome.org/"
erjo@4723 12 WGET_URL="ftp://ftp.gnome.org/pub/GNOME/sources/vte/${VERSION%.*}/$TARBALL"
pankso@641 13 LOCALE=""
pankso@189 14
pankso@189 15 # Rules to configure and make the package.
pankso@189 16 compile_rules()
pankso@189 17 {
pankso@189 18 cd $src
pankso@189 19 ./configure \
pankso@189 20 --prefix=/usr \
pankso@189 21 --libexecdir=/usr/lib/vte \
pankso@189 22 --infodir=/usr/share/info \
pankso@189 23 --mandir=/usr/share/man \
pankso@189 24 --with-html-dir=/usr/share/doc \
pankso@189 25 --with-pcre \
pascal@2438 26 $CONFIGURE_ARGS &&
pascal@2438 27 make &&
pankso@189 28 make DESTDIR=$PWD/_pkg install
pankso@189 29 }
pankso@189 30
pankso@189 31 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@189 32 genpkg_rules()
pankso@189 33 {
pankso@642 34 mkdir -p $fs/usr/lib $fs/usr/share
pankso@189 35 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
pankso@189 36 cp -a $_pkg/usr/lib/vte $fs/usr/lib
pankso@642 37 cp -a $_pkg/usr/share/vte $fs/usr/share
pankso@189 38 }