summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2002-12-18 16:43:00 +0000
committerMike Frysinger <vapier@gentoo.org>2002-12-18 16:43:00 +0000
commit511393fb69b0db923195ada866f6272eeb635d35 (patch)
treecda232dcda8ac24acb6b9266f3d4fb64132da0eb /app-text/sword
parentadded ppc to keywords (diff)
downloadgentoo-2-511393fb69b0db923195ada866f6272eeb635d35.tar.gz
gentoo-2-511393fb69b0db923195ada866f6272eeb635d35.tar.bz2
gentoo-2-511393fb69b0db923195ada866f6272eeb635d35.zip
Changed econf||die to econf
Diffstat (limited to 'app-text/sword')
-rw-r--r--app-text/sword/sword-1.5.5.ebuild19
1 files changed, 3 insertions, 16 deletions
diff --git a/app-text/sword/sword-1.5.5.ebuild b/app-text/sword/sword-1.5.5.ebuild
index d8382b60fc2b..11e74e7db4a8 100644
--- a/app-text/sword/sword-1.5.5.ebuild
+++ b/app-text/sword/sword-1.5.5.ebuild
@@ -1,6 +1,6 @@
# 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.5.ebuild,v 1.1 2002/11/02 19:35:53 raker Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/sword/sword-1.5.5.ebuild,v 1.2 2002/12/18 16:38:09 vapier Exp $
DESCRIPTION="library for bible reading software"
HOMEPAGE="http://www.crosswire.org/sword/"
@@ -10,35 +10,23 @@ LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
-IUSE=""
-
DEPEND="virtual/glibc
sys-libs/zlib"
-S="${WORKDIR}/${P}"
-
src_compile() {
-
- econf || die "configure failed"
-
+ econf
emake || die "parallel make failed"
-
}
src_install() {
-
- einstall || die "make install failed"
+ einstall
dodoc AUTHORS CODINGSTYLE INSTALL ChangeLog README
-
cp -R samples examples ${D}/usr/share/doc/${PF}
-
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"
@@ -46,5 +34,4 @@ pkg_postinst() {
einfo "instructions found on the web or in INSTALL.gz found"
einfo "in /usr/share/doc/${PF}"
einfo ""
-
}