diff options
author | Akinori Hattori <hattya@gentoo.org> | 2004-09-07 12:26:35 +0000 |
---|---|---|
committer | Akinori Hattori <hattya@gentoo.org> | 2004-09-07 12:26:35 +0000 |
commit | 1d3790bb2c70f4a7675779ef467eacbec4fcb26b (patch) | |
tree | 5766f87f2722c263a510a1570ad8ee9b0e749e88 /dev-lang | |
parent | stable on x86 (Manifest recommit) (diff) | |
download | gentoo-2-1d3790bb2c70f4a7675779ef467eacbec4fcb26b.tar.gz gentoo-2-1d3790bb2c70f4a7675779ef467eacbec4fcb26b.tar.bz2 gentoo-2-1d3790bb2c70f4a7675779ef467eacbec4fcb26b.zip |
cleaned out old ebuilds
Diffstat (limited to 'dev-lang')
-rw-r--r-- | dev-lang/gauche/ChangeLog | 6 | ||||
-rw-r--r-- | dev-lang/gauche/files/digest-gauche-0.7.3 | 1 | ||||
-rw-r--r-- | dev-lang/gauche/files/digest-gauche-0.7.4.1 | 1 | ||||
-rw-r--r-- | dev-lang/gauche/files/digest-gauche-0.7.4.2 | 1 | ||||
-rw-r--r-- | dev-lang/gauche/gauche-0.7.3.ebuild | 60 | ||||
-rw-r--r-- | dev-lang/gauche/gauche-0.7.4.1.ebuild | 64 | ||||
-rw-r--r-- | dev-lang/gauche/gauche-0.7.4.2.ebuild | 66 |
7 files changed, 5 insertions, 194 deletions
diff --git a/dev-lang/gauche/ChangeLog b/dev-lang/gauche/ChangeLog index 31676005c813..c7ee49c69ab7 100644 --- a/dev-lang/gauche/ChangeLog +++ b/dev-lang/gauche/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-lang/gauche # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/gauche/ChangeLog,v 1.3 2004/09/07 12:22:19 hattya Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/gauche/ChangeLog,v 1.4 2004/09/07 12:26:35 hattya Exp $ + + 07 Sep 2004; Akinori Hattori <hattya@gentoo.org> -gauche-0.7.3.ebuild, + -gauche-0.7.4.1.ebuild, -gauche-0.7.4.2.ebuild, gauche-0.8.1.ebuild: + cleaned out old ebuilds. 07 Sep 2004; Akinori Hattori <hattya@gentoo.org> gauche-0.8.1.ebuild: stable on x86. diff --git a/dev-lang/gauche/files/digest-gauche-0.7.3 b/dev-lang/gauche/files/digest-gauche-0.7.3 deleted file mode 100644 index b0ac41b84b79..000000000000 --- a/dev-lang/gauche/files/digest-gauche-0.7.3 +++ /dev/null @@ -1 +0,0 @@ -MD5 9ef0782cc06adf7d8dfcf8985f2e55a2 Gauche-0.7.3.tgz 2327687 diff --git a/dev-lang/gauche/files/digest-gauche-0.7.4.1 b/dev-lang/gauche/files/digest-gauche-0.7.4.1 deleted file mode 100644 index a0c114b64545..000000000000 --- a/dev-lang/gauche/files/digest-gauche-0.7.4.1 +++ /dev/null @@ -1 +0,0 @@ -MD5 21ab94ccba8bb9200b8c0a09c2b1f02e Gauche-0.7.4.1.tgz 2399260 diff --git a/dev-lang/gauche/files/digest-gauche-0.7.4.2 b/dev-lang/gauche/files/digest-gauche-0.7.4.2 deleted file mode 100644 index 0f8a50b62301..000000000000 --- a/dev-lang/gauche/files/digest-gauche-0.7.4.2 +++ /dev/null @@ -1 +0,0 @@ -MD5 2efbf8953c318f7e03dc15886588a75a Gauche-0.7.4.2.tgz 2401071 diff --git a/dev-lang/gauche/gauche-0.7.3.ebuild b/dev-lang/gauche/gauche-0.7.3.ebuild deleted file mode 100644 index f11fd7e188fd..000000000000 --- a/dev-lang/gauche/gauche-0.7.3.ebuild +++ /dev/null @@ -1,60 +0,0 @@ -# Copyright 1999-2004 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/gauche/gauche-0.7.3.ebuild,v 1.1 2004/07/11 08:56:12 hattya Exp $ - -inherit eutils flag-o-matic - -# 2003-09-06: karltk -# Original submission used the non-exisiting utf8 flag, changed to nls for now -IUSE="ipv6 nls" -HOMEPAGE="http://gauche.sf.net" -DESCRIPTION="A Unix system friendly Scheme Interpreter" -SRC_URI="mirror://sourceforge/gauche/Gauche-${PV}.tgz" -LICENSE="BSD" -KEYWORDS="x86 ~sparc" -SLOT="0" -S="${WORKDIR}/Gauche-${PV}" - -DEPEND=">=sys-libs/gdbm-1.8.0-r5" - -src_unpack() { - unpack ${A} - - cd ${S} - epatch ${FILESDIR}/${PN}-gdbm-gentoo.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 - - sed -e "67s/\$(LIB_INSTALL_DIR)/\$(DISTDIR)\$(LIB_INSTALL_DIR)/" \ - src/Makefile.in > src/Makefile.in.tmp - rm -f src/Makefile.in - mv src/Makefile.in.tmp src/Makefile.in - - strip-flags - - mycflags=${CFLAGS} - unset CFLAGS CXXFLAGS - - econf ${myconf} --enable-threads=pthreads || die - emake OPTFLAGS="${mycflags}" || die - - make -s check || die -} - -src_install () { - - make install DESTDIR=${D} || die - - dodoc AUTHORS COPYING ChangeLog HACKING INSTALL INSTALL.eucjp README -} diff --git a/dev-lang/gauche/gauche-0.7.4.1.ebuild b/dev-lang/gauche/gauche-0.7.4.1.ebuild deleted file mode 100644 index 13cea3f01c25..000000000000 --- a/dev-lang/gauche/gauche-0.7.4.1.ebuild +++ /dev/null @@ -1,64 +0,0 @@ -# Copyright 1999-2004 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/gauche/gauche-0.7.4.1.ebuild,v 1.1 2004/07/11 08:56:12 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="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 - 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 - - sed -i -e "67s/\$(LIB_INSTALL_DIR)/\$(DISTDIR)\$(LIB_INSTALL_DIR)/" src/Makefile.in - - strip-flags - - mycflags=${CFLAGS} - unset CFLAGS CXXFLAGS - - econf ${myconf} --enable-threads=pthreads || die - emake OPTFLAGS="${mycflags}" || die - - make -s check || die - -} - -src_install() { - - make DESTDIR=${D} install || die - - dodoc AUTHORS COPYING ChangeLog HACKING INSTALL INSTALL.eucjp README - -} diff --git a/dev-lang/gauche/gauche-0.7.4.2.ebuild b/dev-lang/gauche/gauche-0.7.4.2.ebuild deleted file mode 100644 index 284d121a3e19..000000000000 --- a/dev-lang/gauche/gauche-0.7.4.2.ebuild +++ /dev/null @@ -1,66 +0,0 @@ -# Copyright 1999-2004 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/gauche/gauche-0.7.4.2.ebuild,v 1.1 2004/07/11 08:56:12 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" - -RESTRICT="nomirror" -LICENSE="BSD" -KEYWORDS="x86 ~ppc" -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}-extract-1.13.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 - - sed -i -e "67s/\$(LIB_INSTALL_DIR)/\$(DISTDIR)\$(LIB_INSTALL_DIR)/" src/Makefile.in - - strip-flags - - mycflags=${CFLAGS} - unset CFLAGS CXXFLAGS - - econf ${myconf} --enable-threads=pthreads || die - emake OPTFLAGS="${mycflags}" || die - - make -s check || die - -} - -src_install() { - - make DESTDIR=${D} install || die - - dodoc AUTHORS COPYING ChangeLog HACKING INSTALL INSTALL.eucjp README - -} |