2014-10-27 08:57:24 +03:00
|
|
|
# Copyright 1999-2014 Gentoo Foundation
|
2012-06-15 19:26:19 +04:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
2014-10-27 08:57:24 +03:00
|
|
|
# $Header: /var/cvsroot/gentoo-x86/media-gfx/geeqie/geeqie-1.0-r4.ebuild,v 1.4 2014/10/26 21:55:20 voyageur Exp $
|
2012-06-15 19:26:19 +04:00
|
|
|
|
|
|
|
EAPI=4
|
|
|
|
inherit autotools base 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"
|
2012-09-23 13:20:32 +04:00
|
|
|
KEYWORDS="amd64 ~ppc x86"
|
2014-10-27 08:57:24 +03:00
|
|
|
IUSE="doc exif lirc xmp"
|
2012-06-15 19:26:19 +04:00
|
|
|
|
|
|
|
RDEPEND="x11-libs/gtk+:2
|
|
|
|
virtual/libintl
|
|
|
|
doc? ( app-text/gnome-doc-utils )
|
|
|
|
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"
|
|
|
|
|
|
|
|
PATCHES=(
|
|
|
|
"${FILESDIR}"/${P}-automake-1.11.patch
|
|
|
|
"${FILESDIR}"/${P}-copy_chown.patch
|
|
|
|
"${FILESDIR}"/${P}-filedata_compare.patch
|
|
|
|
"${FILESDIR}"/${P}-fix_fullscreen.patch
|
|
|
|
"${FILESDIR}"/${P}-lfs_support.patch
|
|
|
|
"${FILESDIR}"/${P}-ui_pathsel.patch
|
|
|
|
"${FILESDIR}"/${P}-vflist-refresh.patch
|
|
|
|
"${FILESDIR}"/${P}-up_path_restore.patch
|
|
|
|
)
|
|
|
|
|
|
|
|
src_prepare() {
|
|
|
|
base_src_prepare
|
|
|
|
eautoreconf
|
|
|
|
}
|
|
|
|
|
|
|
|
src_configure() {
|
|
|
|
local myconf="--disable-dependency-tracking
|
|
|
|
--with-readmedir=/usr/share/doc/${PF}
|
2014-10-27 08:57:24 +03:00
|
|
|
--disable-lcms
|
2012-06-15 19:26:19 +04:00
|
|
|
$(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"
|
|
|
|
}
|