diff options
-rw-r--r-- | app-shells/psh/ChangeLog | 8 | ||||
-rw-r--r-- | app-shells/psh/psh-0.009-r2.ebuild | 14 |
2 files changed, 13 insertions, 9 deletions
diff --git a/app-shells/psh/ChangeLog b/app-shells/psh/ChangeLog index 9552b515a84c..2e6fa5210aab 100644 --- a/app-shells/psh/ChangeLog +++ b/app-shells/psh/ChangeLog @@ -1,8 +1,14 @@ # ChangeLog for app-shells/psh # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/app-shells/psh/ChangeLog,v 1.2 2002/07/08 15:50:20 aliz Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/psh/ChangeLog,v 1.3 2002/07/29 03:46:35 cselkirk Exp $ *psh-0.009-r2 (8 Jul 2002) + + 28 Jul 2002; Calum Selkirk <cselkirk@gentoo.org> psh-0.009-r2.ebuild : + + Added ppc to KEYWORDS. + Fixed illegal space characters. + Fixed date in header. 8 Jul 2002; Daniel Ahlberg <aliz@gentoo.org> psh-0.009-r2.ebuild files/digest-psh-0.009-r2: diff --git a/app-shells/psh/psh-0.009-r2.ebuild b/app-shells/psh/psh-0.009-r2.ebuild index 3aaef0aa46d3..a999dd6c4656 100644 --- a/app-shells/psh/psh-0.009-r2.ebuild +++ b/app-shells/psh/psh-0.009-r2.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2000 Gentoo Technologies, Inc. +# Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/app-shells/psh/psh-0.009-r2.ebuild,v 1.1 2002/07/08 15:50:20 aliz Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/psh/psh-0.009-r2.ebuild,v 1.2 2002/07/29 03:46:35 cselkirk Exp $ S=${WORKDIR}/${P} DESCRIPTION="Combines the interactive nature of a Unix shell with the power of Perl" @@ -8,9 +8,10 @@ SRC_URI="http://www.focusresearch.com/gregor/psh/${P}.tar.gz" HOMEPAGE="http://www.focusresearch.com/gregor/psh/" LICENSE="Artistic | GPL-2" SLOT="0" -KEYWORDS="x86" +KEYWORDS="x86 ppc" DEPEND=">=sys-devel/perl-5" +RDEPEND="${DEPEND}" src_compile() { perl Makefile.PL @@ -19,11 +20,8 @@ src_compile() { } src_install() { - make PREFIX=${D}/usr \ - prefix=${D}/usr \ - INSTALLMAN3DIR=${D}/usr/share/man/man3 \ - INSTALLMAN1DIR=${D}/usr/share/man/man1 \ - install || die + make PREFIX=${D}/usr prefix=${D}/usr INSTALLMAN3DIR=${D}/usr/share/man/man3 \ + INSTALLMAN1DIR=${D}/usr/share/man/man1 install || die dodoc COPYRIGHT HACKING MANIFEST README* RELEASE TODO dodoc examples/complete-examples |