diff options
author | Tomas Chvatal <scarabeus@gentoo.org> | 2011-04-04 19:52:01 +0000 |
---|---|---|
committer | Tomas Chvatal <scarabeus@gentoo.org> | 2011-04-04 19:52:01 +0000 |
commit | bb5e9e526f9c7f8750b445363e713fb20a232b2b (patch) | |
tree | d1937c9ba92a43dab08a3ecedf8c3fd160132783 /media-libs/babl | |
parent | Punt one too much ED. (diff) | |
download | historical-bb5e9e526f9c7f8750b445363e713fb20a232b2b.tar.gz historical-bb5e9e526f9c7f8750b445363e713fb20a232b2b.tar.bz2 historical-bb5e9e526f9c7f8750b445363e713fb20a232b2b.zip |
Update useflags to match reality. Update deps to avoid automagicness.
Package-Manager: portage-2.2.0_alpha29/cvs/Linux x86_64
Diffstat (limited to 'media-libs/babl')
-rw-r--r-- | media-libs/babl/ChangeLog | 5 | ||||
-rw-r--r-- | media-libs/babl/babl-0.1.4.ebuild | 14 |
2 files changed, 13 insertions, 6 deletions
diff --git a/media-libs/babl/ChangeLog b/media-libs/babl/ChangeLog index 768f7e4237aa..45ac75a2485b 100644 --- a/media-libs/babl/ChangeLog +++ b/media-libs/babl/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-libs/babl # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/babl/ChangeLog,v 1.21 2011/04/01 10:52:22 scarabeus Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/babl/ChangeLog,v 1.22 2011/04/04 19:52:01 scarabeus Exp $ + + 04 Apr 2011; Tomáš Chvátal <scarabeus@gentoo.org> babl-0.1.4.ebuild: + Update useflags to match reality. Update deps to avoid automagicness. 01 Apr 2011; Tomáš Chvátal <scarabeus@gentoo.org> babl-0.1.4.ebuild: Use eapi3 since we have prefix keywords. diff --git a/media-libs/babl/babl-0.1.4.ebuild b/media-libs/babl/babl-0.1.4.ebuild index 0d33ca8b7938..89efc3e44932 100644 --- a/media-libs/babl/babl-0.1.4.ebuild +++ b/media-libs/babl/babl-0.1.4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/babl/babl-0.1.4.ebuild,v 1.4 2011/04/01 10:52:22 scarabeus Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/babl/babl-0.1.4.ebuild,v 1.5 2011/04/04 19:52:01 scarabeus Exp $ EAPI=3 @@ -11,23 +11,27 @@ SRC_URI="ftp://ftp.gimp.org/pub/${PN}/${PV:0:3}/${P}.tar.bz2" LICENSE="LGPL-3" SLOT="0" KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris" -IUSE="+introspection sse mmx" +IUSE="altivec +introspection sse mmx" -RDEPEND="introspection? ( >=dev-libs/gobject-introspection-0.6.8 )" +RDEPEND="gnome-base/librsvg:2 + introspection? ( >=dev-libs/gobject-introspection-0.6.8 )" DEPEND="${RDEPEND}" src_configure() { - # Automagic rsvg/w3m support for docs + # Automagic rsvg support for docs so make it harddep + # w3m is used for dist target thus no issue for us that it is automagically + # detected econf \ --disable-static \ --disable-maintainer-mode \ + $(use_enable altivec) \ $(use_enable introspection) \ $(use_enable mmx) \ $(use_enable sse) } src_install() { - emake install DESTDIR="${ED}" || die "emake install failed" + emake install DESTDIR="${D}" || die "emake install failed" find "${ED}" -name '*.la' -delete dodoc AUTHORS ChangeLog README NEWS || die "dodoc failed" } |