diff options
author | Mikael Hallendal <hallski@gentoo.org> | 2001-11-10 00:08:06 +0000 |
---|---|---|
committer | Mikael Hallendal <hallski@gentoo.org> | 2001-11-10 00:08:06 +0000 |
commit | 884533010d295162855d8eb30f5c82698e041fbe (patch) | |
tree | 594ad1f0e9f5a8029a448fbc60a90ec65a206e37 /dev-util/shtool | |
parent | fixed so that it doesn't install outside of (diff) | |
download | gentoo-2-884533010d295162855d8eb30f5c82698e041fbe.tar.gz gentoo-2-884533010d295162855d8eb30f5c82698e041fbe.tar.bz2 gentoo-2-884533010d295162855d8eb30f5c82698e041fbe.zip |
-fix, try->die etc...
Diffstat (limited to 'dev-util/shtool')
-rw-r--r-- | dev-util/shtool/files/digest-shtool-1.5.1-r2 (renamed from dev-util/shtool/files/digest-shtool-1.5.1-r1) | 0 | ||||
-rw-r--r-- | dev-util/shtool/shtool-1.5.1-r2.ebuild (renamed from dev-util/shtool/shtool-1.5.1-r1.ebuild) | 24 |
2 files changed, 13 insertions, 11 deletions
diff --git a/dev-util/shtool/files/digest-shtool-1.5.1-r1 b/dev-util/shtool/files/digest-shtool-1.5.1-r2 index 561e1804eb47..561e1804eb47 100644 --- a/dev-util/shtool/files/digest-shtool-1.5.1-r1 +++ b/dev-util/shtool/files/digest-shtool-1.5.1-r2 diff --git a/dev-util/shtool/shtool-1.5.1-r1.ebuild b/dev-util/shtool/shtool-1.5.1-r2.ebuild index aea9c0118abb..9b397d749aba 100644 --- a/dev-util/shtool/shtool-1.5.1-r1.ebuild +++ b/dev-util/shtool/shtool-1.5.1-r2.ebuild @@ -1,28 +1,30 @@ # 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-util/shtool/shtool-1.5.1-r1.ebuild,v 1.4 2001/06/24 02:20:30 achim Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/shtool/shtool-1.5.1-r2.ebuild,v 1.1 2001/11/10 00:08:06 hallski Exp $ -A=shtool-1.5.1.tar.gz -S=${WORKDIR}/shtool-1.5.1 +S=${WORKDIR}/${P} DESCRIPTION="A compilation of small but very stable and portable shell scripts into a single shell tool" -SRC_URI="ftp://gatekeeper.dec.com/pub/GNU/shtool/${A} - ftp://ftp.gnu.org/gnu/shtool/${A}" +SRC_URI="ftp://gatekeeper.dec.com/pub/GNU/shtool/${P}.tar.gz + ftp://ftp.gnu.org/gnu/shtool/${P}.tar.gz" HOMEPAGE="http://www.gnu.org/software/shtool/shtool.html" DEPEND=">=sys-devel/perl-5.6" - src_compile() { + ./configure --host=${CHOST} \ + --prefix=/usr \ + --mandir=/usr/share/man + assert - try ./configure --prefix=/usr --mandir=/usr/share/man --host=${CHOST} - try pmake - + emake || die } src_install () { + make prefix=${D}/usr \ + mandir=${D}/usr/share/man \ + install || die - try make prefix=${D}/usr mandir=${D}/usr/share/man install - dodoc AUTHORS ChangeLog COPYING README THANKS VERSION + dodoc AUTHORS ChangeLog COPYING README THANKS VERSION } |