diff options
author | Nick Hadaway <raker@gentoo.org> | 2002-11-02 19:35:53 +0000 |
---|---|---|
committer | Nick Hadaway <raker@gentoo.org> | 2002-11-02 19:35:53 +0000 |
commit | 035a3454b21fb3997fee03148304bb108fc47804 (patch) | |
tree | f78602be25c2a07702057803fc8f7aaea13f70e1 /app-text/sword | |
parent | small build fix (diff) | |
download | historical-035a3454b21fb3997fee03148304bb108fc47804.tar.gz historical-035a3454b21fb3997fee03148304bb108fc47804.tar.bz2 historical-035a3454b21fb3997fee03148304bb108fc47804.zip |
Version bump.
Diffstat (limited to 'app-text/sword')
-rw-r--r-- | app-text/sword/ChangeLog | 8 | ||||
-rw-r--r-- | app-text/sword/files/digest-sword-1.5.5 | 1 | ||||
-rw-r--r-- | app-text/sword/sword-1.5.5.ebuild | 50 |
3 files changed, 58 insertions, 1 deletions
diff --git a/app-text/sword/ChangeLog b/app-text/sword/ChangeLog index b548483b54b6..cafd3dd820ff 100644 --- a/app-text/sword/ChangeLog +++ b/app-text/sword/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-text # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/sword/ChangeLog,v 1.3 2002/10/30 16:11:03 raker Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/sword/ChangeLog,v 1.4 2002/11/02 19:35:53 raker Exp $ + +*sword-1.5.5 (02 Nov 2002) + + 02 Nov 2002; Nick Hadaway <raker@gentoo.org> sword-1.5.5.ebuild, + files/digest-sword-1.5.5 : + Version bump. *sword-1.5.4 (23 Oct 2002) diff --git a/app-text/sword/files/digest-sword-1.5.5 b/app-text/sword/files/digest-sword-1.5.5 new file mode 100644 index 000000000000..8ca525bd95ae --- /dev/null +++ b/app-text/sword/files/digest-sword-1.5.5 @@ -0,0 +1 @@ +MD5 d5889fa47ed52c83cfd6466fabc0241b sword-1.5.5.tar.gz 3984442 diff --git a/app-text/sword/sword-1.5.5.ebuild b/app-text/sword/sword-1.5.5.ebuild new file mode 100644 index 000000000000..d8382b60fc2b --- /dev/null +++ b/app-text/sword/sword-1.5.5.ebuild @@ -0,0 +1,50 @@ +# 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 $ + +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 + sys-libs/zlib" + +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 + + 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" + einfo "the library with. Follow module installation" + einfo "instructions found on the web or in INSTALL.gz found" + einfo "in /usr/share/doc/${PF}" + einfo "" + +} |