You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/media-gfx/geeqie/geeqie-1.0-r2.ebuild

60 lines
1.5 KiB

# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/geeqie/geeqie-1.0-r2.ebuild,v 1.7 2012/06/07 23:08:29 voyageur Exp $
EAPI=4
inherit autotools eutils
DESCRIPTION="A lightweight GTK image viewer forked from GQview"
HOMEPAGE="http://geeqie.sourceforge.net/"
SRC_URI="mirror://sourceforge/geeqie/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~ppc x86"
IUSE="doc exif lcms lirc xmp"
RDEPEND="x11-libs/gtk+:2
virtual/libintl
doc? ( app-text/gnome-doc-utils )
lcms? ( =media-libs/lcms-1* )
lirc? ( app-misc/lirc )
xmp? ( >=media-gfx/exiv2-0.17[xmp] )
!xmp? ( exif? ( >=media-gfx/exiv2-0.17 ) )"
DEPEND="${RDEPEND}
virtual/pkgconfig
dev-util/intltool
sys-devel/gettext"
src_prepare() {
epatch "${FILESDIR}"/${P}-automake-1.11.patch
epatch "${FILESDIR}"/${P}-lfs_support.patch
eautoreconf
}
src_configure() {
local myconf="--disable-dependency-tracking
--with-readmedir=/usr/share/doc/${PF}
$(use_enable lcms)
$(use_enable lirc)"
if use exif || use xmp; then
myconf="${myconf} --enable-exiv2"
else
myconf="${myconf} --disable-exiv2"
fi
econf ${myconf}
}
src_install() {
emake DESTDIR="${D}" install
rm -f "${D}/usr/share/doc/${MY_P}/COPYING"
}
pkg_postinst() {
elog "Some plugins may require additional packages"
elog "- Image rotate plugin: media-gfx/fbida (JPEG), media-gfx/imagemagick (TIFF/PNG)"
elog "- RAW images plugin: media-gfx/ufraw"
}