diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2020-01-03 19:46:37 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2020-01-03 19:53:37 +0100 |
commit | a59687d166c949d5a50e59f7292a7f8327d1b2da (patch) | |
tree | 4e382ba34c31aeba1aa294bbf2a190341651c96d /sci-libs/lrslib/lrslib-051.ebuild | |
parent | sci-libs/pgplot: Drop 5.2.2-r6 (diff) | |
download | gentoo-a59687d166c949d5a50e59f7292a7f8327d1b2da.tar.gz gentoo-a59687d166c949d5a50e59f7292a7f8327d1b2da.tar.bz2 gentoo-a59687d166c949d5a50e59f7292a7f8327d1b2da.zip |
sci-libs/lrslib: Drop 042c-r2 and 051
Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'sci-libs/lrslib/lrslib-051.ebuild')
-rw-r--r-- | sci-libs/lrslib/lrslib-051.ebuild | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/sci-libs/lrslib/lrslib-051.ebuild b/sci-libs/lrslib/lrslib-051.ebuild deleted file mode 100644 index 8c8e791b7941..000000000000 --- a/sci-libs/lrslib/lrslib-051.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -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 ~arm ~x86" -IUSE="gmp" - -DEPEND="gmp? ( dev-libs/gmp:0= )" -RDEPEND="${DEPEND}" - -src_prepare(){ - sed -i "s/gcc/$(tc-getCC)/g" makefile || die - sed -i "s/-O3/${CFLAGS} ${LDFLAGS}/g" makefile || die - # Prefix for install - sed -i "s,/usr/local,/usr,g" makefile || die -} - -src_compile () { - if use gmp ; then - emake all - emake all-shared - else - emake allmp - fi -} - -src_install() { - dodoc readme - # Library - if use gmp ; then - emake DESTDIR="${D}" install-shared - fi - # Install default set of binaries - emake DESTDIR="${D}" install-common -} |