summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app-text/bibutils/bibutils-4.12.ebuild')
-rw-r--r--app-text/bibutils/bibutils-4.12.ebuild37
1 files changed, 0 insertions, 37 deletions
diff --git a/app-text/bibutils/bibutils-4.12.ebuild b/app-text/bibutils/bibutils-4.12.ebuild
deleted file mode 100644
index e81090fd06fe..000000000000
--- a/app-text/bibutils/bibutils-4.12.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=2
-inherit toolchain-funcs
-
-MY_P="${PN}_${PV}"
-DESCRIPTION="Interconverts between various bibliography formats using common XML intermediate"
-HOMEPAGE="http://www.scripps.edu/~cdputnam/software/bibutils/"
-SRC_URI="http://www.scripps.edu/~cdputnam/software/bibutils/${MY_P}_src.tgz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE=""
-
-S=${WORKDIR}/${MY_P}
-
-src_prepare() {
- # The custom configure script sucks, so we'll just do its
- # job ourselves
- rm -f Makefile configure || die "Failed to purge old Makefile"
- sed \
- -e "s:REPLACE_CC:CC=\"$(tc-getCC) ${CFLAGS}\":g" \
- -e "s:REPLACE_RANLIB:RANLIB=\"$(tc-getRANLIB)\":g" \
- -e "s:REPLACE_INSTALLDIR:\"${D}/usr/bin\":g" \
- -e 's:REPLACE_POSTFIX::g' \
- -e 's:make:$(MAKE):g' \
- Makefile_start > Makefile \
- || die "Failed to set up Makefile"
-}
-
-src_install() {
- dodir /usr/bin
- emake install || die
- dodoc ChangeLog || die
-}