# HG changeset patch # User Christophe Lincoln # Date 1237759441 -3600 # Node ID 7f92b6c4317fc47b6578bf18961859707c65fe25 # Parent b18c5f371bc99f3a00e017b7bc54c66721c2dfdc Add pangomm (deps to update and fix build of gtkmm) diff -r b18c5f371bc9 -r 7f92b6c4317f pangomm-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pangomm-dev/receipt Sun Mar 22 23:04:01 2009 +0100 @@ -0,0 +1,18 @@ +# SliTaz package receipt. + +PACKAGE="pangomm-dev" +VERSION="2.14.1" +CATEGORY="development" +SHORT_DESC="Pangomm library devel files." +MAINTAINER="pankso@slitaz.org" +WANTED="pangomm" +WEB_SITE="http://ftp.gnome.org/pub/gnome/sources/pangomm/" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $_pkg/usr/lib/*.*a $fs/usr/lib + cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib + cp -a $_pkg/usr/include $fs/usr +} diff -r b18c5f371bc9 -r 7f92b6c4317f pangomm/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pangomm/receipt Sun Mar 22 23:04:01 2009 +0100 @@ -0,0 +1,32 @@ +# SliTaz package receipt. + +PACKAGE="pangomm" +VERSION="2.14.1" +CATEGORY="x-window" +SHORT_DESC="Pango binding for GTKmm." +MAINTAINER="pankso@slitaz.org" +DEPENDS="pixman cairomm glibmm libgiomm" +BUILD_DEPENDS="pixman-dev cairomm-dev glibmm-dev libgiomm-dev" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://ftp.gnome.org/pub/gnome/sources/pangomm/" +WGET_URL="http://ftp.gnome.org/pub/gnome/sources/pangomm/2.14/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure \ + --prefix=/usr \ + --mandir=/usr/share/man \ + --with-html-dir=/usr/share/doc \ + $CONFIGURE_ARGS && + make && + make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $_pkg/usr/lib/*.so* $fs/usr/lib +}