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 718EB1382C5 for ; Thu, 8 Feb 2018 00:10:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A768BE0AC9; Thu, 8 Feb 2018 00:10:42 +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 883DAE0AC7 for ; Thu, 8 Feb 2018 00:10:42 +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 8B0E7335C50 for ; Thu, 8 Feb 2018 00:10:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4E0A41E2 for ; Thu, 8 Feb 2018 00:10:38 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1518047950.c136c12a1ffebae34f8c15d1033f0fb3de813160.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/frobby/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-mathematics/frobby/frobby-0.9.0-r1.ebuild X-VCS-Directories: sci-mathematics/frobby/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: c136c12a1ffebae34f8c15d1033f0fb3de813160 X-VCS-Branch: master Date: Thu, 8 Feb 2018 00:10:38 +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: 7c0b0a6c-61fb-43cd-b456-841d8e9bfb8b X-Archives-Hash: a4c72c158445fc466dfb809d4b70fa23 commit: c136c12a1ffebae34f8c15d1033f0fb3de813160 Author: Michael Mair-Keimberger gmail com> AuthorDate: Wed Feb 7 18:54:17 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Wed Feb 7 23:59:10 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c136c12a sci-mathematics/frobby: remove old Closes: https://github.com/gentoo/gentoo/pull/7117 sci-mathematics/frobby/frobby-0.9.0-r1.ebuild | 54 --------------------------- 1 file changed, 54 deletions(-) diff --git a/sci-mathematics/frobby/frobby-0.9.0-r1.ebuild b/sci-mathematics/frobby/frobby-0.9.0-r1.ebuild deleted file mode 100644 index 42427b592bb..00000000000 --- a/sci-mathematics/frobby/frobby-0.9.0-r1.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=4 - -inherit eutils - -DESCRIPTION="Software system and project for computations with monomial ideals" -HOMEPAGE="http://www.broune.com/frobby/" -SRC_URI="http://www.broune.com/frobby/frobby_v${PV}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~arm x86" -IUSE="doc static-libs" - -RDEPEND="dev-libs/gmp[cxx]" -DEPEND="${RDEPEND} - doc? ( virtual/latex-base )" - -S="${WORKDIR}/frobby_v${PV}" - -src_prepare() { - epatch \ - "${FILESDIR}/${PN}-cflags-no-strip-soname.patch" \ - "${FILESDIR}/${PN}-gcc-4.7.patch" \ - "${FILESDIR}/${PN}-gmp-5.1.patch" - # CXXFLAGS are called CPPFLAGS - sed "s/CPPFLAGS/CXXFLAGS/" -i Makefile || die -} - -src_compile() { - # Makefile uses the value of CXX which may be defined in /etc/env, - # breaking cross-compile. - CXX=$(tc-getCXX) emake - MODE=shared CXX=$(tc-getCXX) emake library - use static-libs && CXX=$(tc-getCXX) emake library - use doc && emake docPdf -} - -src_install() { - dobin bin/frobby - dolib.so bin/libfrobby.so - dosym libfrobby.so "${PREFIX}/usr/$(get_libdir)/libfrobby.so.0" - use static-libs && dolib.a bin/libfrobby.a - - insinto /usr/include - doins src/frobby.h - - insinto /usr/include/"${PN}" - doins src/stdinc.h - - use doc && dodoc bin/manual.pdf -}