summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Bauman <bman@gentoo.org>2018-05-31 17:32:54 -0400
committerAaron Bauman <bman@gentoo.org>2018-06-01 10:05:15 -0400
commitadffe0903316eba34dc4aee3e5c61f2d2d09be91 (patch)
tree49fca28d7ad565717c3fe42ce68ad8d5ce7496ee /sci-libs/lrslib
parentnet-p2p/tvrss: bump EAPI and drop versionator (diff)
downloadgentoo-adffe0903316eba34dc4aee3e5c61f2d2d09be91.tar.gz
gentoo-adffe0903316eba34dc4aee3e5c61f2d2d09be91.tar.bz2
gentoo-adffe0903316eba34dc4aee3e5c61f2d2d09be91.zip
sci-libs/lrslib: drop EAPI=2 ebuild
Package-Manager: Portage-2.3.40, Repoman-2.3.9
Diffstat (limited to 'sci-libs/lrslib')
-rw-r--r--sci-libs/lrslib/lrslib-042c-r1.ebuild52
1 files changed, 0 insertions, 52 deletions
diff --git a/sci-libs/lrslib/lrslib-042c-r1.ebuild b/sci-libs/lrslib/lrslib-042c-r1.ebuild
deleted file mode 100644
index b1fba3a5f344..000000000000
--- a/sci-libs/lrslib/lrslib-042c-r1.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=2
-
-inherit toolchain-funcs
-
-DESCRIPTION="self-contained ANSI C implementation of the reverse search algorithm"
-HOMEPAGE="http://cgm.cs.mcgill.ca/~avis/C/lrs.html"
-SRC_URI="http://cgm.cs.mcgill.ca/~avis/C/lrslib/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="gmp"
-
-DEPEND="gmp? ( dev-libs/gmp )"
-RDEPEND="${DEPEND}"
-
-src_prepare(){
- sed -i "s/gcc/$(tc-getCC)/g" makefile || die
- sed -i "s/-O3/${CFLAGS} ${LDFLAGS}/g" makefile || die
-}
-
-src_compile () {
- if use amd64 ; then
- emake all64 || die "make failed"
- else
- emake || die "make failed"
- fi
- if use gmp ; then
- emake gmp || die "make failed"
- fi
-}
-
-src_install() {
- dobin lrs redund redund1 || die
- # Collides with sys-block/buffer
- newbin buffer lrsbuffer || die
- if use x86; then
- dobin nash setupnash setupnash2 2nash || die
- # Prevent clash with cddlib:
- newbin fourier lrsfourier || die
- fi
- if use gmp; then
- dobin glrs gredund gfourier || die
- # Clash with www-plugins/gnash
- newbin gnash lrsgnash || die
- fi
- dodoc readme || die
- dohtml lrslib.html || die
-}