diff options
author | Akinori Hattori <hattya@gentoo.org> | 2004-02-21 14:49:37 +0000 |
---|---|---|
committer | Akinori Hattori <hattya@gentoo.org> | 2004-02-21 14:49:37 +0000 |
commit | 2af848266a2e253d57021de4a60d5365717c08ca (patch) | |
tree | c2713e7987453689f289ca027c402c9a00d0f996 /dev-lisp | |
parent | fixed bug #42233. marked stable on x86. (Manifest recommit) (diff) | |
download | gentoo-2-2af848266a2e253d57021de4a60d5365717c08ca.tar.gz gentoo-2-2af848266a2e253d57021de4a60d5365717c08ca.tar.bz2 gentoo-2-2af848266a2e253d57021de4a60d5365717c08ca.zip |
cleaned out old ebuilds.
Diffstat (limited to 'dev-lisp')
-rw-r--r-- | dev-lisp/gauche/ChangeLog | 6 | ||||
-rw-r--r-- | dev-lisp/gauche/files/digest-gauche-0.7.1 | 1 | ||||
-rw-r--r-- | dev-lisp/gauche/files/digest-gauche-0.7.2 | 1 | ||||
-rw-r--r-- | dev-lisp/gauche/gauche-0.7.1.ebuild | 49 | ||||
-rw-r--r-- | dev-lisp/gauche/gauche-0.7.2.ebuild | 60 |
5 files changed, 5 insertions, 112 deletions
diff --git a/dev-lisp/gauche/ChangeLog b/dev-lisp/gauche/ChangeLog index 7cd454e52d42..7d0b50d4ad49 100644 --- a/dev-lisp/gauche/ChangeLog +++ b/dev-lisp/gauche/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-lisp/gauche # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lisp/gauche/ChangeLog,v 1.16 2004/02/21 14:46:14 hattya Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lisp/gauche/ChangeLog,v 1.17 2004/02/21 14:49:37 hattya Exp $ + + 21 Feb 2004; Akinori Hattori <hattya@gentoo.org> gauche-0.7.1.ebuild, + gauche-0.7.2.ebuild: + cleaned out old ebuilds. 21 Feb 2004; Akinori Hattori <hattya@gentoo.org> gauche-0.7.4.1.ebuild: fixed bug #42233. marked stable on x86. diff --git a/dev-lisp/gauche/files/digest-gauche-0.7.1 b/dev-lisp/gauche/files/digest-gauche-0.7.1 deleted file mode 100644 index fe4f6421cccb..000000000000 --- a/dev-lisp/gauche/files/digest-gauche-0.7.1 +++ /dev/null @@ -1 +0,0 @@ -MD5 f07345c81f2434516cc175cebde77901 Gauche-0.7.1.tgz 2219061 diff --git a/dev-lisp/gauche/files/digest-gauche-0.7.2 b/dev-lisp/gauche/files/digest-gauche-0.7.2 deleted file mode 100644 index 1d129a10f105..000000000000 --- a/dev-lisp/gauche/files/digest-gauche-0.7.2 +++ /dev/null @@ -1 +0,0 @@ -MD5 20508314791c0897e088f90d7cba0d3b Gauche-0.7.2.tgz 2264767 diff --git a/dev-lisp/gauche/gauche-0.7.1.ebuild b/dev-lisp/gauche/gauche-0.7.1.ebuild deleted file mode 100644 index 2049f98d9da7..000000000000 --- a/dev-lisp/gauche/gauche-0.7.1.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2004 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lisp/gauche/gauche-0.7.1.ebuild,v 1.5 2004/02/04 13:24:03 hattya Exp $ - -inherit 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_compile() { - local myconf - - 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 - - filter-flags -fforce-addr - - CFLAGS="" CXXFLAGS="" econf $myconf --enable-threads=pthreads - emake OPTFLAGS="$CFLAGS" || die - - make check || die -} - -src_install () { -# einstall - make install DESTDIR=${D} || die - - dodoc AUTHORS COPYING ChangeLog HACKING INSTALL INSTALL.eucjp README -} diff --git a/dev-lisp/gauche/gauche-0.7.2.ebuild b/dev-lisp/gauche/gauche-0.7.2.ebuild deleted file mode 100644 index bb8973f3e889..000000000000 --- a/dev-lisp/gauche/gauche-0.7.2.ebuild +++ /dev/null @@ -1,60 +0,0 @@ -# Copyright 1999-2004 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lisp/gauche/gauche-0.7.2.ebuild,v 1.4 2004/02/04 13:24:03 hattya Exp $ - -inherit 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 - - filter-flags -fforce-addr - - 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 -} |