blob: 7f4046f2e698e3de926aa18789dbbb921a3f0549 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/sword/sword-1.5.8.ebuild,v 1.1 2005/07/27 21:19:12 greg_g Exp $
DESCRIPTION="Library for Bible reading software."
HOMEPAGE="http://www.crosswire.org/sword/"
SRC_URI="http://www.crosswire.org/ftpmirror/pub/sword/source/v1.5/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="curl icu debug"
RDEPEND="sys-libs/zlib
curl? ( net-misc/curl )
icu? ( dev-libs/icu )"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
src_compile() {
local myconf="--without-lucene --with-zlib --with-conf
$(use_enable debug) $(use_with curl)"
econf ${myconf} || die "configure failed"
emake || die "make failed"
}
src_install() {
make DESTDIR="${D}" install || die "install failed"
dodoc AUTHORS CODINGSTYLE ChangeLog INSTALL README
cp -R samples examples ${D}/usr/share/doc/${PF}/
}
pkg_postinst() {
echo
einfo "Check out http://www.crosswire.org/sword/modules/"
einfo "to download modules that you would like to use the"
einfo "library with. Follow module installation instructions"
einfo "found on the web or in /usr/share/doc/${PF}/INSTALL.gz."
echo
}
|