diff options
author | Achim Gottinger <achim@gentoo.org> | 2000-11-30 23:14:35 +0000 |
---|---|---|
committer | Achim Gottinger <achim@gentoo.org> | 2000-11-30 23:14:35 +0000 |
commit | 65ff9109d975303a292ac9e7acd38261c91079cc (patch) | |
tree | 984b1519ba60a35ae6d27439329dcf5b4f984668 /sys-apps/texinfo | |
parent | Prepared for rc3 (diff) | |
download | historical-65ff9109d975303a292ac9e7acd38261c91079cc.tar.gz historical-65ff9109d975303a292ac9e7acd38261c91079cc.tar.bz2 historical-65ff9109d975303a292ac9e7acd38261c91079cc.zip |
Prepared for rc3
Diffstat (limited to 'sys-apps/texinfo')
-rw-r--r-- | sys-apps/texinfo/texinfo-4.0-r1.ebuild | 26 |
1 files changed, 19 insertions, 7 deletions
diff --git a/sys-apps/texinfo/texinfo-4.0-r1.ebuild b/sys-apps/texinfo/texinfo-4.0-r1.ebuild index 4bc3581d2f65..338cbff855b5 100644 --- a/sys-apps/texinfo/texinfo-4.0-r1.ebuild +++ b/sys-apps/texinfo/texinfo-4.0-r1.ebuild @@ -1,7 +1,7 @@ # 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-r1.ebuild,v 1.4 2000/10/03 16:02:06 achim Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/texinfo/texinfo-4.0-r1.ebuild,v 1.5 2000/11/30 23:14:35 achim Exp $ P=texinfo-4.0 A=${P}.tar.gz @@ -9,19 +9,31 @@ 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=">=sys-libs/gpm-1.19.3" +RDEPEND="$DEPEND + >=sys-apps/bash-2.04" src_compile() { - try ./configure --host=${CHOST} --prefix=/usr --with-catgets - try make + try ./configure --host=${CHOST} --prefix=/usr + try make ${MAKEOPTS} } src_install() { cd ${S} - try make prefix=${D}/usr install - prepman - prepinfo + try make DESTDIR=${D} infodir=${D}/usr/info install cp ${O}/files/mkinfodir ${D}/usr/bin - dodoc AUTHORS COPYING INTRODUCTION NEWS README TODO + cd ${D}/usr/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 } |