blob: f4b5f398473a68f1331078077390a265a0bb84e5 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/gtkam/gtkam-0.1.14.ebuild,v 1.3 2007/01/31 19:01:02 compnerd Exp $
inherit autotools eutils gnome2
DESCRIPTION="A frontend for gPhoto 2"
HOMEPAGE="http://gphoto.org/proj/gtkam"
SRC_URI="mirror://sourceforge/gphoto/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~sparc ~x86"
IUSE="doc gimp gnome nls"
RDEPEND=">=x11-libs/gtk+-2.0
>=media-libs/libgphoto2-2.2.0
>=media-libs/libexif-0.3.2
media-libs/libexif-gtk
gimp? ( >=media-gfx/gimp-2 )
gnome? ( >=gnome-base/libbonobo-2 >=gnome-base/libgnomeui-2 )"
DEPEND="${RDEPEND}
dev-util/pkgconfig
doc? ( app-text/scrollkeeper )
nls? ( >=sys-devel/gettext-0.14.1 )"
DOCS="ABOUT-NLS AUTHORS MANUAL NEWS README"
pkg_setup() {
G2CONF="${G2CONF} \
$(use_enable doc scrollkeeper) \
$(use_with gimp) \
$(use_with gnome) \
$(use_with gnome bonobo) \
$(use_enable nls) \
--with-rpmbuild=/bin/false"
}
src_unpack() {
gnome2_src_unpack
# The icon in the tarball is busted, so overwrite it
cp ${FILESDIR}/${PN}.png ${S}/${PN}.png
epatch ${FILESDIR}/${PN}-0.1.14-as-needed.patch
AT_M4DIR="m4m" eautomake
}
src_install() {
gnome2_src_install
rm -rf ${D}/usr/share/doc/gtkam
}
|