diff options
author | Sebastien Fabbro <bicatali@gentoo.org> | 2012-08-09 17:52:26 +0000 |
---|---|---|
committer | Sebastien Fabbro <bicatali@gentoo.org> | 2012-08-09 17:52:26 +0000 |
commit | 7ed1a33437cad7e8c42cb1b33a7fc297f33cdac8 (patch) | |
tree | ce9668770f34eec5e1ef8231aaa53f92c7ea72df /sci-mathematics/calc/calc-2.12.4.4.ebuild | |
parent | Marking File-Find-Rule-0.330.0 ppc for bug 418811 (diff) | |
download | gentoo-2-7ed1a33437cad7e8c42cb1b33a7fc297f33cdac8.tar.gz gentoo-2-7ed1a33437cad7e8c42cb1b33a7fc297f33cdac8.tar.bz2 gentoo-2-7ed1a33437cad7e8c42cb1b33a7fc297f33cdac8.zip |
Version bump. Fixed for prefix
(Portage version: 2.2.01.20796-prefix/cvs/Linux x86_64)
Diffstat (limited to 'sci-mathematics/calc/calc-2.12.4.4.ebuild')
-rw-r--r-- | sci-mathematics/calc/calc-2.12.4.4.ebuild | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/sci-mathematics/calc/calc-2.12.4.4.ebuild b/sci-mathematics/calc/calc-2.12.4.4.ebuild new file mode 100644 index 000000000000..f984ef92f518 --- /dev/null +++ b/sci-mathematics/calc/calc-2.12.4.4.ebuild @@ -0,0 +1,57 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/calc/calc-2.12.4.4.ebuild,v 1.1 2012/08/09 17:52:26 bicatali Exp $ + +EAPI=4 + +inherit eutils multilib 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" + +IUSE="" + +DEPEND=" + sys-libs/ncurses + sys-libs/readline" +RDEPEND="${DEPEND}" + +src_prepare() { + epatch "${FILESDIR}"/${PN}-2.12.4.0-prefix.patch + epatch "${FILESDIR}"/2.12.4.0-ldflags.patch + ln -sf libcustcalc.so.${PV} custom/libcustcalc.so + 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}" \ + CALCPAGER="${PAGER}" \ + USE_READLINE="-DUSE_READLINE" \ + READLINE_LIB="-lreadline -lhistory -lncurses -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 || die "Check failed" + fi +} + +src_install() { + emake \ + T="${D}" \ + LIBDIR="${EPREFIX}/usr/$(get_libdir)" \ + install + dodoc BUGS CHANGES LIBRARY README +} |