diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2012-03-08 05:57:15 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2012-03-08 05:57:15 +0000 |
commit | d6e573accf09b00232bf0fcbe1f462c8c143e60a (patch) | |
tree | 5db8b20afc615b7736ef645ce04d1f451116671c /media-gfx/feh/feh-2.4.ebuild | |
parent | Simplify efi-32/64 logic a bit. (diff) | |
download | gentoo-2-d6e573accf09b00232bf0fcbe1f462c8c143e60a.tar.gz gentoo-2-d6e573accf09b00232bf0fcbe1f462c8c143e60a.tar.bz2 gentoo-2-d6e573accf09b00232bf0fcbe1f462c8c143e60a.zip |
Missing USE="exif" which went unnoticed because of incomplete bump for 2.3.
(Portage version: 2.2.0_alpha90/cvs/Linux x86_64)
Diffstat (limited to 'media-gfx/feh/feh-2.4.ebuild')
-rw-r--r-- | media-gfx/feh/feh-2.4.ebuild | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/media-gfx/feh/feh-2.4.ebuild b/media-gfx/feh/feh-2.4.ebuild index 4e5102dead34..b28145a90f8c 100644 --- a/media-gfx/feh/feh-2.4.ebuild +++ b/media-gfx/feh/feh-2.4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/feh/feh-2.4.ebuild,v 1.1 2012/03/06 16:45:51 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/feh/feh-2.4.ebuild,v 1.2 2012/03/08 05:57:15 ssuominen Exp $ EAPI=4 inherit eutils toolchain-funcs @@ -12,21 +12,24 @@ SRC_URI="http://feh.finalrewind.org/${P}.tar.bz2" LICENSE="as-is" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86" -IUSE="debug curl test xinerama" +IUSE="debug curl exif test xinerama" COMMON_DEPEND=">=media-libs/giblib-1.2.4 media-libs/imlib2 >=media-libs/libpng-1.2:0 x11-libs/libX11 curl? ( net-misc/curl ) + exif? ( media-libs/libexif ) xinerama? ( x11-libs/libXinerama )" RDEPEND="${COMMON_DEPEND} virtual/jpeg" DEPEND="${COMMON_DEPEND} x11-libs/libXt x11-proto/xproto - test? ( >=dev-lang/perl-5.10 - dev-perl/Test-Command )" + test? ( + >=dev-lang/perl-5.10 + dev-perl/Test-Command + )" pkg_setup() { use_feh() { usex $1 1 0; } @@ -36,9 +39,10 @@ pkg_setup() { PREFIX=/usr doc_dir='${main_dir}'/share/doc/${PF} example_dir='${main_dir}'/share/doc/${PF}/examples - debug=$(use_feh debug) curl=$(use_feh curl) + debug=$(use_feh debug) xinerama=$(use_feh xinerama) + exif=$(use_feh exif) ) } |