blob: 16df9555a90d2655915cd3db0f321eb70ce89daf (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/eog/eog-2.16.3.ebuild,v 1.2 2007/02/09 23:40:42 uberlord Exp $
inherit 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="jpeg lcms"
RDEPEND=">=gnome-base/gnome-vfs-2.5.91
>=gnome-base/libgnomeui-2.5.92
>=gnome-base/libglade-2.3.6
>=gnome-base/libgnomecanvas-2.5.92
>=gnome-base/gconf-2.5.90
>=media-libs/libart_lgpl-2.3.16
>=x11-libs/gtk+-2.7.1
>=gnome-base/gnome-desktop-2.10
>=gnome-base/libgnomeprintui-2.2
>=gnome-base/libgnomeprint-2.2
jpeg? (
>=media-libs/libexif-0.6.12
media-libs/jpeg )
lcms? ( media-libs/lcms )"
DEPEND="${RDEPEND}
app-text/scrollkeeper
>=dev-util/intltool-0.35
>=dev-util/pkgconfig-0.17"
DOCS="AUTHORS ChangeLog HACKING MAINTAINERS NEWS README THANKS TODO"
pkg_setup() {
G2CONF="${G2CONF} $(use_with jpeg libjpeg) \
$(use_with jpeg libexif) \
$(use_with lcms cms)"
}
|