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 | 136a03dd574f1b2f55e2a17be2139a7a771338ed (patch) | |
tree | 65f8bc9a118399a927a0fa7c563d0520526baf7c /dev-lang/gauche | |
parent | Stable on ppc64 (diff) | |
download | historical-136a03dd574f1b2f55e2a17be2139a7a771338ed.tar.gz historical-136a03dd574f1b2f55e2a17be2139a7a771338ed.tar.bz2 historical-136a03dd574f1b2f55e2a17be2139a7a771338ed.zip |
0.8.5 is the bug fix release of this.
Package-Manager: portage-2.0.51.22-r2
Diffstat (limited to 'dev-lang/gauche')
-rw-r--r-- | dev-lang/gauche/ChangeLog | 5 | ||||
-rw-r--r-- | dev-lang/gauche/Manifest | 4 | ||||
-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 |
4 files changed, 5 insertions, 69 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/Manifest b/dev-lang/gauche/Manifest index 715446d11239..86ba1ab6c18d 100644 --- a/dev-lang/gauche/Manifest +++ b/dev-lang/gauche/Manifest @@ -1,10 +1,8 @@ -MD5 382ce25041b28faa0c96f580098d2050 ChangeLog 5778 +MD5 9a82a68539185c9777061cf508dae977 ChangeLog 5892 MD5 38d46371d4968b1adc706d093858b6ef gauche-0.8.3.ebuild 1122 -MD5 b42439cef2bbbc73072dcd5e6a63a979 gauche-0.8.4.ebuild 1122 MD5 ab5917a111acfed4d7fd6abc15e4b3b9 gauche-0.8.5.ebuild 1122 MD5 e9fa98743d1cf3b213a4b04f52baf5f8 metadata.xml 619 MD5 27605cb14e108b005797503b884e6e67 files/digest-gauche-0.8.3 62 -MD5 331a9844dd28c8e770bcc193dc4ae1fa files/digest-gauche-0.8.4 62 MD5 662729c0ca18c20cd945fb332874362a files/digest-gauche-0.8.5 62 MD5 58ca35453cb35833ef880d3e1d3ea5d2 files/gauche-aclocal.m4-1.31.diff 1099 MD5 7bc4cbd7c32584661896116bd48fdee0 files/gauche-aclocal.m4-cc.diff 479 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 - -} |