diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2012-03-16 20:07:18 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2012-03-16 20:07:18 +0000 |
commit | 5761292a6d411844d4bbe310a10124090d3fe4ed (patch) | |
tree | 0c7d0906fd3ad2df2699770ac418b13b2cf9f80b /app-text/sword/sword-1.5.10-r2.ebuild | |
parent | x86 stable wrt #408255 (diff) | |
download | gentoo-2-5761292a6d411844d4bbe310a10124090d3fe4ed.tar.gz gentoo-2-5761292a6d411844d4bbe310a10124090d3fe4ed.tar.bz2 gentoo-2-5761292a6d411844d4bbe310a10124090d3fe4ed.zip |
old
(Portage version: 2.2.0_alpha90/cvs/Linux x86_64)
Diffstat (limited to 'app-text/sword/sword-1.5.10-r2.ebuild')
-rw-r--r-- | app-text/sword/sword-1.5.10-r2.ebuild | 62 |
1 files changed, 0 insertions, 62 deletions
diff --git a/app-text/sword/sword-1.5.10-r2.ebuild b/app-text/sword/sword-1.5.10-r2.ebuild deleted file mode 100644 index 28fcf5d583b8..000000000000 --- a/app-text/sword/sword-1.5.10-r2.ebuild +++ /dev/null @@ -1,62 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/sword/sword-1.5.10-r2.ebuild,v 1.7 2009/07/12 18:08:07 halcy0n Exp $ - -inherit flag-o-matic - -DESCRIPTION="Library for Bible reading software." -HOMEPAGE="http://www.crosswire.org/sword/" -SRC_URI="http://www.crosswire.org/ftpmirror/pub/sword/source/v1.5/${P}.tar.gz" -LICENSE="GPL-2" - -SLOT="0" -KEYWORDS="amd64 ppc x86 ~x86-fbsd" -IUSE="curl debug doc icu lucene" - -RDEPEND="sys-libs/zlib - curl? ( net-misc/curl ) - icu? ( dev-libs/icu ) - lucene? ( dev-cpp/clucene )" -DEPEND="${RDEPEND} - dev-util/pkgconfig" - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}/escape_range.patch" - epatch "${FILESDIR}/${P}+gcc-4.3.patch" -} - -src_compile() { - strip-flags - econf --with-zlib \ - --with-conf \ - $(use_enable curl) \ - $(use_enable debug) \ - $(use_with icu) \ - $(use_enable lucene) || die "configure failed" - emake || die "make failed" -} - -src_install() { - make DESTDIR="${D}" install || die "install failed" - dodoc AUTHORS CODINGSTYLE ChangeLog INSTALL README - if use doc ;then - rm -rf examples/.cvsignore - rm -rf examples/cmdline/.cvsignore - rm -rf examples/cmdline/.deps - cp -R samples examples "${D}/usr/share/doc/${PF}/" - fi - # global configuration file - insinto /etc - doins "${FILESDIR}/sword.conf" -} - -pkg_postinst() { - echo - elog "Check out http://www.crosswire.org/sword/modules/" - elog "to download modules that you would like to use with SWORD." - elog "Follow module installation instructions found on" - elog "the web or in /usr/share/doc/${PF}/" - echo -} |