blob: 2567d273cbadff97b54db66269ccba82b8cf88d7 (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/sword/sword-1.5.4.ebuild,v 1.3 2002/10/26 20:38:52 raker Exp $
DESCRIPTION="library for bible reading software"
HOMEPAGE="http://www.crosswire.org/sword/"
SRC_URI="ftp://ftp.crosswire.org/pub/sword/source/v1.5/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE=""
DEPEND="virtual/glibc"
S="${WORKDIR}/${P}"
src_compile() {
econf || die "configure failed"
emake || die "parallel make failed"
}
src_install() {
einstall || die "make install failed"
dodoc AUTHORS CODINGSTYLE INSTALL ChangeLog README
dohtml doc/api-documentation/html/*
}
pkg_postinst() {
einfo ""
einfo "Check out http://www.crosswire.org/sword/modules/"
einfo "to download modules that you would like to enhance"
einfo "the library with. unzip the files you download"
einfo "while you are in the /usr/share/sword directory"
einfo ""
}
|