diff options
author | Sam James <sam@gentoo.org> | 2021-04-28 20:16:05 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-04-28 20:24:06 +0000 |
commit | d4e5fb57ef9445c508d7e2778d71bd68264cdb76 (patch) | |
tree | 272e0181ae28aeb0eb03d7e59083d159539422c8 /sci-mathematics/calc/calc-2.13.0.1.ebuild | |
parent | sci-mathematics/calc: fix pkg-config call (diff) | |
download | gentoo-d4e5fb57ef9445c508d7e2778d71bd68264cdb76.tar.gz gentoo-d4e5fb57ef9445c508d7e2778d71bd68264cdb76.tar.bz2 gentoo-d4e5fb57ef9445c508d7e2778d71bd68264cdb76.zip |
sci-mathematics/calc: add 2.13.0.1
Closes: https://bugs.gentoo.org/732028
Closes: https://bugs.gentoo.org/725590
Closes: https://bugs.gentoo.org/620892
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'sci-mathematics/calc/calc-2.13.0.1.ebuild')
-rw-r--r-- | sci-mathematics/calc/calc-2.13.0.1.ebuild | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/sci-mathematics/calc/calc-2.13.0.1.ebuild b/sci-mathematics/calc/calc-2.13.0.1.ebuild new file mode 100644 index 000000000000..955dc93fbea4 --- /dev/null +++ b/sci-mathematics/calc/calc-2.13.0.1.ebuild @@ -0,0 +1,62 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit toolchain-funcs + +DESCRIPTION="Arbitrary precision C-like arithmetic system" +HOMEPAGE="http://www.isthe.com/chongo/tech/comp/calc/" +SRC_URI="http://www.isthe.com/chongo/src/calc/${P}.tar.bz2" + +SLOT="0" +LICENSE="LGPL-2" +KEYWORDS="~alpha amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux" + +RDEPEND=" + sys-libs/ncurses:0= + sys-libs/readline:0=" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" + +PATCHES=( + "${FILESDIR}"/${PN}-2.13.0.1-RPATH.patch + "${FILESDIR}"/${PN}-2.13.0.1-respect-LDFLAGS.patch +) + +src_prepare() { + default + + ln -sf libcustcalc.so.${PV} custom/libcustcalc.so || die + sed -i -e "/DIR/s:/usr:${EPREFIX}/usr:g" Makefile || die +} + +src_compile() { + # parallel compilation hard to fix. better to leave upstream. + emake -j1 \ + CC="$(tc-getCC)" \ + DEBUG="${CFLAGS}" \ + LDFLAGS="${LDFLAGS}" \ + EXTRA_LDFLAGS="${LDFLAGS}" \ + CALCPAGER="${PAGER}" \ + USE_READLINE="-DUSE_READLINE" \ + READLINE_LIB="-lreadline -lhistory $($(tc-getPKG_CONFIG) --libs ncurses) -L\"${S}\"/custom -lcustcalc" \ + all +} + +src_test() { + if echo "${LD_PRELOAD}" | grep -q "sandbox"; then + ewarn "Can't run check when running in sandbox - see bug #59676" + else + emake chk + fi +} + +src_install() { + emake \ + T="${D}" \ + LIBDIR="${EPREFIX}/usr/$(get_libdir)" \ + install + + dodoc BUGS CHANGES LIBRARY +} |