diff options
author | Aaron Bauman <bman@gentoo.org> | 2018-06-02 20:06:12 -0400 |
---|---|---|
committer | Aaron Bauman <bman@gentoo.org> | 2018-06-02 22:58:36 -0400 |
commit | 5f03faa49d75f9355b2220f64de1226046c8f624 (patch) | |
tree | 1ef77a375cadeb340d5643be5cb8c3c2336b2b32 /sci-mathematics/calc | |
parent | sys-apps/cpint: drop old EAPI (diff) | |
download | gentoo-5f03faa49d75f9355b2220f64de1226046c8f624.tar.gz gentoo-5f03faa49d75f9355b2220f64de1226046c8f624.tar.bz2 gentoo-5f03faa49d75f9355b2220f64de1226046c8f624.zip |
sci-mathematics/calc: drop old EAPI
Package-Manager: Portage-2.3.40, Repoman-2.3.9
Diffstat (limited to 'sci-mathematics/calc')
-rw-r--r-- | sci-mathematics/calc/Manifest | 1 | ||||
-rw-r--r-- | sci-mathematics/calc/calc-2.12.2.2.ebuild | 53 |
2 files changed, 0 insertions, 54 deletions
diff --git a/sci-mathematics/calc/Manifest b/sci-mathematics/calc/Manifest index bc73ca8c03ee..86457bd7db86 100644 --- a/sci-mathematics/calc/Manifest +++ b/sci-mathematics/calc/Manifest @@ -1,3 +1,2 @@ -DIST calc-2.12.2.2.tar.bz2 864687 BLAKE2B 0ef36c1ff24537d3c713dff7e7dad4729d4ecbf7b7d38ac80bc98924957158eb1b22dbdb49bf26e0542d69b64c5ea7832bd467025efff07923cd263ca119dd01 SHA512 701e8414366f112aa0aba2359a0d76037994fa647d14beb216a23a05e328665b2e0218b902b5e2a447ccf6277795baef4c68e278e12dfc40b1ee95f23858b9f4 DIST calc-2.12.4.13.tar.bz2 970778 BLAKE2B 0e34df7d445a84de89e2c662ea7e8da4a350eaeef984b5027befe5947bf8e863180dd07bbe525c4bc04a6e3aa53bfbb2f3d719c8bfff3c238b16941b701d4b4d SHA512 7b7136c793917652ce2f2b3866b2db16a69dbead729d8a72b8c1359ebb8a4e1d4e7a3a8b214f8e85b9ccf41193ba6ffcb49926cc68f494e2b6cdff58559f2534 DIST calc-2.12.5.4.tar.bz2 956258 BLAKE2B 47c2ab46c47baf0d1f1d202a36e0d42cf0b25f7eecf61815814081b2f76aa65dc8cc4e970078a5176266ce1332751169424d1c6d2c16ff148a1b014986b56d47 SHA512 07c89059d4718b29e649a5198e0bb6c6a6d9c6705a0050ad744146f1649c65d0fb1277a68eb45daca907b08ef9336de2002808a5f9b2312e413eb3afb74d491f diff --git a/sci-mathematics/calc/calc-2.12.2.2.ebuild b/sci-mathematics/calc/calc-2.12.2.2.ebuild deleted file mode 100644 index a153e579b9fe..000000000000 --- a/sci-mathematics/calc/calc-2.12.2.2.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=0 - -inherit eutils multilib - -DESCRIPTION="An arbitrary precision C-like arithmetic system" -HOMEPAGE="http://www.isthe.com/chongo/tech/comp/calc/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" - -SLOT="0" -LICENSE="LGPL-2" -KEYWORDS="~alpha amd64 ~ppc ~ppc64 ~x86" - -IUSE="" - -DEPEND=">=sys-libs/ncurses-5.2 - >=sys-libs/readline-4.2" - -RDEPEND="${DEPEND} - >=sys-apps/less-348" - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}"/${P}-libdir-fix.patch - - sed -e "s:LIBDIR= /usr/lib:LIBDIR= /usr/$(get_libdir):" \ - -i Makefile || die "Failed to fix multilib in makefile" -} - -src_compile() { - # bug #299224 - emake -j1 \ - T="${D}" \ - DEBUG="${CFLAGS}" \ - CALCPAGER=less \ - USE_READLINE="-DUSE_READLINE" \ - READLINE_LIB="-lreadline -lhistory -lncurses" \ - all \ - || die - if echo "${LD_PRELOAD}" | grep -q "sandbox"; then - ewarn "Can't run check when running in sandbox - see bug #59676" - else - make chk || die "Check failed" - fi -} - -src_install() { - make T="${D}" install || die - dodoc BUGS CHANGES LIBRARY README -} |