# HG changeset patch # User Christophe Lincoln # Date 1241643369 -7200 # Node ID 7f68816e9c1d2bc608e93df1ac0d53b9c3285b0c # Parent e3f84bde9be8c8f62f2c2818de0b05626cd9b0bc Add esmart (E17 evas smart objects) diff -r e3f84bde9be8 -r 7f68816e9c1d esmart-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/esmart-dev/receipt Wed May 06 22:56:09 2009 +0200 @@ -0,0 +1,22 @@ +# SliTaz package receipt. + +PACKAGE="esmart-dev" +VERSION="40510" +CATEGORY="development" +SHORT_DESC="Devel files from E17 esmart." +MAINTAINER="pankso@slitaz.org" +DEPENDS="evas-dev" +WANTED="esmart" +WEB_SITE="http://www.enlightenment.org/" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $_pkg/usr/include $fs/usr + cp -a $_pkg/usr/lib/*.*a $fs/usr/lib + cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib + cp -a $_pkg/usr/lib/esmart $fs/usr/lib + rm -rf $fs/usr/lib/esmart/*/*.so +} + diff -r e3f84bde9be8 -r 7f68816e9c1d esmart/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/esmart/receipt Wed May 06 22:56:09 2009 +0200 @@ -0,0 +1,37 @@ +# SliTaz package receipt. + +PACKAGE="esmart" +VERSION="40510" +CATEGORY="x-window" +SHORT_DESC="A collection of evas smart objects." +MAINTAINER="pankso@slitaz.org" +DEPENDS="cairo evas" +BUILD_DEPENDS="cairo-dev evas-dev" +WEB_SITE="http://www.enlightenment.org/" + +# Rules to configure and make the package. +compile_rules() +{ + [ -d "$PACKAGE-$VERSION" ] && rm -rf $PACKAGE-$VERSION + svn co http://svn.enlightenment.org/svn/e/trunk/$PACKAGE \ + -r $VERSION $PACKAGE-$VERSION + cd $src + ./autogen.sh \ + --prefix=/usr \ + --mandir=/usr/share/man \ + $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/bin $fs/usr + cp -a $_pkg/usr/share $fs/usr + cp -a $_pkg/usr/lib/*.so* $fs/usr/lib + cp -a $_pkg/usr/lib/esmart $fs/usr/lib + rm -rf $fs/usr/lib/esmart/*/*.*a +} +