diff options
author | Romain Perier <mrpouet@gentoo.org> | 2009-10-29 15:47:09 +0000 |
---|---|---|
committer | Romain Perier <mrpouet@gentoo.org> | 2009-10-29 15:47:09 +0000 |
commit | 6102a1603d0f0ac3fbd49084a1fd9949a8ea7b71 (patch) | |
tree | b61466cc4f18aa47d5b195364609996e3d0df888 /dev-libs/libindicate/libindicate-0.2.3.ebuild | |
parent | amd64/x86 stable, bug #289311 (diff) | |
download | historical-6102a1603d0f0ac3fbd49084a1fd9949a8ea7b71.tar.gz historical-6102a1603d0f0ac3fbd49084a1fd9949a8ea7b71.tar.bz2 historical-6102a1603d0f0ac3fbd49084a1fd9949a8ea7b71.zip |
New package, necessary for libindicate-qt (kde team)
Package-Manager: portage-2.2_rc46/cvs/Linux x86_64
Diffstat (limited to 'dev-libs/libindicate/libindicate-0.2.3.ebuild')
-rw-r--r-- | dev-libs/libindicate/libindicate-0.2.3.ebuild | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/dev-libs/libindicate/libindicate-0.2.3.ebuild b/dev-libs/libindicate/libindicate-0.2.3.ebuild new file mode 100644 index 000000000000..2843de7d6adb --- /dev/null +++ b/dev-libs/libindicate/libindicate-0.2.3.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libindicate/libindicate-0.2.3.ebuild,v 1.1 2009/10/29 15:47:05 mrpouet 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" +IUSE="gtk" +# They put their mother in the tarball ? ^^ +RESTRICT="test" + +RDEPEND="dev-libs/glib:2 + >=dev-libs/dbus-glib-0.76 + dev-libs/libxml2:2 + gtk? ( x11-libs/gtk+:2 )" +DEPEND="${RDEPEND} + dev-util/pkgconfig + dev-util/gtk-doc" +src_prepare() { + # Make libindicator-gtk library optional + epatch "${FILESDIR}/${P}-optional-gtk-support.patch" + # Drop -Werror in a release + sed -e 's:-Werror::g' -i libindicate/Makefile.in || 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 \ + --disable-gobject-introspection \ + $(use_enable gtk) +} +src_test() { + emake check || die "testsuite failed" +} +src_install() { + emake DESTDIR="${D}" install || die "make install failed" + dodoc AUTHORS +} |