# HG changeset patch # User Christopher Rogers # Date 1286855353 0 # Node ID 92eb2f9123f34fbfc72d5fe7ab2a3f3abfae8715 # Parent de8d02ec32950dcfd18d74e437e53be069f1b813 Added depends need for gobject-introspection. I also disabled static files and remove .pyc and .pyo files. diff -r de8d02ec3295 -r 92eb2f9123f3 gobject-introspection-dev/receipt --- a/gobject-introspection-dev/receipt Tue Oct 12 03:21:24 2010 +0000 +++ b/gobject-introspection-dev/receipt Tue Oct 12 03:49:13 2010 +0000 @@ -5,7 +5,7 @@ CATEGORY="development" SHORT_DESC="Gobject-introspection devel files." MAINTAINER="pankso@slitaz.org" -DEPENDS="gobject-introspection" +DEPENDS="gobject-introspection libffi-dev" WANTED="gobject-introspection" WEB_SITE="http://live.gnome.org/GObjectInstrospection" diff -r de8d02ec3295 -r 92eb2f9123f3 gobject-introspection/receipt --- a/gobject-introspection/receipt Tue Oct 12 03:21:24 2010 +0000 +++ b/gobject-introspection/receipt Tue Oct 12 03:49:13 2010 +0000 @@ -4,7 +4,7 @@ VERSION="0.9.10" CATEGORY="x-window" SHORT_DESC="Introspection system for GObject-based libraries." -DEPENDS="glib" +DEPENDS="libgio glib libffi" BUILD_DEPENDS="glib-dev libgio-dev pkg-config bison flex libffi-dev python-dev cairo-dev" MAINTAINER="pankso@slitaz.org" TARBALL="$PACKAGE-$VERSION.tar.bz2" @@ -18,6 +18,7 @@ ./configure \ --prefix=/usr \ --sysconfdir=/etc \ + --disable-static \ $CONFIGURE_ARGS && make && make DESTDIR=$PWD/_pkg install @@ -30,4 +31,6 @@ cp -a $_pkg/usr/bin $fs/usr cp -a $_pkg/usr/lib/*.so* $fs/usr/lib cp -a $_pkg/usr/lib/gobject-introspection $fs/usr/lib + find $fs/usr/lib -name "*.pyc" -delete + find $fs/usr/lib -name "*.pyo" -delete }