diff options
author | Markos Chandras <hwoarang@gentoo.org> | 2011-02-09 22:28:10 +0000 |
---|---|---|
committer | Markos Chandras <hwoarang@gentoo.org> | 2011-02-09 22:28:10 +0000 |
commit | b828c4e4803f30ec1635e1f8beaee9c034fb397e (patch) | |
tree | 3e5d9198d1644f4f28763c41d605c3f602f01ef7 /media-gfx/feh | |
parent | fix bug 240956 (diff) | |
download | gentoo-2-b828c4e4803f30ec1635e1f8beaee9c034fb397e.tar.gz gentoo-2-b828c4e4803f30ec1635e1f8beaee9c034fb397e.tar.bz2 gentoo-2-b828c4e4803f30ec1635e1f8beaee9c034fb397e.zip |
Version bump
(Portage version: 2.2.0_alpha19/cvs/Linux x86_64)
Diffstat (limited to 'media-gfx/feh')
-rw-r--r-- | media-gfx/feh/ChangeLog | 7 | ||||
-rw-r--r-- | media-gfx/feh/feh-1.11.2.ebuild | 60 |
2 files changed, 66 insertions, 1 deletions
diff --git a/media-gfx/feh/ChangeLog b/media-gfx/feh/ChangeLog index 746e53d5948c..6243eeb5cf46 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.66 2011/01/27 00:01:27 hwoarang Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/feh/ChangeLog,v 1.67 2011/02/09 22:28:10 hwoarang Exp $ + +*feh-1.11.2 (09 Feb 2011) + + 09 Feb 2011; Markos Chandras <hwoarang@gentoo.org> +feh-1.11.2.ebuild: + Version bump *feh-1.11.1 (27 Jan 2011) diff --git a/media-gfx/feh/feh-1.11.2.ebuild b/media-gfx/feh/feh-1.11.2.ebuild new file mode 100644 index 000000000000..a27dca5482d0 --- /dev/null +++ b/media-gfx/feh/feh-1.11.2.ebuild @@ -0,0 +1,60 @@ +# 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.11.2.ebuild,v 1.1 2011/02/09 22:28:10 hwoarang Exp $ + +EAPI=2 +inherit toolchain-funcs + +DESCRIPTION="A fast, lightweight imageviewer using imlib2" +HOMEPAGE="https://derf.homelinux.org/~derf/projects/feh/" +SRC_URI="http://www.chaosdorf.de/~derf/feh/${P}.tar.bz2" + +LICENSE="as-is" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="test xinerama" + +COMMON_DEPEND=">=media-libs/giblib-1.2.4 + media-libs/imlib2 + >=media-libs/libpng-1.4 + x11-libs/libX11 + 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 )" + +pkg_setup() { + fehopts=( + DESTDIR="${D}" + PREFIX=/usr + doc_dir='${main_dir}'/share/doc/${PF} + ) +} + +src_prepare() { + if ! use xinerama; then + sed -i -e '/^xinerama/d' config.mk || die + fi +} + +src_compile() { + tc-export CC + emake "${fehopts[@]}" || die +} + +src_install() { + emake "${fehopts[@]}" install || die + prepalldocs +} + +pkg_postinst(){ + elog + elog "Default configuration path was moved to:" + elog "/home/<user>/.config/feh/themes. Please " + elog "update your configuration" + elog +} |