blob: b326b49b3ba1df0e21ba58a9920f1e2f489aa584 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/gtkam/gtkam-0.1.10-r1.ebuild,v 1.10 2005/05/01 17:27:01 hansmi Exp $
inherit eutils
IUSE="nls gnome jpeg"
DESCRIPTION="A frontend for gPhoto 2"
HOMEPAGE="http://gphoto.org/proj/gtkam"
SRC_URI="mirror://sourceforge/gphoto/${P}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ppc amd64"
RDEPEND=">=x11-libs/gtk+-2
>=media-libs/libgphoto2-2.1.1-r2
gnome? ( >=gnome-base/libbonobo-2
>=gnome-base/libgnomeui-2 )
jpeg? ( media-libs/libexif-gtk
media-libs/libexif )"
DEPEND="${RDEPEND}
dev-util/pkgconfig
nls? ( sys-devel/gettext )"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${P}-norpm.patch
epatch ${FILESDIR}/gtkam-0.1.10-gtk24.patch
}
src_compile() {
local myconf
myconf="--with-rpmbuild=/bin/false --without-gimp"
use jpeg \
&& myconf="${myconf} --with-exif" \
|| myconf="${myconf} --without-exif"
use gnome \
&& myconf="${myconf} --with-gnome --with-bonobo" \
|| myconf="${myconf} --without-gnome --without-bonobo"
econf ${myconf} `use_enable nls` || die
emake || die
}
src_install() {
einstall || die
rm -rf ${D}/usr/share/doc/gtkam
dodoc ABOUT-NLS AUTHORS COPYING INSTALL MANUAL NEWS README
}
|