blob: f7c64a464f7c7aa405d62c76134a9a7355bf8c89 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/gramps/gramps-1.0.11.ebuild,v 1.4 2006/01/05 23:49:39 compnerd Exp $
inherit gnome2 eutils
DESCRIPTION="Genealogical Research and Analysis Management Programming System"
HOMEPAGE="http://gramps.sourceforge.net/"
SRC_URI="mirror://sourceforge/gramps/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~sparc ~ppc ~amd64"
IUSE=""
RDEPEND=">=dev-lang/python-2.2
>=dev-python/pygtk-1.99.14
>=dev-python/gnome-python-1.99.14
>=gnome-base/gnome-vfs-2.0
>=dev-python/pyxml-0.7.1
>=dev-python/imaging-1.1.3
>=dev-python/reportlab-1.11"
DEPEND="${RDEPEND}
dev-lang/swig
dev-util/pkgconfig
app-text/scrollkeeper"
DOCS="NEWS README TODO"
MAKEOPTS="${MAKEOPTS} -j1"
pkg_setup() {
if has_version '<dev-python/pygtk-2.8.0-r2' ; then
if ! built_with_use dev-python/pygtk gnome ; then
eerror "You need to install pygtk with libglade support. Try:"
eerror "USE='gnome' emerge pygtk"
die "libglade support missing from pygtk"
fi
fi
}
src_install() {
gnome2_src_install scrollkeeper_localstate_dir=${D}/var/lib/scrollkeeper/
rm -rf ${D}/usr/share/gramps.desktop
}
USE_DESTDIR="1"
|