diff options
author | 2011-09-05 17:22:48 +0000 | |
---|---|---|
committer | 2011-09-05 17:22:48 +0000 | |
commit | 37425f274dd3258f17a03a937533330bf58c9e49 (patch) | |
tree | b2ceace76a087a0d41c0375b0290dd6d47c11ad7 /media-gfx | |
parent | Version bump. Bug #381889 (diff) | |
download | gentoo-2-37425f274dd3258f17a03a937533330bf58c9e49.tar.gz gentoo-2-37425f274dd3258f17a03a937533330bf58c9e49.tar.bz2 gentoo-2-37425f274dd3258f17a03a937533330bf58c9e49.zip |
Version bump
(Portage version: 2.2.0_alpha51/cvs/Linux x86_64)
Diffstat (limited to 'media-gfx')
-rw-r--r-- | media-gfx/feh/ChangeLog | 7 | ||||
-rw-r--r-- | media-gfx/feh/feh-1.16.ebuild | 58 |
2 files changed, 64 insertions, 1 deletions
diff --git a/media-gfx/feh/ChangeLog b/media-gfx/feh/ChangeLog index 6abb54165da2..5f60839f6db6 100644 --- a/media-gfx/feh/ChangeLog +++ b/media-gfx/feh/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-gfx/feh # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/feh/ChangeLog,v 1.85 2011/08/17 03:30:29 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/feh/ChangeLog,v 1.86 2011/09/05 17:22:48 hwoarang Exp $ + +*feh-1.16 (05 Sep 2011) + + 05 Sep 2011; Markos Chandras <hwoarang@gentoo.org> +feh-1.16.ebuild: + Version bump *feh-1.15.1 (17 Aug 2011) diff --git a/media-gfx/feh/feh-1.16.ebuild b/media-gfx/feh/feh-1.16.ebuild new file mode 100644 index 000000000000..f5047c83d911 --- /dev/null +++ b/media-gfx/feh/feh-1.16.ebuild @@ -0,0 +1,58 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/feh/feh-1.16.ebuild,v 1.1 2011/09/05 17:22:48 hwoarang Exp $ + +EAPI=4 +inherit toolchain-funcs + +DESCRIPTION="A fast, lightweight imageviewer using imlib2" +HOMEPAGE="http://feh.finalrewind.org/" +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" + +COMMON_DEPEND=">=media-libs/giblib-1.2.4 + media-libs/imlib2 + >=media-libs/libpng-1.4 + x11-libs/libX11 + curl? ( net-misc/curl ) + 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 )" + +feh_use() { + if use ${1}; then + echo 1 + else + echo 0 + fi +} + +pkg_setup() { + fehopts=( + DESTDIR="${D}" + PREFIX=/usr + doc_dir='${main_dir}'/share/doc/${PF} + example_dir='${main_dir}'/share/doc/${PF}/examples + debug=$(feh_use debug) + curl=$(feh_use curl) + xinerama=$(feh_use xinerama) + ) +} + +src_compile() { + tc-export CC + emake "${fehopts[@]}" +} + +src_install() { + emake "${fehopts[@]}" install +} |