diff options
author | Tim Harder <radhermit@gentoo.org> | 2011-09-26 21:11:13 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2011-09-26 21:11:13 +0000 |
commit | a887d77d4a8b977ff277de94fb8196fa8a9323c5 (patch) | |
tree | 333c9fe084358a5a097c96a447fae544e4e24420 /media-gfx | |
parent | Version bump wrt #384293 by "ScytheMan" (diff) | |
download | gentoo-2-a887d77d4a8b977ff277de94fb8196fa8a9323c5.tar.gz gentoo-2-a887d77d4a8b977ff277de94fb8196fa8a9323c5.tar.bz2 gentoo-2-a887d77d4a8b977ff277de94fb8196fa8a9323c5.zip |
Version bump.
(Portage version: 2.2.0_alpha59/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.2.ebuild | 58 |
2 files changed, 64 insertions, 1 deletions
diff --git a/media-gfx/feh/ChangeLog b/media-gfx/feh/ChangeLog index cd46859e32db..6fc0f37d244e 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.87 2011/09/11 21:05:31 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/feh/ChangeLog,v 1.88 2011/09/26 21:11:13 radhermit Exp $ + +*feh-1.16.2 (26 Sep 2011) + + 26 Sep 2011; Tim Harder <radhermit@gentoo.org> +feh-1.16.2.ebuild: + Version bump. *feh-1.16.1 (11 Sep 2011) diff --git a/media-gfx/feh/feh-1.16.2.ebuild b/media-gfx/feh/feh-1.16.2.ebuild new file mode 100644 index 000000000000..653b6bedb6b2 --- /dev/null +++ b/media-gfx/feh/feh-1.16.2.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.2.ebuild,v 1.1 2011/09/26 21:11:13 radhermit 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 +} |