# HG changeset patch # User Eric Joseph-Alexandre # Date 1216156364 -7200 # Node ID b64b8906e6a7916ba24c74c8a98b5dd7848cc7c0 # Parent 928caf808a538638c7c0d76a56f8ac9f9032f421 Add: grisbi, an another bank manager, fix: missing icon for Homebank and deps for Inkscape diff -r 928caf808a53 -r b64b8906e6a7 grisbi/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/grisbi/receipt Tue Jul 15 23:12:44 2008 +0200 @@ -0,0 +1,39 @@ +# SliTaz package receipt. + +PACKAGE="grisbi" +VERSION="0.5.9" +CATEGORY="office" +SHORT_DESC="Personnal bank manager" +MAINTAINER="Erjo " +DEPENDS="" +TARBALL="$PACKAGE-$VERSION.tar.bz2" +WEB_SITE="http://www.grisbi.org/index.fr.html" +WGET_URL="http://heanet.dl.sourceforge.net/sourceforge/grisbi/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure --prefix=/usr $CONFIGURE_ARGS + make + make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/share \ + $fs/usr/share/locale \ + $fs/usr/applicatrions \ + + + cp -a $_pkg/usr/bin $fs/usr + cp -a $_pkg/usr/share/pixmaps $fs/usr/share + cp -a $_pkg/usr/share/mime-info $fs/usr/share + cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale + cp -a $fs/usr/share/pixmaps/grisbi/grisbi.png $fs/usr/share/pixmaps + cp -a stuff/grisbi.desktop $fs/usr/applications + + strip -s $fs/usr/bin/* +} + diff -r 928caf808a53 -r b64b8906e6a7 grisbi/stuff/grisbi.desktop --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/grisbi/stuff/grisbi.desktop Tue Jul 15 23:12:44 2008 +0200 @@ -0,0 +1,15 @@ +[Desktop Entry] +Encoding=UTF-8 +Name=Grisbi +Name[fr]=Grisbi +GenericName=Grisbi +GenericName[fr]=Grisbi +Comment=Personal finance manager +Comment[fr]=Gestionnaire de finance personnel +Exec=grisbi +Icon=grisbi.png +Terminal=false +Type=Application +Categories=Application;Office; +StartupNotify=true +MimeType=application/x-grisbi; diff -r 928caf808a53 -r b64b8906e6a7 homebank/receipt --- a/homebank/receipt Tue Jul 15 22:37:28 2008 +0200 +++ b/homebank/receipt Tue Jul 15 23:12:44 2008 +0200 @@ -27,10 +27,13 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/share/homebank + mkdir -p $fs/usr/share/homebank $fs/usr/share/pixmaps + cp -a $_pkg/usr/bin $fs/usr cp -a $_pkg/usr/share/mime $fs/usr/share cp -a $_pkg/usr/share/homebank/images $fs/usr/share/homebank + #copying homebank icon. + cp -a "$_pkg/usr/share/icons/hicolor/48x48/apps/homebank.png" $fs/usr/share/pixmaps # Resize and export all SVG images to PNG. cd $fs/usr/share/homebank/images for img in *.svg @@ -39,4 +42,6 @@ --export-png=${img%.svg}.png $img done rm *.svg + + } diff -r 928caf808a53 -r b64b8906e6a7 inkscape/receipt --- a/inkscape/receipt Tue Jul 15 22:37:28 2008 +0200 +++ b/inkscape/receipt Tue Jul 15 23:12:44 2008 +0200 @@ -5,7 +5,7 @@ CATEGORY="graphics" SHORT_DESC="Vector drawing application." MAINTAINER="pankso@slitaz.org" -DEPENDS="gc gtk+ libxslt libsigc++ glibmm gtkmm libxml2 libpng popt" +DEPENDS="gc gtk+ libxslt libsigc++ glibmm gtkmm libxml2 libpng popt PyXML" BUILD_DEPENDS="gc-dev gtk+-dev libxslt-dev libsigc++-dev glibmm-dev gtkmm-dev popt-dev" TARBALL="$PACKAGE-$VERSION.tar.gz" WEB_SITE="http://www.inkscape.org/"