diff options
author | Theo Chatzimichos <tampakrap@gentoo.org> | 2011-01-29 16:09:35 +0000 |
---|---|---|
committer | Theo Chatzimichos <tampakrap@gentoo.org> | 2011-01-29 16:09:35 +0000 |
commit | aa35b4aaf863bedbcf965aca3a1f837310a8b8b6 (patch) | |
tree | 2fdb4b76231abff3152736fe4fb71d78506c9dd6 /dev-libs/libindicate | |
parent | stable x86, bug 352808 (diff) | |
download | gentoo-2-aa35b4aaf863bedbcf965aca3a1f837310a8b8b6.tar.gz gentoo-2-aa35b4aaf863bedbcf965aca3a1f837310a8b8b6.tar.bz2 gentoo-2-aa35b4aaf863bedbcf965aca3a1f837310a8b8b6.zip |
Version bump, fix tests, support USE=introspection. Ebuild and patches by Dennis Schridde
(Portage version: 2.2.0_alpha19/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs/libindicate')
-rw-r--r-- | dev-libs/libindicate/ChangeLog | 9 | ||||
-rw-r--r-- | dev-libs/libindicate/libindicate-0.4.4-r1.ebuild | 81 | ||||
-rw-r--r-- | dev-libs/libindicate/metadata.xml | 3 |
3 files changed, 92 insertions, 1 deletions
diff --git a/dev-libs/libindicate/ChangeLog b/dev-libs/libindicate/ChangeLog index 8beaacdcf02e..fee04d931cab 100644 --- a/dev-libs/libindicate/ChangeLog +++ b/dev-libs/libindicate/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for dev-libs/libindicate # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libindicate/ChangeLog,v 1.10 2011/01/17 09:34:19 tampakrap Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libindicate/ChangeLog,v 1.11 2011/01/29 16:09:34 tampakrap Exp $ + +*libindicate-0.4.4-r1 (29 Jan 2011) + + 29 Jan 2011; Theo Chatzimichos <tampakrap@gentoo.org> + +libindicate-0.4.4-r1.ebuild: + Version bump, fix tests, support USE=introspection. Ebuild and patches by + Dennis Schridde *libindicate-0.4.4 (17 Jan 2011) diff --git a/dev-libs/libindicate/libindicate-0.4.4-r1.ebuild b/dev-libs/libindicate/libindicate-0.4.4-r1.ebuild new file mode 100644 index 000000000000..91d69af5b46f --- /dev/null +++ b/dev-libs/libindicate/libindicate-0.4.4-r1.ebuild @@ -0,0 +1,81 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libindicate/libindicate-0.4.4-r1.ebuild,v 1.1 2011/01/29 16:09:35 tampakrap Exp $ + +EAPI=2 + +inherit autotools eutils versionator + +DESCRIPTION="Library to raise flags on DBus for other components of the desktop to pick up and visualize" +HOMEPAGE="https://launchpad.net/libindicate/" +SRC_URI="http://launchpad.net/${PN}/$(get_version_component_range 1-2)/${PV}/+download/${P}.tar.gz" + +LICENSE="LGPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc +introspection" + +RESTRICT="test" + +# For the dependency on dev-libs/libdbusmenu see launchpad-bug #552667 +RDEPEND="dev-libs/glib:2[introspection=] + dev-libs/dbus-glib + dev-libs/libdbusmenu[introspection=] + dev-libs/libxml2:2 + x11-libs/gtk+:2 + dev-python/pygtk + dev-dotnet/gtk-sharp + dev-dotnet/gtk-sharp-gapi" +DEPEND="${RDEPEND} + doc? ( dev-util/gtk-doc ) + introspection? ( >=dev-libs/gobject-introspection-0.6.3 ) + dev-util/gtk-doc-am + dev-util/pkgconfig" + +src_prepare() { + # Without patches: + # Make python optional, launchpad-bug #643921 + # Make mono optional, launchpad-bug #643922 + + # Incomplete patches: + # Make gtk optional, needs optional-python or code modifications, launchpad-bug #431311 + #epatch "${FILESDIR}/${P}-optional-gtk.patch" + + # Make doc optional, launchpad-bug #643911 + epatch "${FILESDIR}/${P}-optional-doc.patch" + # Do not compile mono-example by default, launchpad-bug #643912 + epatch "${FILESDIR}/${P}-optional-mono-example.patch" + # Do not compile examples by default, launchpad-bug #643917 + epatch "${FILESDIR}/${P}-optional-examples.patch" + # Fix trouble with autoreconf and m4 directory, launchpad-bug #683552 + epatch "${FILESDIR}/${P}-fix-aclocal.patch" + # Fixup undeclared HAVE_INTROSPECTION, launchpad-bug #552537 + epatch "${FILESDIR}/${P}-fix-introspection.patch" + # Fix out-of-source builds, launchpad-bug #643913 + epatch "${FILESDIR}/${P}-fix-out-of-source-build.patch" + # Fix compilation for python != 2.6, launchpad-bug #594992 + epatch "${FILESDIR}/${P}-fix-python-version.patch" + # Drop -Werror in a release + sed -e 's:-Werror::g' -i libindicate/Makefile.am libindicate-gtk/Makefile.am || die "sed failed" + eautoreconf +} + +src_configure() { + # gobject-instrospection is a nightmare in this package, it's fixable for libindicate + # and not for libindicate-gtk, disable it until its fixed on upstream + econf \ + --disable-dependency-tracking \ + --docdir=/usr/share/doc/${PF} \ + $(use_enable doc) \ + $(use_enable introspection) \ + || die "configure failed" +} + +src_test() { + emake check || die "testsuite failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "make install failed" + dodoc AUTHORS || die "dodoc failed" +} diff --git a/dev-libs/libindicate/metadata.xml b/dev-libs/libindicate/metadata.xml index a1e3d21187da..3a81ead25e48 100644 --- a/dev-libs/libindicate/metadata.xml +++ b/dev-libs/libindicate/metadata.xml @@ -6,4 +6,7 @@ <email>mrpouet@gentoo.org</email> <name>Romain Perier</name> </maintainer> + <use> + <flag name="introspection">Use <pkg>dev-libs/gobject-introspection</pkg> for introspection</flag> + </use> </pkgmetadata> |