blob: 4b21c9622798cf4e6b99ac8481613dc567d3775e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/eog/eog-2.24.3.1.ebuild,v 1.8 2009/03/15 22:28:31 maekke Exp $
inherit eutils gnome2 autotools
DESCRIPTION="The Eye of GNOME image viewer"
HOMEPAGE="http://www.gnome.org/projects/eog/"
LICENSE="GPL-2"
SLOT="1"
KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ppc ppc64 ~sparc x86 ~x86-fbsd"
IUSE="dbus doc exif lcms python xmp"
RDEPEND=">=x11-libs/gtk+-2.13.1
>=dev-libs/glib-2.15.3
>=gnome-base/libgnomeui-2.10
>=gnome-base/libglade-2.3.6
>=gnome-base/gconf-2.5.90
>=media-libs/libart_lgpl-2.3.16
>=gnome-base/gnome-desktop-2.10
>=x11-themes/gnome-icon-theme-2.19.1
>=x11-misc/shared-mime-info-0.20
dbus? ( >=dev-libs/dbus-glib-0.71 )
exif? (
>=media-libs/libexif-0.6.14
media-libs/jpeg )
lcms? ( media-libs/lcms )
python? (
>=dev-lang/python-2.3
>=dev-python/pygobject-2.11.5
>=dev-python/pygtk-2.9.7
>=dev-python/gnome-python-2.18.2 )
xmp? ( >=media-libs/exempi-2 )"
DEPEND="${RDEPEND}
app-text/gnome-doc-utils
sys-devel/gettext
>=dev-util/intltool-0.40
>=dev-util/pkgconfig-0.17
doc? ( >=dev-util/gtk-doc-1.10 )"
DOCS="AUTHORS ChangeLog HACKING MAINTAINERS NEWS README THANKS TODO"
pkg_setup() {
G2CONF="${G2CONF}
$(use_with exif libjpeg)
$(use_with exif libexif)
$(use_with dbus)
$(use_with lcms cms)
$(use_enable python)
$(use_with xmp)
--disable-scrollkeeper
--disable-schemas-install"
}
src_unpack() {
gnome2_src_unpack
# Fix documentation with USE="-exif doc"
sed 's:-I$(top_srcdir)/plugins \\:\\:g' \
-i doc/reference/Makefile.am doc/reference/Makefile.in \
|| die "sed failed"
# Fix build with USE="doc -exif -xmp". Bug #254943
epatch "${FILESDIR}/${P}-noexif-doc.patch"
eautoreconf
}
pkg_postinst() {
gnome2_pkg_postinst
if ! built_with_use =x11-libs/gtk+-2* jpeg; then
ewarn "For JPEG file support to work, x11-libs/gtk+ must be rebuilt"
ewarn "with the 'jpeg' USE flag enabled."
fi
if ! built_with_use =x11-libs/gtk+-2* tiff; then
ewarn "For TIFF file support to work, x11-libs/gtk+ must be rebuilt"
ewarn "with the 'tiff' USE flag enabled."
fi
}
|