diff options
author | Markus Dittrich <markusle@gentoo.org> | 2007-10-24 12:50:28 +0000 |
---|---|---|
committer | Markus Dittrich <markusle@gentoo.org> | 2007-10-24 12:50:28 +0000 |
commit | 8a828a27a753a417004546b3f2a13486afd4d9d8 (patch) | |
tree | 72b5707da20668f6e7ada164ef19cfcc73fa70db /sci-mathematics/calc/calc-2.12.1.5.ebuild | |
parent | removed old versions, correscted SRC_URI for 0.9.3 (diff) | |
download | historical-8a828a27a753a417004546b3f2a13486afd4d9d8.tar.gz historical-8a828a27a753a417004546b3f2a13486afd4d9d8.tar.bz2 historical-8a828a27a753a417004546b3f2a13486afd4d9d8.zip |
Fixed incorrect RDEPEND (see bug 196654) and bumped to most recent version.
Package-Manager: portage-2.1.3.15
Diffstat (limited to 'sci-mathematics/calc/calc-2.12.1.5.ebuild')
-rw-r--r-- | sci-mathematics/calc/calc-2.12.1.5.ebuild | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/sci-mathematics/calc/calc-2.12.1.5.ebuild b/sci-mathematics/calc/calc-2.12.1.5.ebuild index efb521cb7d09..0c351d8270d6 100644 --- a/sci-mathematics/calc/calc-2.12.1.5.ebuild +++ b/sci-mathematics/calc/calc-2.12.1.5.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/calc/calc-2.12.1.5.ebuild,v 1.3 2007/08/02 14:04:25 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/calc/calc-2.12.1.5.ebuild,v 1.4 2007/10/24 12:50:28 markusle Exp $ DESCRIPTION="An arbitrary precision C-like arithmetic system" HOMEPAGE="http://www.isthe.com/chongo/tech/comp/calc/" @@ -15,11 +15,12 @@ IUSE="" DEPEND=">=sys-libs/ncurses-5.2 >=sys-libs/readline-4.2" -RDEPEND=">=sys-apps/less-348" +RDEPEND="${DEPEND} + >=sys-apps/less-348" src_compile() { make \ - T=${D} \ + T="${D}" \ DEBUG="${CFLAGS}" \ CALCPAGER=less \ USE_READLINE="-DUSE_READLINE" \ @@ -34,6 +35,6 @@ src_compile() { } src_install() { - make T=${D} install || die - dodoc BUGS CHANGES COPYING COPYING-LGPL LIBRARY README + make T="${D}" install || die + dodoc BUGS CHANGES LIBRARY README } |