summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarijn Schouten <hkbst@gentoo.org>2009-06-04 12:32:22 +0000
committerMarijn Schouten <hkbst@gentoo.org>2009-06-04 12:32:22 +0000
commita84a1946fa2b119b9162671908b6020d86f8d33b (patch)
tree831cbac80b0a4d7752b9c662cd126f899b339d03 /dev-scheme
parentVersion bump KDE 4.2.4 (diff)
downloadgentoo-2-a84a1946fa2b119b9162671908b6020d86f8d33b.tar.gz
gentoo-2-a84a1946fa2b119b9162671908b6020d86f8d33b.tar.bz2
gentoo-2-a84a1946fa2b119b9162671908b6020d86f8d33b.zip
cleanup old versions
(Portage version: 2.1.6.13/cvs/Linux x86_64)
Diffstat (limited to 'dev-scheme')
-rw-r--r--dev-scheme/bigloo/ChangeLog7
-rw-r--r--dev-scheme/bigloo/bigloo-2.7a_p2.ebuild82
-rw-r--r--dev-scheme/bigloo/bigloo-2.9a.ebuild81
-rw-r--r--dev-scheme/bigloo/bigloo-3.0a_p2.ebuild81
-rw-r--r--dev-scheme/bigloo/bigloo-3.0b.ebuild86
-rw-r--r--dev-scheme/bigloo/bigloo-3.0b_p2.ebuild75
-rw-r--r--dev-scheme/bigloo/bigloo-3.0c.ebuild75
7 files changed, 6 insertions, 481 deletions
diff --git a/dev-scheme/bigloo/ChangeLog b/dev-scheme/bigloo/ChangeLog
index 84ca3540baec..28f268930953 100644
--- a/dev-scheme/bigloo/ChangeLog
+++ b/dev-scheme/bigloo/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for dev-scheme/bigloo
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-scheme/bigloo/ChangeLog,v 1.33 2009/06/04 12:21:37 hkbst Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-scheme/bigloo/ChangeLog,v 1.34 2009/06/04 12:32:22 hkbst Exp $
+
+ 04 Jun 2009; Marijn Schouten <hkBst@gentoo.org> -bigloo-2.7a_p2.ebuild,
+ -bigloo-2.9a.ebuild, -bigloo-3.0a_p2.ebuild, -bigloo-3.0b.ebuild,
+ -bigloo-3.0b_p2.ebuild, -bigloo-3.0c.ebuild:
+ cleanup old versions
*bigloo-3.2b_p2 (04 Jun 2009)
diff --git a/dev-scheme/bigloo/bigloo-2.7a_p2.ebuild b/dev-scheme/bigloo/bigloo-2.7a_p2.ebuild
deleted file mode 100644
index 8425da62ded8..000000000000
--- a/dev-scheme/bigloo/bigloo-2.7a_p2.ebuild
+++ /dev/null
@@ -1,82 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-scheme/bigloo/bigloo-2.7a_p2.ebuild,v 1.6 2008/08/28 17:49:25 ulm Exp $
-
-inherit elisp-common
-
-MY_P=${PN}${PV/_p/-r}
-
-DESCRIPTION="Bigloo is a Scheme implementation."
-HOMEPAGE="http://www-sop.inria.fr/mimosa/fp/Bigloo/bigloo.html"
-SRC_URI="ftp://ftp-sop.inria.fr/mimosa/fp/Bigloo/${MY_P}.tar.gz"
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="amd64 x86"
-IUSE="java emacs"
-
-DEPEND=">=sys-apps/sed-4
- emacs? ( virtual/emacs )
- java? ( virtual/jdk app-arch/zip )"
-
-S=${WORKDIR}/${MY_P}
-
-SITEFILE="50bigloo-gentoo.el"
-
-src_compile() {
- local myconf="--dotnet=no --lispdir=/usr/share/emacs/site-lisp/bigloo --tmpdir=/tmp"
- local myjava=`java-config --java`
- local myjavac=`java-config --javac`
-
- use java &&
- myconf="$myconf --jvm=force --java=$myjava --javac=$myjavac" \
- || myconf="$myconf --jvm=no"
-
- ./configure \
- --native=yes \
- --cflags="${CFLAGS} -fno-reorder-blocks" \
- --prefix=/usr \
- --infodir=/usr/share/info \
- --mandir=/usr/share/man/man1 \
- --docdir=/usr/share/doc/${PF} \
- --tmp=/tmp \
- $myconf || die "./configure failed"
-
- echo LD_LIBRARY_PATH=${S}/lib/${PV} >> Makefile.config
-
- sed -i "s/JCFLAGS=-O/JCFLAGS=/" Makefile.config || die
- sed -i "s/\$(BOOTBINDIR)\/afile jas/LD_LIBRARY_PATH=\$(LD_LIBRARY_PATH) \$(BOOTBINDIR)\/afile jas/" \
- bde/Makefile || die
-
- make || die
-
- if use emacs; then
- elisp-compile etc/*.el || die "elisp-compile failed"
- fi
-}
-
-src_install () {
- dodir /usr/bin
- dodir /usr/share/doc/${PF}
- dodir /usr/share/man/man1
- dodir /usr/share/info
-
- dodir /etc/env.d
- echo "LDPATH=/usr/lib/bigloo/${PV}/" \
- > ${D}/etc/env.d/25bigloo
- make DESTDIR=${D} install || die
-
- if use emacs; then
- elisp-install bigloo etc/*.{el,elc}
- elisp-site-file-install ${FILESDIR}/${SITEFILE}
- fi
-
-}
-
-pkg_postinst() {
- use emacs && elisp-site-regen
-}
-
-pkg_postrm() {
- use emacs && elisp-site-regen
-}
diff --git a/dev-scheme/bigloo/bigloo-2.9a.ebuild b/dev-scheme/bigloo/bigloo-2.9a.ebuild
deleted file mode 100644
index 29cc93103c87..000000000000
--- a/dev-scheme/bigloo/bigloo-2.9a.ebuild
+++ /dev/null
@@ -1,81 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-scheme/bigloo/bigloo-2.9a.ebuild,v 1.7 2008/08/28 17:49:25 ulm Exp $
-
-inherit elisp-common multilib
-
-MY_P=${PN}${PV/_p/-}
-
-DESCRIPTION="Bigloo is a Scheme implementation."
-HOMEPAGE="http://www-sop.inria.fr/mimosa/fp/Bigloo/bigloo.html"
-SRC_URI="ftp://ftp-sop.inria.fr/mimosa/fp/Bigloo/${MY_P}.tar.gz"
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="amd64 ppc x86"
-
-DEPEND="emacs? ( virtual/emacs )"
-
-S=${WORKDIR}/${MY_P%-*}
-
-SITEFILE="50bigloo-gentoo.el"
-
-IUSE="emacs"
-# fullbee"
-
-src_compile() {
- if use emacs; then
- elisp-compile etc/*.el || die "elisp-compile failed"
- fi
-
- # Bigloo doesn't use autoconf and consequently a lot of options used by econf give errors
- # Manuel Serrano says: "Please, dont talk to me about autoconf. I simply dont want to hear about it..."
- ./configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info \
- --libdir=/usr/$(get_libdir) \
- --docdir=/usr/share/doc/${PF} \
- --benchmark=yes \
- --sharedbde=no \
- --sharedcompiler=no \
- --coflags="" || die "configure failed"
-
-# --bee=$(if use fullbee; then echo full; else echo partial; fi) \
-
- # parallel build is broken
- emake -j1 || die "emake failed"
-}
-
-# "make test" does something weird so default src_test() in /usr/lib/portage/bin/ebuild.sh fails the following test
-# elif emake -j1 test -n &> /dev/null; then
-# so copy straight from default src_test() all the stuff which depends on that test passing
-src_test() {
- vecho ">>> Test phase [test]: ${CATEGORY}/${PF}"
- if ! emake -j1 test; then
- hasq test $FEATURES && die "Make test failed. See above for details."
- hasq test $FEATURES || eerror "Make test failed. See above for details."
- fi
-}
-
-src_install () {
-# dodir /etc/env.d
-# echo "LDPATH=/usr/$(get_libdir)/bigloo/${PV}/" > ${D}/etc/env.d/25bigloo
-
- # make the links created not point to DESTDIR, since that is only a temporary home
- sed 's/ln -s $(DESTDIR)/ln -s /' -i Makefile.misc
- emake DESTDIR=${D} install || die "install failed"
-
- if use emacs; then
- elisp-install ${PN} etc/*.{el,elc} || die "elisp-install failed"
- elisp-site-file-install "${FILESDIR}/${SITEFILE}"
- fi
-
-# einfo "Compiling bee..."
-# emake compile-bee || die "compiling bee failed"
-}
-
-pkg_postinst() {
- use emacs && elisp-site-regen
-}
-
-pkg_postrm() {
- use emacs && elisp-site-regen
-}
diff --git a/dev-scheme/bigloo/bigloo-3.0a_p2.ebuild b/dev-scheme/bigloo/bigloo-3.0a_p2.ebuild
deleted file mode 100644
index 142887007975..000000000000
--- a/dev-scheme/bigloo/bigloo-3.0a_p2.ebuild
+++ /dev/null
@@ -1,81 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-scheme/bigloo/bigloo-3.0a_p2.ebuild,v 1.3 2008/08/28 17:49:25 ulm Exp $
-
-inherit elisp-common multilib
-
-MY_P=${PN}${PV/_p/-}
-
-DESCRIPTION="Bigloo is a Scheme implementation."
-HOMEPAGE="http://www-sop.inria.fr/mimosa/fp/Bigloo/bigloo.html"
-SRC_URI="ftp://ftp-sop.inria.fr/mimosa/fp/Bigloo/${MY_P}.tar.gz"
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="~amd64 ~ppc ~x86"
-
-DEPEND="emacs? ( virtual/emacs )"
-
-S=${WORKDIR}/${MY_P%-*}
-
-SITEFILE="50bigloo-gentoo.el"
-
-IUSE="emacs"
-# fullbee"
-
-src_compile() {
- if use emacs; then
- elisp-compile etc/*.el || die "elisp-compile failed"
- fi
-
- # Bigloo doesn't use autoconf and consequently a lot of options used by econf give errors
- # Manuel Serrano says: "Please, dont talk to me about autoconf. I simply dont want to hear about it..."
- ./configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info \
- --libdir=/usr/$(get_libdir) \
- --docdir=/usr/share/doc/${PF} \
- --benchmark=yes \
- --sharedbde=no \
- --sharedcompiler=no \
- --coflags="" || die "configure failed"
-
-# --bee=$(if use fullbee; then echo full; else echo partial; fi) \
-
- # parallel build is broken
- emake -j1 || die "emake failed"
-}
-
-# "make test" does something weird so default src_test() in /usr/lib/portage/bin/ebuild.sh fails the following test
-# elif emake -j1 test -n &> /dev/null; then
-# so copy straight from default src_test() all the stuff which depends on that test passing
-src_test() {
- vecho ">>> Test phase [test]: ${CATEGORY}/${PF}"
- if ! emake -j1 test; then
- hasq test $FEATURES && die "Make test failed. See above for details."
- hasq test $FEATURES || eerror "Make test failed. See above for details."
- fi
-}
-
-src_install () {
-# dodir /etc/env.d
-# echo "LDPATH=/usr/$(get_libdir)/bigloo/${PV}/" > ${D}/etc/env.d/25bigloo
-
- # make the links created not point to DESTDIR, since that is only a temporary home
- sed 's/ln -s $(DESTDIR)/ln -s /' -i Makefile.misc
- emake DESTDIR=${D} install || die "install failed"
-
- if use emacs; then
- elisp-install ${PN} etc/*.{el,elc} || die "elisp-install failed"
- elisp-site-file-install "${FILESDIR}/${SITEFILE}"
- fi
-
-# einfo "Compiling bee..."
-# emake compile-bee || die "compiling bee failed"
-}
-
-pkg_postinst() {
- use emacs && elisp-site-regen
-}
-
-pkg_postrm() {
- use emacs && elisp-site-regen
-}
diff --git a/dev-scheme/bigloo/bigloo-3.0b.ebuild b/dev-scheme/bigloo/bigloo-3.0b.ebuild
deleted file mode 100644
index 0037462b8be9..000000000000
--- a/dev-scheme/bigloo/bigloo-3.0b.ebuild
+++ /dev/null
@@ -1,86 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-scheme/bigloo/bigloo-3.0b.ebuild,v 1.3 2008/08/28 17:49:25 ulm Exp $
-
-inherit elisp-common multilib
-
-MY_P=${PN}${PV/_p/-}
-
-DESCRIPTION="Bigloo is a Scheme implementation."
-HOMEPAGE="http://www-sop.inria.fr/mimosa/fp/Bigloo/bigloo.html"
-SRC_URI="ftp://ftp-sop.inria.fr/mimosa/fp/Bigloo/${MY_P}.tar.gz"
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="~amd64 ~ppc ~x86"
-
-DEPEND="emacs? ( virtual/emacs )
- java? ( virtual/jdk )"
-
-S=${WORKDIR}/${MY_P%-*}
-
-SITEFILE="50bigloo-gentoo.el"
-
-IUSE="emacs java"
-# fullbee"
-
-src_compile() {
- if use emacs; then
- elisp-compile etc/*.el || die "elisp-compile failed"
- fi
-
- # Bigloo doesn't use autoconf and consequently a lot of options used by econf give errors
- # Manuel Serrano says: "Please, dont talk to me about autoconf. I simply dont want to hear about it..."
- ./configure \
- $(use java && echo "--jvm=yes --java=$(java-config --java) --javac=$(java-config --javac)") \
- --prefix=/usr \
- --mandir=/usr/share/man \
- --infodir=/usr/share/info \
- --libdir=/usr/$(get_libdir) \
- --docdir=/usr/share/doc/${PF} \
- --benchmark=yes \
- --sharedbde=no \
- --sharedcompiler=no \
- --coflags="" || die "configure failed"
-
-# --bee=$(if use fullbee; then echo full; else echo partial; fi) \
-
- # parallel build is broken
- emake -j1 || die "emake failed"
-}
-
-# "make test" does something weird so default src_test() in /usr/lib/portage/bin/ebuild.sh fails the following test
-# elif emake -j1 test -n &> /dev/null; then
-# so copy straight from default src_test() all the stuff which depends on that test passing
-src_test() {
- vecho ">>> Test phase [test]: ${CATEGORY}/${PF}"
- if ! emake -j1 test; then
- hasq test $FEATURES && die "Make test failed. See above for details."
- hasq test $FEATURES || eerror "Make test failed. See above for details."
- fi
-}
-
-src_install () {
-# dodir /etc/env.d
-# echo "LDPATH=/usr/$(get_libdir)/bigloo/${PV}/" > ${D}/etc/env.d/25bigloo
-
- # make the links created not point to DESTDIR, since that is only a temporary home
- sed 's/ln -s $(DESTDIR)/ln -s /' -i Makefile.misc
- emake -j1 DESTDIR=${D} install || die "install failed"
-
- if use emacs; then
- elisp-install ${PN} etc/*.{el,elc} || die "elisp-install failed"
- elisp-site-file-install "${FILESDIR}/${SITEFILE}"
- fi
-
-# einfo "Compiling bee..."
-# emake compile-bee || die "compiling bee failed"
-}
-
-pkg_postinst() {
- use emacs && elisp-site-regen
-}
-
-pkg_postrm() {
- use emacs && elisp-site-regen
-}
diff --git a/dev-scheme/bigloo/bigloo-3.0b_p2.ebuild b/dev-scheme/bigloo/bigloo-3.0b_p2.ebuild
deleted file mode 100644
index 6bb34319dad8..000000000000
--- a/dev-scheme/bigloo/bigloo-3.0b_p2.ebuild
+++ /dev/null
@@ -1,75 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-scheme/bigloo/bigloo-3.0b_p2.ebuild,v 1.3 2008/08/28 17:49:25 ulm Exp $
-
-inherit elisp-common multilib
-
-MY_P=${PN}${PV/_p/-}
-
-DESCRIPTION="Bigloo is a Scheme implementation."
-HOMEPAGE="http://www-sop.inria.fr/mimosa/fp/Bigloo/bigloo.html"
-SRC_URI="ftp://ftp-sop.inria.fr/mimosa/fp/Bigloo/${MY_P}.tar.gz"
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="~amd64 ~ppc ~x86"
-
-DEPEND="emacs? ( virtual/emacs )
- java? ( virtual/jdk )"
-
-S=${WORKDIR}/${MY_P%-*}
-
-SITEFILE="50bigloo-gentoo.el"
-
-IUSE="emacs java"
-# fullbee"
-
-src_compile() {
- if use emacs; then
- elisp-compile etc/*.el || die "elisp-compile failed"
- fi
-
- # Bigloo doesn't use autoconf and consequently a lot of options used by econf give errors
- # Manuel Serrano says: "Please, dont talk to me about autoconf. I simply dont want to hear about it..."
- ./configure \
- $(use java && echo "--jvm=yes --java=$(java-config --java) --javac=$(java-config --javac)") \
- --prefix=/usr \
- --mandir=/usr/share/man \
- --infodir=/usr/share/info \
- --libdir=/usr/$(get_libdir) \
- --docdir=/usr/share/doc/${PF} \
- --benchmark=yes \
- --sharedbde=no \
- --sharedcompiler=no \
- --coflags="" || die "configure failed"
-
-# --bee=$(if use fullbee; then echo full; else echo partial; fi) \
-
- # parallel build is broken
- emake -j1 || die "emake failed"
-}
-
-src_install () {
-# dodir /etc/env.d
-# echo "LDPATH=/usr/$(get_libdir)/bigloo/${PV}/" > ${D}/etc/env.d/25bigloo
-
- # make the links created not point to DESTDIR, since that is only a temporary home
- sed 's/ln -s $(DESTDIR)/ln -s /' -i Makefile.misc
- emake -j1 DESTDIR="${D}" install || die "install failed"
-
- if use emacs; then
- elisp-install ${PN} etc/*.{el,elc} || die "elisp-install failed"
- elisp-site-file-install "${FILESDIR}/${SITEFILE}"
- fi
-
-# einfo "Compiling bee..."
-# emake compile-bee || die "compiling bee failed"
-}
-
-pkg_postinst() {
- use emacs && elisp-site-regen
-}
-
-pkg_postrm() {
- use emacs && elisp-site-regen
-}
diff --git a/dev-scheme/bigloo/bigloo-3.0c.ebuild b/dev-scheme/bigloo/bigloo-3.0c.ebuild
deleted file mode 100644
index f3a25f5ac660..000000000000
--- a/dev-scheme/bigloo/bigloo-3.0c.ebuild
+++ /dev/null
@@ -1,75 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-scheme/bigloo/bigloo-3.0c.ebuild,v 1.2 2008/08/28 17:49:25 ulm Exp $
-
-inherit elisp-common multilib
-
-MY_P=${PN}${PV/_p/-}
-
-DESCRIPTION="Bigloo is a Scheme implementation."
-HOMEPAGE="http://www-sop.inria.fr/mimosa/fp/Bigloo/bigloo.html"
-SRC_URI="ftp://ftp-sop.inria.fr/mimosa/fp/Bigloo/${MY_P}.tar.gz"
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="~amd64 ~ppc ~x86"
-
-DEPEND="emacs? ( virtual/emacs )
- java? ( virtual/jdk )"
-
-S=${WORKDIR}/${MY_P%-*}
-
-SITEFILE="50bigloo-gentoo.el"
-
-IUSE="emacs java"
-# fullbee"
-
-src_compile() {
- if use emacs; then
- elisp-compile etc/*.el || die "elisp-compile failed"
- fi
-
- # Bigloo doesn't use autoconf and consequently a lot of options used by econf give errors
- # Manuel Serrano says: "Please, dont talk to me about autoconf. I simply dont want to hear about it..."
- ./configure \
- $(use java && echo "--jvm=yes --java=$(java-config --java) --javac=$(java-config --javac)") \
- --prefix=/usr \
- --mandir=/usr/share/man \
- --infodir=/usr/share/info \
- --libdir=/usr/$(get_libdir) \
- --docdir=/usr/share/doc/${PF} \
- --benchmark=yes \
- --sharedbde=no \
- --sharedcompiler=no \
- --coflags="" || die "configure failed"
-
-# --bee=$(if use fullbee; then echo full; else echo partial; fi) \
-
- # parallel build is broken
- emake -j1 || die "emake failed"
-}
-
-src_install () {
-# dodir /etc/env.d
-# echo "LDPATH=/usr/$(get_libdir)/bigloo/${PV}/" > ${D}/etc/env.d/25bigloo
-
- # make the links created not point to DESTDIR, since that is only a temporary home
- sed 's/ln -s $(DESTDIR)/ln -s /' -i Makefile.misc
- emake -j1 DESTDIR="${D}" install || die "install failed"
-
- if use emacs; then
- elisp-install ${PN} etc/*.{el,elc} || die "elisp-install failed"
- elisp-site-file-install "${FILESDIR}/${SITEFILE}"
- fi
-
-# einfo "Compiling bee..."
-# emake compile-bee || die "compiling bee failed"
-}
-
-pkg_postinst() {
- use emacs && elisp-site-regen
-}
-
-pkg_postrm() {
- use emacs && elisp-site-regen
-}