blob: 68852898d57da64aede2dee31d5a0afad9a39009 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/f-spot/f-spot-0.6.0.0.ebuild,v 1.1 2009/08/11 12:52:18 lack Exp $
EAPI=2
inherit gnome2 mono eutils autotools
DESCRIPTION="Personal photo management application for the gnome desktop"
HOMEPAGE="http://f-spot.org"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="+gconf beagle"
RDEPEND=">=dev-lang/mono-2.0
>=gnome-base/libgnome-2.2
>=gnome-base/libgnomeui-2.2
>=media-libs/libexif-0.6.16
<media-libs/libexif-0.7.0
>=dev-dotnet/gtk-sharp-2.12.2
>=dev-dotnet/glib-sharp-2.12.2
>=dev-dotnet/glade-sharp-2.12.2
>=dev-dotnet/gnomevfs-sharp-2.12.2
>=x11-libs/gtk+-2.14
>=dev-libs/glib-2.16
>=dev-dotnet/gnome-sharp-2.8
>=dev-dotnet/glib-sharp-2.12
gconf? ( >=dev-dotnet/gconf-sharp-2.12.2 )
beagle? ( >=app-misc/beagle-0.3.0 )
>=dev-libs/dbus-glib-0.71
>=dev-dotnet/dbus-sharp-0.4.2
>=dev-dotnet/dbus-glib-sharp-0.3.0
media-libs/jpeg
>=media-libs/lcms-1.12
>=media-libs/libgphoto2-2.1.4
>=dev-db/sqlite-3"
DEPEND="${RDEPEND}
app-text/gnome-doc-utils
dev-util/pkgconfig
>=dev-util/intltool-0.35"
DOCS="AUTHORS ChangeLog MAINTAINERS NEWS README"
SCROLLKEEPER_UPDATE=0
src_prepare() {
epatch "${FILESDIR}/${P}-parallel-build.patch"
epatch "${FILESDIR}/${P}-sandbox-violation.patch"
eautoreconf
}
src_configure() {
gnome2_src_configure --disable-static --disable-scrollkeeper \
$(use_enable gconf)
}
src_install() {
gnome2_src_install
find "${D}" -name '*.la' -exec rm -rf '{}' '+' || die "la removal failed"
}
|