diff options
author | Daniel Robbins <drobbins@gentoo.org> | 2001-01-09 21:36:16 +0000 |
---|---|---|
committer | Daniel Robbins <drobbins@gentoo.org> | 2001-01-09 21:36:16 +0000 |
commit | c6f174f20e0a3fcd8852266261f886eb9caafa89 (patch) | |
tree | ad93a76c8717edf5885f5bc747b6d79fb5af16df | |
parent | depreciated (diff) | |
download | historical-c6f174f20e0a3fcd8852266261f886eb9caafa89.tar.gz historical-c6f174f20e0a3fcd8852266261f886eb9caafa89.tar.bz2 historical-c6f174f20e0a3fcd8852266261f886eb9caafa89.zip |
depreciated
-rw-r--r-- | dev-libs/gmp/gmp-3.1.ebuild | 39 | ||||
-rw-r--r-- | dev-libs/librep/librep-0.13.2.ebuild | 41 | ||||
-rw-r--r-- | dev-libs/rep-gtk/rep-gtk-0.14.ebuild | 42 |
3 files changed, 0 insertions, 122 deletions
diff --git a/dev-libs/gmp/gmp-3.1.ebuild b/dev-libs/gmp/gmp-3.1.ebuild deleted file mode 100644 index d900cb1912b4..000000000000 --- a/dev-libs/gmp/gmp-3.1.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2000 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# Author Achim Gottinger <achim@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/dev-libs/gmp/gmp-3.1.ebuild,v 1.5 2000/11/02 08:31:51 achim Exp $ - -A=${P}.tar.gz -S=${WORKDIR}/${P} -DESCRIPTION="Library for arithmetic on arbitrary precision integers, rational numbers, and floating-point numbers" -SRC_URI="ftp://gatekeeper.dec.com/pub/GNU/gmp/${A} - ftp://prep.ai.mit.edu/gnu/gmp/${A}" -HOMEPAGE="http://www.gnu.org/software/gmp/gmp.html" -DEPEND=">=sys-libs/glibc-2.1.3" - -src_unpack() { - unpack ${A} -} - -src_compile() { - cd ${S} - try ./configure --prefix=/usr --host=${CHOST} \ - --enable-mpfr --enable-mpbsd - try make -} - -src_install() { - cd ${S} - try make prefix=${D}/usr install - prepinfo - dodoc AUTHORS ChangeLog COPYING* NEWS README - dodoc doc/assembly_code doc/configuration - dodoc doc/isa_abi_headache doc/multiplication - docinto html - dodoc doc/*.html -} - - - - - diff --git a/dev-libs/librep/librep-0.13.2.ebuild b/dev-libs/librep/librep-0.13.2.ebuild deleted file mode 100644 index ba8fadcc75ef..000000000000 --- a/dev-libs/librep/librep-0.13.2.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2000 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# Author Achim Gottinger <achim@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/dev-libs/librep/librep-0.13.2.ebuild,v 1.1 2000/11/26 20:54:17 achim Exp $ - -A=${P}.tar.gz -S=${WORKDIR}/${P} -DESCRIPTION="Share library implementing a Lisp dialect" -SRC_URI="ftp://librep.sourceforge.net/pub/librep/"${A} -HOMEPAGE="http://librep.sourceforge.net/" - -DEPEND=">=sys-apps/bash-2.04 - >=sys-libs/gdbm-1.8.0 - >=sys-libs/glibc-2.1.3 - >=sys-libs/gpm-1.19.3 - >=sys-libs/ncurses-5.1 - >=dev-libs/gmp-3.1" - -src_unpack() { - unpack ${A} -} - -src_compile() { - cd ${S} - try ./configure --host=${CHOST} --prefix=/usr - try make -} - -src_install() { - cd ${S} - try make prefix=${D}/usr aclocaldir=/${D}/usr/share/aclocal install - prepinfo - insinto /usr/include - doins src/rep_config.h - dodoc AUTHORS BUGS COPYING ChangeLog NEWS README THANKS TODO DOC - docinto doc - dodoc doc/* -} - - - diff --git a/dev-libs/rep-gtk/rep-gtk-0.14.ebuild b/dev-libs/rep-gtk/rep-gtk-0.14.ebuild deleted file mode 100644 index 8c477e958305..000000000000 --- a/dev-libs/rep-gtk/rep-gtk-0.14.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2000 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# Author Achim Gottinger <achim@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/dev-libs/rep-gtk/rep-gtk-0.14.ebuild,v 1.3 2000/11/05 14:42:17 achim Exp $ - -A=${P}.tar.gz -S=${WORKDIR}/${P} -DESCRIPTION="GTK/GDK bindings for the librep Lisp environment" -SRC_URI="ftp://rep-gtk.sourceforge.net/pub/rep-gtk/"${A} -HOMEPAGE="http://rep-gtk.sourceforge.net/" - -DEPEND=" - >=x11-libs/gtk+-1.2.8 - >=dev-libs/librep-0.13.1 - gnome? ( >=gnome-base/libglade-0.14 - >=gnome-base/gdk-pixbuf-0.9.0 )" -src_unpack() { - unpack ${A} -} - -src_compile() { - cd ${S} - if [ -n "`use gnome`" ] - then - try ./configure --host=${CHOST} --with-gnome --with-libglade - else - try ./configure --host=${CHOST} --without-gnome --without-libglade \ - --without-gdk-pixbuf --without-gnome-canvas-pixbuf - fi - try make -} - -src_install() { - cd ${S} - try make DESTDIR=${D} install - dodoc AUTHORS BUGS COPYING ChangeLog README* TODO - docinto examples - dodoc examples/* -} - - - |