diff options
author | Mikael Hallendal <hallski@gentoo.org> | 2001-11-10 00:11:50 +0000 |
---|---|---|
committer | Mikael Hallendal <hallski@gentoo.org> | 2001-11-10 00:11:50 +0000 |
commit | 9e92aab271eac5cd916c430023b527287566e567 (patch) | |
tree | fda855f47ffcbea3037d2cc84f7ecee197eb3827 /app-shells/psh | |
parent | -fix, try->die etc... (diff) | |
download | gentoo-2-9e92aab271eac5cd916c430023b527287566e567.tar.gz gentoo-2-9e92aab271eac5cd916c430023b527287566e567.tar.bz2 gentoo-2-9e92aab271eac5cd916c430023b527287566e567.zip |
-fixed, etc...
Diffstat (limited to 'app-shells/psh')
-rw-r--r-- | app-shells/psh/files/digest-psh-0.009-r1 (renamed from app-shells/psh/files/digest-psh-0.009) | 0 | ||||
-rw-r--r-- | app-shells/psh/psh-0.009-r1.ebuild (renamed from app-shells/psh/psh-0.009.ebuild) | 15 |
2 files changed, 9 insertions, 6 deletions
diff --git a/app-shells/psh/files/digest-psh-0.009 b/app-shells/psh/files/digest-psh-0.009-r1 index 7bdeb0f2d69b..7bdeb0f2d69b 100644 --- a/app-shells/psh/files/digest-psh-0.009 +++ b/app-shells/psh/files/digest-psh-0.009-r1 diff --git a/app-shells/psh/psh-0.009.ebuild b/app-shells/psh/psh-0.009-r1.ebuild index e45b6d97ecf5..0dddeb1e05f2 100644 --- a/app-shells/psh/psh-0.009.ebuild +++ b/app-shells/psh/psh-0.009-r1.ebuild @@ -1,24 +1,27 @@ # 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/app-shells/psh/psh-0.009.ebuild,v 1.1 2001/04/13 13:21:31 achim Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/psh/psh-0.009-r1.ebuild,v 1.1 2001/11/10 00:11:50 hallski Exp $ -A=${P}.tar.gz S=${WORKDIR}/${P} DESCRIPTION="Combines the interactive nature of a Unix shell with the power of Perl" -SRC_URI="http://www.focusresearch.com/gregor/psh/${A}" +SRC_URI="http://www.focusresearch.com/gregor/psh/${P}.tar.gz" HOMEPAGE="http://www.focusresearch.com/gregor/psh/" DEPEND=">=sys-devel/perl-5" src_compile() { - perl Makefile.PL - try make + + make || die } src_install() { - make PREFIX=${D}/usr prefix=${D}/usr INSTALLMAN3DIR=${D}/usr/share/man/man3 install + make PREFIX=${D}/usr \ + prefix=${D}/usr \ + INSTALLMAN3DIR=${D}/usr/share/man/man3 \ + install || die + dodoc COPYRIGHT HACKING MANIFEST README* RELEASE TODO dodoc examples/complete-examples } |