summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakov Smolic <jakov.smolic@sartura.hr>2021-04-25 13:49:52 +0200
committerDavid Seifert <soap@gentoo.org>2021-04-25 13:49:52 +0200
commit5471a85b38582f77123090ba8bcf8f5a5e27e7f0 (patch)
tree466aa78eeeed70783f996039038f5132bf3ebcb4 /app-text
parentapp-admin/system-tools-backends: Remove last-rited pkg (diff)
downloadgentoo-5471a85b38582f77123090ba8bcf8f5a5e27e7f0.tar.gz
gentoo-5471a85b38582f77123090ba8bcf8f5a5e27e7f0.tar.bz2
gentoo-5471a85b38582f77123090ba8bcf8f5a5e27e7f0.zip
app-text/bibutils: Remove old 6.7
Closes: https://bugs.gentoo.org/710530 Closes: https://bugs.gentoo.org/722464 Signed-off-by: Jakov Smolic <jakov.smolic@sartura.hr> Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'app-text')
-rw-r--r--app-text/bibutils/Manifest1
-rw-r--r--app-text/bibutils/bibutils-6.7.ebuild47
2 files changed, 0 insertions, 48 deletions
diff --git a/app-text/bibutils/Manifest b/app-text/bibutils/Manifest
index d5f41c15c884..c72c9c3707b5 100644
--- a/app-text/bibutils/Manifest
+++ b/app-text/bibutils/Manifest
@@ -1,2 +1 @@
DIST bibutils_6.10_src.tgz 590002 BLAKE2B 91ea6c961978d381a65c1d5071c541409609dd9fdeb664cd7e66eb4871c2ecd0dfd6b06857294ae6ec049751a5939be23518782a5e1f14fdf848918849269402 SHA512 43cf107ee6d1bf6bf27a6bf46e1f4cbd83a4b78ef355730a9f37282fac399ee21d78538248730be85c0a8f724344782dcc6ab68e50f857d8ac4ea24cc4102911
-DIST bibutils_6.7_src.tgz 580792 BLAKE2B 29c5863bc414ef7b2f362d95352c0e042c1bcc3275017df82b0206d96520b3f5c3fe1e12563577b84a8bd94b0677bf1ad04ecbd80dcbcc194a71037bbd6facba SHA512 08db07408eee26bce42dbd00b7e821ef41dc12c7ce847425e81145927bcfc6ea7180ff719056e089917811aa9675a09dd52e1e02b8187b8618f67647efcb1236
diff --git a/app-text/bibutils/bibutils-6.7.ebuild b/app-text/bibutils/bibutils-6.7.ebuild
deleted file mode 100644
index ae30674daea3..000000000000
--- a/app-text/bibutils/bibutils-6.7.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-inherit toolchain-funcs
-
-MY_P="${PN}_${PV}"
-DESCRIPTION="Interconverts between various bibliography formats using common XML intermediate"
-HOMEPAGE="https://sourceforge.net/p/bibutils/home/Bibutils/"
-SRC_URI="mirror://sourceforge/${PN}/${MY_P}_src.tgz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~ppc ~x86"
-IUSE=""
-
-S=${WORKDIR}/${MY_P}
-
-src_configure() {
- # The custom configure script still sucks several releases later, so we'll
- # just do its job ourselves
- rm -f Makefile configure || die "Failed to purge old Makefile"
- sed \
- -e "s:REPLACE_CC:$(tc-getCC):g" \
- -e "s:REPLACE_EXEEXT::g" \
- -e "s:REPLACE_LIBTARGET:libbibutils.so:g" \
- -e "s:REPLACE_LIBEXT:.so:g" \
- -e "s:REPLACE_CFLAGS:${CFLAGS}:g" \
- -e "s:REPLACE_CLIBFLAGS:${CFLAGS} -fPIC:g" \
- -e "s:REPLACE_RANLIB:$(tc-getRANLIB):g" \
- -e 's:REPLACE_POSTFIX::g' \
- -e "s:REPLACE_INSTALLDIR:\"${D}/usr/bin\":g" \
- -e "s:REPLACE_LIBINSTALLDIR:\"${D}/usr/$(get_libdir)\":g" \
- -e 's:make:$(MAKE):g' \
- Makefile_start > Makefile \
- || die "Failed to set up Makefile"
-
- cp lib/Makefile.dynamic lib/Makefile || die
- cp bin/Makefile.dynamic bin/Makefile || die
- cp test/Makefile.dynamic test/Makefile || die
-}
-
-src_install() {
- dodir /usr/bin
- emake install
- dodoc ChangeLog
-}