From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id AD7D4138335 for ; Fri, 1 Jun 2018 14:05:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 94F3DE0848; Fri, 1 Jun 2018 14:05:29 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 60F6DE0848 for ; Fri, 1 Jun 2018 14:05:29 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 40124335C63 for ; Fri, 1 Jun 2018 14:05:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BA9322BB for ; Fri, 1 Jun 2018 14:05:26 +0000 (UTC) From: "Aaron Bauman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Bauman" Message-ID: <1527861915.adffe0903316eba34dc4aee3e5c61f2d2d09be91.bman@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/lrslib/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/lrslib/lrslib-042c-r1.ebuild X-VCS-Directories: sci-libs/lrslib/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: adffe0903316eba34dc4aee3e5c61f2d2d09be91 X-VCS-Branch: master Date: Fri, 1 Jun 2018 14:05:26 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 0165066f-4a41-459c-a0ca-8cb5a74a1568 X-Archives-Hash: a56ed6372613fa7f4a80547c324452a4 commit: adffe0903316eba34dc4aee3e5c61f2d2d09be91 Author: Aaron Bauman gentoo org> AuthorDate: Thu May 31 21:32:54 2018 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Fri Jun 1 14:05:15 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=adffe090 sci-libs/lrslib: drop EAPI=2 ebuild Package-Manager: Portage-2.3.40, Repoman-2.3.9 sci-libs/lrslib/lrslib-042c-r1.ebuild | 52 ----------------------------------- 1 file changed, 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 b1fba3a5f34..00000000000 --- 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 -}