Gentoo Archives: gentoo-commits

From: Lars Wendler <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/bc/
Date: Mon, 10 Apr 2017 07:58:33
Message-Id: 1491811104.87d4286f15ad331f9928740b18169beff5e2ba67.polynomial-c@gentoo
1 commit: 87d4286f15ad331f9928740b18169beff5e2ba67
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Mon Apr 10 07:58:24 2017 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Mon Apr 10 07:58:24 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=87d4286f
7
8 sys-devel/bc: Removed old.
9
10 Package-Manager: Portage-2.3.5, Repoman-2.3.2
11
12 sys-devel/bc/bc-1.06.95.ebuild | 38 --------------------------------------
13 1 file changed, 38 deletions(-)
14
15 diff --git a/sys-devel/bc/bc-1.06.95.ebuild b/sys-devel/bc/bc-1.06.95.ebuild
16 deleted file mode 100644
17 index d43d9065cfd..00000000000
18 --- a/sys-devel/bc/bc-1.06.95.ebuild
19 +++ /dev/null
20 @@ -1,38 +0,0 @@
21 -# Copyright 1999-2017 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -inherit eutils flag-o-matic toolchain-funcs
25 -
26 -DESCRIPTION="Handy console-based calculator utility"
27 -HOMEPAGE="https://www.gnu.org/software/bc/bc.html"
28 -SRC_URI="mirror://gnu-alpha/bc/${P}.tar.bz2
29 - mirror://gnu/bc/${P}.tar.bz2"
30 -
31 -LICENSE="GPL-2 LGPL-2.1"
32 -SLOT="0"
33 -KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~x64-solaris ~x86-solaris"
34 -IUSE="libedit readline static"
35 -
36 -RDEPEND="readline? ( >=sys-libs/readline-4.1 >=sys-libs/ncurses-5.2 )
37 - libedit? ( dev-libs/libedit )"
38 -DEPEND="${RDEPEND}
39 - sys-devel/flex"
40 -
41 -src_compile() {
42 - local myconf
43 - if use readline ; then
44 - myconf="--with-readline --without-libedit"
45 - elif use libedit ; then
46 - myconf="--without-readline --with-libedit"
47 - else
48 - myconf="--without-readline --without-libedit"
49 - fi
50 - use static && append-ldflags -static
51 - econf ${myconf} || die
52 - emake || die
53 -}
54 -
55 -src_install() {
56 - emake install DESTDIR="${D}" || die
57 - dodoc AUTHORS FAQ NEWS README ChangeLog
58 -}