diff options
author | Akinori Hattori <hattya@gentoo.org> | 2005-07-24 14:24:23 +0000 |
---|---|---|
committer | Akinori Hattori <hattya@gentoo.org> | 2005-07-24 14:24:23 +0000 |
commit | 91c6fbd13f778d24341847be8aaabdc79c1653b0 (patch) | |
tree | 78076225f4945ad61f11fd587d84ecab6b28c161 /dev-lang | |
parent | Stable on ppc64 (diff) | |
download | gentoo-2-91c6fbd13f778d24341847be8aaabdc79c1653b0.tar.gz gentoo-2-91c6fbd13f778d24341847be8aaabdc79c1653b0.tar.bz2 gentoo-2-91c6fbd13f778d24341847be8aaabdc79c1653b0.zip |
0.8.5 is the bug fix release of this.
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'dev-lang')
-rw-r--r-- | dev-lang/gauche/ChangeLog | 5 | ||||
-rw-r--r-- | dev-lang/gauche/files/digest-gauche-0.8.4 | 1 | ||||
-rw-r--r-- | dev-lang/gauche/gauche-0.8.4.ebuild | 64 |
3 files changed, 4 insertions, 66 deletions
diff --git a/dev-lang/gauche/ChangeLog b/dev-lang/gauche/ChangeLog index a1afd88f47ca..f8d171d07f0a 100644 --- a/dev-lang/gauche/ChangeLog +++ b/dev-lang/gauche/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-lang/gauche # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/gauche/ChangeLog,v 1.15 2005/07/24 14:21:07 hattya Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/gauche/ChangeLog,v 1.16 2005/07/24 14:24:23 hattya Exp $ + + 24 Jul 2005; Akinori Hattori <hattya@gentoo.org> -gauche-0.8.4.ebuild: + 0.8.5 is the bug fix release of this. *gauche-0.8.5 (24 Jul 2005) diff --git a/dev-lang/gauche/files/digest-gauche-0.8.4 b/dev-lang/gauche/files/digest-gauche-0.8.4 deleted file mode 100644 index acda9c566800..000000000000 --- a/dev-lang/gauche/files/digest-gauche-0.8.4 +++ /dev/null @@ -1 +0,0 @@ -MD5 3798df425ad97ba9008801a2ea377147 Gauche-0.8.4.tgz 2772432 diff --git a/dev-lang/gauche/gauche-0.8.4.ebuild b/dev-lang/gauche/gauche-0.8.4.ebuild deleted file mode 100644 index d59c919b7c12..000000000000 --- a/dev-lang/gauche/gauche-0.8.4.ebuild +++ /dev/null @@ -1,64 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/gauche/gauche-0.8.4.ebuild,v 1.1 2005/06/04 10:23:37 hattya Exp $ - -inherit eutils flag-o-matic - -IUSE="ipv6 nls" - -MY_P="${P/g/G}" - -DESCRIPTION="A Unix system friendly Scheme Interpreter" -HOMEPAGE="http://gauche.sf.net/" -SRC_URI="mirror://sourceforge/gauche/${MY_P}.tgz" - -LICENSE="BSD" -KEYWORDS="~ia64 ~ppc ~sparc ~x86" -SLOT="0" -S="${WORKDIR}/${MY_P}" - -DEPEND=">=sys-libs/gdbm-1.8.0" - -src_unpack() { - - unpack ${A} - - cd ${S} - epatch ${FILESDIR}/${PN}-gdbm-gentoo.diff - epatch ${FILESDIR}/${PN}-aclocal.m4-cc.diff - autoconf - -} - -src_compile() { - - local myconf mycflags - - use ipv6 && myconf="--enable-ipv6" - - if use nls; then - myconf="${myconf} --enable-multibyte=utf-8" - else - myconf="${myconf} --enable-multibyte=euc-jp" - fi - - strip-flags - - econf ${myconf} --enable-threads=pthreads || die - emake || die - -} - -src_test() { - - make -s check || die - -} - -src_install() { - - make DESTDIR=${D} install || die - - dodoc AUTHORS COPYING ChangeLog HACKING INSTALL INSTALL.eucjp README - -} |