blob: 3bc5bbd31227d50cfd9d7fe3b0e57a13e1d43537 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/shotwell/shotwell-0.5.0.ebuild,v 1.2 2010/04/08 18:31:18 ssuominen Exp $
EAPI="2"
GCONF_DEBUG="no"
inherit gnome2 versionator
MY_PV=$(get_version_component_range 1-2)
DESCRIPTION="Open source photo manager for GNOME"
HOMEPAGE="http://www.yorba.org/shotwell/"
SRC_URI="http://www.yorba.org/download/${PN}/${MY_PV}/${P}.tar.bz2"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND=">=dev-db/sqlite-3.5.9:3
>=dev-libs/dbus-glib-0.80
>=dev-libs/libgee-0.5.0
>=dev-libs/libunique-1.0.0
>=dev-libs/libxml2-2.6.32
>=gnome-base/gconf-2.22.0
>=media-libs/libexif-0.6.16
>=media-libs/libgphoto2-2.4.2
>=net-libs/libsoup-2.26.0
>=net-libs/webkit-gtk-1.1.5
>=sys-fs/udev-145[extras]
>=x11-libs/gtk+-2.14.4:2"
DEPEND="${RDEPEND}
=dev-lang/vala-0.7*"
DOCS="AUTHORS MAINTAINERS NEWS README THANKS"
pkg_setup() {
G2CONF="--disable-schemas-install
--disable-desktop-update
--disable-icon-update"
}
src_install() {
# This is needed so that gnome2_gconf_savelist() works correctly.
insinto "${EPREFIX}"/etc/gconf/schemas
doins misc/shotwell.schemas || die "install gconf schema failed"
gnome2_src_install
}
|