summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Robbins <drobbins@gentoo.org>2001-11-24 18:36:40 +0000
committerDaniel Robbins <drobbins@gentoo.org>2001-11-24 18:36:40 +0000
commit3ec1943ac323edaba9f8cf2b97be83ec10da4b31 (patch)
tree9b058c2648745aaeccdb42395675625e086c8e24 /sys-apps/texinfo
parentinfo message (diff)
downloadhistorical-3ec1943ac323edaba9f8cf2b97be83ec10da4b31.tar.gz
historical-3ec1943ac323edaba9f8cf2b97be83ec10da4b31.tar.bz2
historical-3ec1943ac323edaba9f8cf2b97be83ec10da4b31.zip
removed the ultra-slow gatekeeper.dec.com GNU mirror.
Diffstat (limited to 'sys-apps/texinfo')
-rw-r--r--sys-apps/texinfo/texinfo-4.0-r2.ebuild53
-rw-r--r--sys-apps/texinfo/texinfo-4.0-r3.ebuild69
-rw-r--r--sys-apps/texinfo/texinfo-4.0c.ebuild57
3 files changed, 0 insertions, 179 deletions
diff --git a/sys-apps/texinfo/texinfo-4.0-r2.ebuild b/sys-apps/texinfo/texinfo-4.0-r2.ebuild
deleted file mode 100644
index 3a8cd9fe2035..000000000000
--- a/sys-apps/texinfo/texinfo-4.0-r2.ebuild
+++ /dev/null
@@ -1,53 +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/sys-apps/texinfo/texinfo-4.0-r2.ebuild,v 1.3 2001/05/28 05:24:13 achim Exp $
-
-A=${P}.tar.gz
-S=${WORKDIR}/${P}
-DESCRIPTION="The GNU info program and utilities"
-SRC_URI="ftp://gatekeeper.dec.com/pub/GNU/texinfo/${A}
- ftp://ftp.gnu.org/pub/gnu/texinfo/${A}"
-
-DEPEND="virtual/glibc >=sys-libs/ncurses-5.2-r2
- nls? ( sys-devel/gettext )"
-
-RDEPEND="virtual/glibc >=sys-libs/ncurses-5.2-r2"
-
-src_compile() {
- local myconf
- if [ -z "`use nls`" ]
- then
- myconf="--disable-nls"
- fi
- try ./configure --host=${CHOST} --prefix=/usr ${myconf} \
- --mandir=/usr/share/man --infodir=/usr/share/info
- try make ${MAKEOPTS}
-}
-
-src_install() {
-
- try make DESTDIR=${D} infodir=${D}/usr/share/info install
- exeinto /usr/sbin
- doexe ${FILESDIR}/mkinfodir
-
- cd ${D}/usr/share/info
- mv texinfo texinfo.info
- for i in texinfo-*
- do
- mv ${i} texinfo.info-${i#texinfo-*}
- done
-
- cd ${S}
- dodoc AUTHORS ChangeLog COPYING INTRODUCTION NEWS README TODO
- docinto info
- dodoc info/README
- docinto makeinfo
- dodoc makeinfo/README
-}
-
-
-
-
-
-
diff --git a/sys-apps/texinfo/texinfo-4.0-r3.ebuild b/sys-apps/texinfo/texinfo-4.0-r3.ebuild
deleted file mode 100644
index 2474123277bc..000000000000
--- a/sys-apps/texinfo/texinfo-4.0-r3.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2001 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License, v2 or later
-# Maintainer: System Team <system@gentoo.org>
-# Author: Achim Gottinger <achim@gentoo.org>, Daniel Robbins <drobbins@gentoo.org>
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/texinfo/texinfo-4.0-r3.ebuild,v 1.3 2001/09/01 07:56:16 drobbins Exp $
-
-A=${P}.tar.gz
-S=${WORKDIR}/${P}
-DESCRIPTION="The GNU info program and utilities"
-SRC_URI="ftp://gatekeeper.dec.com/pub/GNU/texinfo/${A}
- ftp://ftp.gnu.org/pub/gnu/texinfo/${A}"
-
-if [ "`use build`" ] ; then
- DEPEND="virtual/glibc"
-else
- DEPEND="virtual/glibc >=sys-libs/ncurses-5.2-r2 nls? ( sys-devel/gettext )"
- RDEPEND="virtual/glibc >=sys-libs/ncurses-5.2-r2"
-fi
-
-src_unpack() {
- unpack ${A}
- if [ "`use build`" ] ; then
- cd ${S}
- patch -p0 < ${FILESDIR}/${PF}-no-ncurses-gentoo.diff
- touch *
- fi
-}
-
-src_compile() {
- local myconf
- if [ -z "`use nls`" ] || [ "`use build`" ] ; then
- myconf="--disable-nls"
- fi
- try ./configure --host=${CHOST} --prefix=/usr ${myconf} \
- --mandir=/usr/share/man --infodir=/usr/share/info
- try make ${MAKEOPTS}
-}
-
-src_install() {
-
- if [ "`use build`" ] ; then
- dobin makeinfo/makeinfo util/{install-info,texi2dvi,texindex}
- else
- try make DESTDIR=${D} infodir=${D}/usr/share/info install
- exeinto /usr/sbin
- doexe ${FILESDIR}/mkinfodir
-
- cd ${D}/usr/share/info
- mv texinfo texinfo.info
- for i in texinfo-*
- do
- mv ${i} texinfo.info-${i#texinfo-*}
- done
-
- cd ${S}
-
- dodoc AUTHORS ChangeLog COPYING INTRODUCTION NEWS README TODO
- docinto info
- dodoc info/README
- docinto makeinfo
- dodoc makeinfo/README
- fi
-}
-
-
-
-
-
-
diff --git a/sys-apps/texinfo/texinfo-4.0c.ebuild b/sys-apps/texinfo/texinfo-4.0c.ebuild
deleted file mode 100644
index be16ab433bb6..000000000000
--- a/sys-apps/texinfo/texinfo-4.0c.ebuild
+++ /dev/null
@@ -1,57 +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/sys-apps/texinfo/texinfo-4.0c.ebuild,v 1.1 2001/06/19 00:58:19 achim Exp $
-
-A=${P}.tar.gz
-S=${WORKDIR}/${P}
-DESCRIPTION="The GNU info program and utilities"
-SRC_URI="ftp://alpha.gnu.org/pub/gnu/${A}"
-
-DEPEND="virtual/glibc >=sys-libs/ncurses-5.2-r2
- nls? ( sys-devel/gettext )"
-
-RDEPEND="virtual/glibc >=sys-libs/ncurses-5.2-r4"
-src_unpack() {
- unpack ${A}
- cd ${S}
- patch -p0 < ${FILESDIR}/${PN}-4.0-gentoo.diff
-}
-
-src_compile() {
- local myconf
- if [ -z "`use nls`" ]
- then
- myconf="--disable-nls"
- fi
- try ./configure --host=${CHOST} --prefix=/usr ${myconf} \
- --mandir=/usr/share/man --infodir=/usr/share/info
- try make ${MAKEOPTS}
-}
-
-src_install() {
-
- try make DESTDIR=${D} infodir=${D}/usr/share/info install
- exeinto /usr/sbin
- doexe ${FILESDIR}/mkinfodir
-
- cd ${D}/usr/share/info
- mv texinfo texinfo.info
- for i in texinfo-*
- do
- mv ${i} texinfo.info-${i#texinfo-*}
- done
-
- cd ${S}
- dodoc AUTHORS ChangeLog COPYING INTRODUCTION NEWS README TODO
- docinto info
- dodoc info/README
- docinto makeinfo
- dodoc makeinfo/README
-}
-
-
-
-
-
-