diff options
author | Nick Hadaway <raker@gentoo.org> | 2002-10-24 04:49:26 +0000 |
---|---|---|
committer | Nick Hadaway <raker@gentoo.org> | 2002-10-24 04:49:26 +0000 |
commit | 816921be296178c3237b8c0d1e286b654fb88cd5 (patch) | |
tree | 87e463c3d075aa710eb6cb403e0a518c26f03532 /app-text | |
parent | initial import (diff) | |
download | gentoo-2-816921be296178c3237b8c0d1e286b654fb88cd5.tar.gz gentoo-2-816921be296178c3237b8c0d1e286b654fb88cd5.tar.bz2 gentoo-2-816921be296178c3237b8c0d1e286b654fb88cd5.zip |
Initial ebuild. Libraries for bible reading software.
Diffstat (limited to 'app-text')
-rw-r--r-- | app-text/sword/ChangeLog | 9 | ||||
-rw-r--r-- | app-text/sword/files/digest-sword-1.5.4 | 1 | ||||
-rw-r--r-- | app-text/sword/sword-1.5.4.ebuild | 31 |
3 files changed, 41 insertions, 0 deletions
diff --git a/app-text/sword/ChangeLog b/app-text/sword/ChangeLog new file mode 100644 index 000000000000..4e1386a423aa --- /dev/null +++ b/app-text/sword/ChangeLog @@ -0,0 +1,9 @@ +# 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.1 2002/10/24 04:49:26 raker Exp $ + +*sword-1.5.4 (23 Oct 2002) + + 23 Oct 2002; Nick Hadaway <raker@gentoo.org> sword-1.5.4.ebuild, + files/digest-sword-1.5.4 : + Initial ebuild. diff --git a/app-text/sword/files/digest-sword-1.5.4 b/app-text/sword/files/digest-sword-1.5.4 new file mode 100644 index 000000000000..c8fe76a88a6d --- /dev/null +++ b/app-text/sword/files/digest-sword-1.5.4 @@ -0,0 +1 @@ +MD5 154dbd0a7c57ec175d10184d4572e4a3 sword-1.5.4.tar.gz 3536581 diff --git a/app-text/sword/sword-1.5.4.ebuild b/app-text/sword/sword-1.5.4.ebuild new file mode 100644 index 000000000000..c6cdd3341a0f --- /dev/null +++ b/app-text/sword/sword-1.5.4.ebuild @@ -0,0 +1,31 @@ +# 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.1 2002/10/24 04:49:26 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" + +} |