diff options
author | Akinori Hattori <hattya@gentoo.org> | 2008-06-19 15:58:42 +0000 |
---|---|---|
committer | Akinori Hattori <hattya@gentoo.org> | 2008-06-19 15:58:42 +0000 |
commit | 2b3559f4640be75c0b0494c61ca650119a419503 (patch) | |
tree | 7d80cf4a4461c1df6572727f39e4e937d674437e /dev-scheme | |
parent | stable on x86. (diff) | |
download | gentoo-2-2b3559f4640be75c0b0494c61ca650119a419503.tar.gz gentoo-2-2b3559f4640be75c0b0494c61ca650119a419503.tar.bz2 gentoo-2-2b3559f4640be75c0b0494c61ca650119a419503.zip |
cleaned out old ebuild(s).
(Portage version: 2.1.4.4)
Diffstat (limited to 'dev-scheme')
-rw-r--r-- | dev-scheme/gauche/ChangeLog | 6 | ||||
-rw-r--r-- | dev-scheme/gauche/gauche-0.8.11-r1.ebuild | 58 | ||||
-rw-r--r-- | dev-scheme/gauche/gauche-0.8.9.ebuild | 70 |
3 files changed, 5 insertions, 129 deletions
diff --git a/dev-scheme/gauche/ChangeLog b/dev-scheme/gauche/ChangeLog index 249f9b610eee..4ecde52f185e 100644 --- a/dev-scheme/gauche/ChangeLog +++ b/dev-scheme/gauche/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-scheme/gauche # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-scheme/gauche/ChangeLog,v 1.17 2008/06/19 15:54:01 hattya Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-scheme/gauche/ChangeLog,v 1.18 2008/06/19 15:58:42 hattya Exp $ + + 19 Jun 2008; Akinori Hattori <hattya@gentoo.org> -gauche-0.8.9.ebuild, + -gauche-0.8.11-r1.ebuild: + cleaned out old ebuild(s). 19 Jun 2008; Akinori Hattori <hattya@gentoo.org> gauche-0.8.12.ebuild: stable on x86. diff --git a/dev-scheme/gauche/gauche-0.8.11-r1.ebuild b/dev-scheme/gauche/gauche-0.8.11-r1.ebuild deleted file mode 100644 index 5eab38913d0f..000000000000 --- a/dev-scheme/gauche/gauche-0.8.11-r1.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-scheme/gauche/gauche-0.8.11-r1.ebuild,v 1.2 2007/10/08 16:32:45 hattya Exp $ - -inherit autotools eutils flag-o-matic - -IUSE="ipv6" - -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="~amd64 ~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}-gauche.m4.diff - epatch "${FILESDIR}"/${PN}-runpath.diff - epatch "${FILESDIR}"/${P}-socket-buffering.diff - eautoconf - -} - -src_compile() { - - strip-flags - - econf \ - `use_enable ipv6` \ - --enable-multibyte=utf8 \ - --with-slib=/usr/share/slib \ - || die - emake -j1 || die - -} - -src_test() { - - emake -j1 -s check || die - -} - -src_install() { - - emake DESTDIR="${D}" install-pkg install-doc || die - dodoc AUTHORS ChangeLog HACKING README - -} diff --git a/dev-scheme/gauche/gauche-0.8.9.ebuild b/dev-scheme/gauche/gauche-0.8.9.ebuild deleted file mode 100644 index 32a58741862f..000000000000 --- a/dev-scheme/gauche/gauche-0.8.9.ebuild +++ /dev/null @@ -1,70 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-scheme/gauche/gauche-0.8.9.ebuild,v 1.3 2007/04/21 15:50:50 armin76 Exp $ - -inherit autotools eutils flag-o-matic - -IUSE="ipv6" - -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="~amd64 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}-dbm.ac.diff - epatch "${FILESDIR}"/${PN}-gauche.m4.diff - epatch "${FILESDIR}"/${PN}-runpath.diff - - eautoconf - -} - -src_compile() { - - local myconf="--enable-threads=pthreads --enable-multibyte=utf8" - - strip-flags - - econf \ - `use_enable ipv6` \ - ${myconf} \ - || die - emake || die - -} - -src_test() { - - emake -j1 -s check || die - -} - -src_install() { - - emake DESTDIR="${D}" install || die - - dodoc AUTHORS ChangeLog HACKING README - -} - -pkg_postinst() { - - echo - ewarn "As of version 0.8.6, Gauche switched the default character" - ewarn "encoding from euc-jp to utf-8." - echo - -} |