diff options
author | 2009-02-24 00:34:21 +0000 | |
---|---|---|
committer | 2009-02-24 00:34:21 +0000 | |
commit | ecf120b485877b82d84a6358684ae49e70ebf73c (patch) | |
tree | e59c6dcd1e7de702ec1c704ad162169a615cff18 /media-gfx | |
parent | Switch to eapi2 so the built_with_use can be replaced by a proper use-depend.... (diff) | |
download | gentoo-2-ecf120b485877b82d84a6358684ae49e70ebf73c.tar.gz gentoo-2-ecf120b485877b82d84a6358684ae49e70ebf73c.tar.bz2 gentoo-2-ecf120b485877b82d84a6358684ae49e70ebf73c.zip |
Switch to EAPI2 for SLOT and USE deps
(Portage version: 2.2_rc23/cvs/Linux x86_64)
Diffstat (limited to 'media-gfx')
-rw-r--r-- | media-gfx/raw-thumbnailer/ChangeLog | 8 | ||||
-rw-r--r-- | media-gfx/raw-thumbnailer/raw-thumbnailer-0.2.ebuild | 19 |
2 files changed, 11 insertions, 16 deletions
diff --git a/media-gfx/raw-thumbnailer/ChangeLog b/media-gfx/raw-thumbnailer/ChangeLog index 30865c5f28e6..62f0e624bb59 100644 --- a/media-gfx/raw-thumbnailer/ChangeLog +++ b/media-gfx/raw-thumbnailer/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for media-gfx/raw-thumbnailer -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/raw-thumbnailer/ChangeLog,v 1.25 2008/11/24 17:57:24 ssuominen Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/raw-thumbnailer/ChangeLog,v 1.26 2009/02/24 00:34:21 angelos Exp $ + + 24 Feb 2009; Christoph Mende <angelos@gentoo.org> + raw-thumbnailer-0.2.ebuild: + Switch to EAPI2 for SLOT and USE deps 24 Nov 2008; <ssuominen@gentoo.org> metadata.xml: Rename my old e-mail drac at gentoo.org to ssuominen at gentoo.org and add diff --git a/media-gfx/raw-thumbnailer/raw-thumbnailer-0.2.ebuild b/media-gfx/raw-thumbnailer/raw-thumbnailer-0.2.ebuild index 6e70aa4104b9..3a03e22768d9 100644 --- a/media-gfx/raw-thumbnailer/raw-thumbnailer-0.2.ebuild +++ b/media-gfx/raw-thumbnailer/raw-thumbnailer-0.2.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2008 Gentoo Foundation +# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/raw-thumbnailer/raw-thumbnailer-0.2.ebuild,v 1.9 2008/09/28 15:18:30 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/raw-thumbnailer/raw-thumbnailer-0.2.ebuild,v 1.10 2009/02/24 00:34:21 angelos Exp $ -inherit eutils +EAPI=2 DESCRIPTION="A lightweight and fast raw image thumbnailer" HOMEPAGE="http://code.google.com/p/raw-thumbnailer" @@ -13,21 +13,12 @@ SLOT="0" KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86" IUSE="" -RDEPEND="media-libs/libopenraw - >=x11-libs/gtk+-2" +RDEPEND="media-libs/libopenraw[gtk] + x11-libs/gtk+:2" DEPEND="${RDEPEND} dev-util/pkgconfig !media-gfx/gnome-raw-thumbnailer" -pkg_setup() { - local fail="Re-emerge media-libs/libopenraw with USE gtk." - - if ! built_with_use media-libs/libopenraw gtk; then - eerror "${fail}" - die "${fail}" - fi -} - src_install() { emake DESTDIR="${D}" install || die "emake install failed." dodoc AUTHORS ChangeLog |