summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Hood <squinky86@gentoo.org>2006-04-28 00:40:41 +0000
committerJon Hood <squinky86@gentoo.org>2006-04-28 00:40:41 +0000
commitaa64d3e1c1219cd48a2e4ac20ee7756083fdee94 (patch)
tree5916147e3e771cc10f926620b0b9c8cee7932c5d /app-text/sword
parentFixing SHA256 digest, pass four (diff)
downloadgentoo-2-aa64d3e1c1219cd48a2e4ac20ee7756083fdee94.tar.gz
gentoo-2-aa64d3e1c1219cd48a2e4ac20ee7756083fdee94.tar.bz2
gentoo-2-aa64d3e1c1219cd48a2e4ac20ee7756083fdee94.zip
Re-add myself as maintainer so bug wranglers know who to contact. Remove cvs snapshot of old package so that I don't have to support it.
(Portage version: 2.1_pre7-r5)
Diffstat (limited to 'app-text/sword')
-rw-r--r--app-text/sword/ChangeLog9
-rw-r--r--app-text/sword/files/digest-sword-1.5.8_pre11
-rw-r--r--app-text/sword/metadata.xml4
-rw-r--r--app-text/sword/sword-1.5.8_pre1.ebuild54
4 files changed, 11 insertions, 57 deletions
diff --git a/app-text/sword/ChangeLog b/app-text/sword/ChangeLog
index ca455b8ab608..c345f14047c9 100644
--- a/app-text/sword/ChangeLog
+++ b/app-text/sword/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-text/sword
-# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/sword/ChangeLog,v 1.26 2005/11/20 02:59:10 josejx Exp $
+# Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-text/sword/ChangeLog,v 1.27 2006/04/28 00:40:41 squinky86 Exp $
+
+ 28 Apr 2006; Jon Hood <squinky86@gentoo.org> metadata.xml,
+ -sword-1.5.8_pre1.ebuild:
+ Re-add myself as maintainer. Remove old version so I don't have to support
+ cvs snapshots.
20 Nov 2005; Joseph Jezak <josejx@gentoo.org> sword-1.5.8.ebuild:
Marked ppc stable for bug #112834.
diff --git a/app-text/sword/files/digest-sword-1.5.8_pre1 b/app-text/sword/files/digest-sword-1.5.8_pre1
deleted file mode 100644
index 261aa7045c87..000000000000
--- a/app-text/sword/files/digest-sword-1.5.8_pre1
+++ /dev/null
@@ -1 +0,0 @@
-MD5 2af29d02defca115d54fb6cf26a6743c sword-1.5.8_pre1.tar.bz2 1058797
diff --git a/app-text/sword/metadata.xml b/app-text/sword/metadata.xml
index ea458e49d038..9c8c03f17db1 100644
--- a/app-text/sword/metadata.xml
+++ b/app-text/sword/metadata.xml
@@ -2,6 +2,10 @@
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>no-herd</herd>
+<maintainer>
+ <email>squinky86@gentoo.org</email>
+ <name>Jon Hood</name>
+</maintainer>
<longdescription>
The SWORD Project is the CrossWire Bible Society's free Bible software
project. Its purpose is to create tools that allow programmers and Bible
diff --git a/app-text/sword/sword-1.5.8_pre1.ebuild b/app-text/sword/sword-1.5.8_pre1.ebuild
deleted file mode 100644
index 9bb833463445..000000000000
--- a/app-text/sword/sword-1.5.8_pre1.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# 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_pre1.ebuild,v 1.8 2005/07/27 21:19:12 greg_g Exp $
-
-DESCRIPTION="Library for Bible reading software."
-HOMEPAGE="http://www.crosswire.org/sword/"
-
-LICENSE="GPL-2"
-SLOT="0"
-# cvs snapshot required as all other versions are broken
-KEYWORDS="x86 ppc amd64"
-SRC_URI="http://dev.gentoo.org/~squinky86/files/${P}.tar.bz2"
-IUSE="icu curl"
-RDEPEND="virtual/libc
- sys-libs/zlib
- curl? ( >=net-misc/curl-7.10.8 )
- icu? ( dev-libs/icu )"
-DEPEND="${RDEPEND}
- >=sys-devel/automake-1.7.2"
-
-src_compile() {
- export WANT_AUTOMAKE="1.6"
- cd ${S}
- ./autogen.sh \
- --host=${CHOST} \
- --prefix=/usr \
- --infodir=/usr/share/info \
- --mandir=/usr/share/man || die "autogen.sh failed"
- econf --without-clucene --without-lucene `use_with icu` `use_with curl` || die "configure failed"
- emake || die "compile failed"
-}
-
-src_install() {
- einstall || die "install failed"
- dodir /etc
- insinto /etc
- doins ${FILESDIR}/sword.conf
-
- dodoc AUTHORS CODINGSTYLE INSTALL ChangeLog README
- cp -R samples examples ${D}/usr/share/doc/${PF}
- dohtml doc/api-documentation/html/*
-}
-
-pkg_postinst() {
- einfo ""
- einfo "To install modules for SWORD, you can emerge:"
- einfo " app-text/sword-modules"
- einfo "or check out http://www.crosswire.org/sword/modules/"
- einfo "to download modules manually that you would like to"
- einfo "use the library with. Follow module installation"
- einfo "instructions found on the web or in INSTALL.gz found"
- einfo "in /usr/share/doc/${PF}"
- einfo ""
-}