diff options
author | Marek Szuba <marecki@gentoo.org> | 2020-07-25 15:51:46 +0200 |
---|---|---|
committer | Marek Szuba <marecki@gentoo.org> | 2020-07-25 15:53:26 +0200 |
commit | d175d058648dce180161357f7fd6c3a19560f352 (patch) | |
tree | 368443f52522fa368619a626bcc2d230ccf306e1 /app-text/sword | |
parent | app-text/sword: switch to https URIs (diff) | |
download | gentoo-d175d058648dce180161357f7fd6c3a19560f352.tar.gz gentoo-d175d058648dce180161357f7fd6c3a19560f352.tar.bz2 gentoo-d175d058648dce180161357f7fd6c3a19560f352.zip |
app-text/sword: remove old
Signed-off-by: Marek Szuba <marecki@gentoo.org>
Diffstat (limited to 'app-text/sword')
-rw-r--r-- | app-text/sword/Manifest | 1 | ||||
-rw-r--r-- | app-text/sword/sword-1.7.4-r1.ebuild | 85 |
2 files changed, 0 insertions, 86 deletions
diff --git a/app-text/sword/Manifest b/app-text/sword/Manifest index ed1a2c41782e..dc9b07298426 100644 --- a/app-text/sword/Manifest +++ b/app-text/sword/Manifest @@ -1,2 +1 @@ -DIST sword-1.7.4.tar.gz 2157882 BLAKE2B 7ed50430500ec428a125e24550a1f7d0437a0253cf4fabad4c8af452d2aa82c71c11e4a6c334ef1a95d82f14ce1cc092f3774210113e9668ba207875b3a11b20 SHA512 4c8b183e613367364439cc7a8a842012f75180fccc8eb775b9af2dc4c10f39c152261d35f0aadaaa91a11df36ab1a4057c2edc50ea4b0b3bb0ab0a847ff68f75 DIST sword-1.8.1.tar.gz 2449503 BLAKE2B 4cc130ade49211dd4def6d9410ad6a0f01b35d11df246e26bb7fd0ee5c27ef02ee06ed3ec33c7becd140fa303b4fb4b3d4ba4d62de78b86be343949d5fcf7c6d SHA512 5c08c070ea0c86b7d929bbf94c89730eb5a487986deb9edf01c08d1710356aecd1ab3bde4437a778e5fc1ceb05b63287612ec6161381c0986a36344c27d2ab36 diff --git a/app-text/sword/sword-1.7.4-r1.ebuild b/app-text/sword/sword-1.7.4-r1.ebuild deleted file mode 100644 index 99a6880de9ce..000000000000 --- a/app-text/sword/sword-1.7.4-r1.ebuild +++ /dev/null @@ -1,85 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -inherit eutils flag-o-matic - -DESCRIPTION="Library for Bible reading software" -HOMEPAGE="http://www.crosswire.org/sword/" -SRC_URI="http://www.crosswire.org/ftpmirror/pub/${PN}/source/v${PV%.*}/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~ppc x86 ~ppc-macos" -IUSE="clucene curl debug doc icu static-libs" - -RDEPEND="sys-libs/zlib - curl? ( net-misc/curl ) - icu? ( dev-libs/icu:= ) - clucene? ( dev-cpp/clucene ) -" -DEPEND="${RDEPEND} - virtual/pkgconfig -" - -DOCS="AUTHORS CODINGSTYLE ChangeLog README" - -RESTRICT="test" #Restricting for now, see bug 313207 - -src_prepare() { - sed -i \ - -e '/FLAGS/s:-g3::' -e '/FLAGS/s:-O0::' \ - -e '/FLAGS/s:-O2::' -e '/FLAGS/s:-O3::' \ - configure || die - - sed -i -e '/FLAGS/s:-Werror::' configure || die #408289 - sed -i -e '/^#inc.*curl.*types/d' src/mgr/curl*.cpp || die #378055 - - cat <<-EOF > "${T}"/${PN}.conf - [Install] - DataPath=${EPREFIX}/usr/share/${PN}/ - EOF - epatch "${FILESDIR}/${PN}-1.7.4-gcc6.patch" - epatch "${FILESDIR}/${PN}-1.7.4-configure.patch" - eapply_user -} - -src_configure() { - # TODO: Why is this here and can we remove it? - strip-flags - - # bug 618776 - append-cxxflags -std=c++14 - - econf \ - $(use_enable static-libs static) \ - $(use_enable debug) \ - --with-zlib \ - $(use_with icu) \ - --with-conf \ - $(use_with curl) \ - $(use_with clucene) -} - -src_install() { - default - - find "${ED}" -name '*.la' -exec rm -f {} + - - if use doc; then - rm -rf examples/.cvsignore - rm -rf examples/cmdline/.cvsignore - rm -rf examples/cmdline/.deps - cp -R samples examples "${ED}"/usr/share/doc/${PF}/ - fi - - insinto /etc - doins "${T}"/${PN}.conf -} - -pkg_postinst() { - 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 ${EROOT}/usr/share/doc/${PF}/" -} |