blob: b41d4f719f3b88e72b54270e5f6394f042b434ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# Copyright 1999-2010 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.0.ebuild,v 1.2 2010/01/07 17:21:15 bicatali Exp $
EAPI=2
inherit eutils
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}"
src_compile() {
# parallel compilation hard to fix. better to leave upstream.
emake -j1 \
DEBUG="${CFLAGS}" \
CALCPAGER="${PAGER}" \
USE_READLINE="-DUSE_READLINE" \
READLINE_LIB="-lreadline -lhistory -lncurses" \
all || die "emake failed"
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() {
emake T="${D}" LIBDIR="/usr/$(get_libdir)" install || die "emake install failed"
dodoc BUGS CHANGES LIBRARY README
}
|