diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-09-05 15:15:02 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-09-05 15:15:02 +0000 |
commit | 80474a93cbf566221d9620ae159e465c270c0e45 (patch) | |
tree | f82e1aed4298488eb2c519cc349d3d7762df6b2f /sys-devel/bc | |
parent | old (diff) | |
download | gentoo-2-80474a93cbf566221d9620ae159e465c270c0e45.tar.gz gentoo-2-80474a93cbf566221d9620ae159e465c270c0e45.tar.bz2 gentoo-2-80474a93cbf566221d9620ae159e465c270c0e45.zip |
Version bump for #136643.
(Portage version: 2.1.1_rc1-r4)
Diffstat (limited to 'sys-devel/bc')
-rw-r--r-- | sys-devel/bc/ChangeLog | 7 | ||||
-rw-r--r-- | sys-devel/bc/bc-1.06.95.ebuild | 39 | ||||
-rw-r--r-- | sys-devel/bc/files/digest-bc-1.06.95 | 3 |
3 files changed, 48 insertions, 1 deletions
diff --git a/sys-devel/bc/ChangeLog b/sys-devel/bc/ChangeLog index 853b8ecced1d..092f5c57075f 100644 --- a/sys-devel/bc/ChangeLog +++ b/sys-devel/bc/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-devel/bc # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/bc/ChangeLog,v 1.25 2006/06/11 11:16:54 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/bc/ChangeLog,v 1.26 2006/09/05 15:15:02 vapier Exp $ + +*bc-1.06.95 (05 Sep 2006) + + 05 Sep 2006; Mike Frysinger <vapier@gentoo.org> +bc-1.06.95.ebuild: + Version bump for #136643. 11 Jun 2006; Diego Pettenò <flameeyes@gentoo.org> bc-1.06.94.ebuild: Add freebsd-lib as option for libedit. diff --git a/sys-devel/bc/bc-1.06.95.ebuild b/sys-devel/bc/bc-1.06.95.ebuild new file mode 100644 index 000000000000..5b84453428fb --- /dev/null +++ b/sys-devel/bc/bc-1.06.95.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/bc/bc-1.06.95.ebuild,v 1.1 2006/09/05 15:15:02 vapier Exp $ + +inherit eutils flag-o-matic toolchain-funcs + +DESCRIPTION="Handy console-based calculator utility" +HOMEPAGE="http://www.gnu.org/software/bc/bc.html" +SRC_URI="ftp://alpha.gnu.org/gnu/bc/${P}.tar.bz2 + mirror://gnu/bc/${P}.tar.bz2" + +LICENSE="GPL-2 LGPL-2.1" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd" +IUSE="libedit readline static" + +RDEPEND="readline? ( >=sys-libs/readline-4.1 >=sys-libs/ncurses-5.2 ) + libedit? ( || ( sys-freebsd/freebsd-lib dev-libs/libedit ) )" +DEPEND="${RDEPEND} + sys-devel/flex" + +src_compile() { + local myconf + if use readline ; then + myconf="--with-readline --without-libedit" + elif use libedit ; then + myconf="--without-readline --with-libedit" + else + myconf="--without-readline --without-libedit" + fi + use static && append-ldflags -static + econf ${myconf} || die + emake || die +} + +src_install() { + make install DESTDIR="${D}" || die + dodoc AUTHORS FAQ NEWS README ChangeLog +} diff --git a/sys-devel/bc/files/digest-bc-1.06.95 b/sys-devel/bc/files/digest-bc-1.06.95 new file mode 100644 index 000000000000..4b9297bfb7b1 --- /dev/null +++ b/sys-devel/bc/files/digest-bc-1.06.95 @@ -0,0 +1,3 @@ +MD5 5126a721b73f97d715bb72c13c889035 bc-1.06.95.tar.bz2 290069 +RMD160 d58c2d7a1f4b7bfa910f26e5809f3169a6e0da76 bc-1.06.95.tar.bz2 290069 +SHA256 7ee4abbcfac03d8a6e1a8a3440558a3d239d6b858585063e745c760957725ecc bc-1.06.95.tar.bz2 290069 |