blob: 92faefe7d0e31b3bc24581ae4c8add8ae133a1a2 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/gnomesword/gnomesword-2.2.1.ebuild,v 1.1 2007/02/04 00:59:20 mjolnir Exp $
inherit libtool gnome2 eutils
DESCRIPTION="Gnome Bible study software"
HOMEPAGE="http://gnomesword.sf.net/"
SRC_URI="mirror://sourceforge/gnomesword/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE="spell"
RDEPEND="=gnome-extra/gtkhtml-3*
=app-text/sword-1.5.9*
>=x11-libs/gtk+-2
>=gnome-base/libgnomeui-2
>=gnome-extra/gal-0.22
dev-libs/libxml2
virtual/libc
spell? ( app-text/gnome-spell
>=gnome-base/libbonoboui-2 )"
DEPEND="${RDEPEND}
>=dev-util/pkgconfig-0.12
>=dev-util/intltool-0.29
>=app-text/scrollkeeper-0.3.14"
G2CONF="${G2CONF} $(use_enable spell pspell)"
DOCS="NEWS ChangeLog README TODO"
src_unpack() {
unpack ${A}
cd ${S}
}
pkg_postinst() {
gnome2_pkg_postinst
einfo "Gnomesword requires modules to be of any use. You may install the"
einfo "sword-modules package, or download modules individually from the"
einfo "sword website: http://crosswire.org/sword/"
}
|