diff options
author | Achim Gottinger <achim@gentoo.org> | 2000-08-07 12:47:39 +0000 |
---|---|---|
committer | Achim Gottinger <achim@gentoo.org> | 2000-08-07 12:47:39 +0000 |
commit | 73235bf16bb20c1255640ff71afec1d58f846085 (patch) | |
tree | 52e092f05e4631bf01dff8c98a11dc9a479fdf61 /app-shells/psh | |
parent | *** empty log message *** (diff) | |
download | gentoo-2-73235bf16bb20c1255640ff71afec1d58f846085.tar.gz gentoo-2-73235bf16bb20c1255640ff71afec1d58f846085.tar.bz2 gentoo-2-73235bf16bb20c1255640ff71afec1d58f846085.zip |
*** empty log message ***
Diffstat (limited to 'app-shells/psh')
-rw-r--r-- | app-shells/psh/files/digest | 1 | ||||
-rw-r--r-- | app-shells/psh/psh-0.008-r1.ebuild | 33 |
2 files changed, 34 insertions, 0 deletions
diff --git a/app-shells/psh/files/digest b/app-shells/psh/files/digest new file mode 100644 index 000000000000..731787034eee --- /dev/null +++ b/app-shells/psh/files/digest @@ -0,0 +1 @@ +MD5 8a37eeb6afb9b9fedc24cc29fbac6973 psh-0.008.tar.gz diff --git a/app-shells/psh/psh-0.008-r1.ebuild b/app-shells/psh/psh-0.008-r1.ebuild new file mode 100644 index 000000000000..c86bb0d6f6d3 --- /dev/null +++ b/app-shells/psh/psh-0.008-r1.ebuild @@ -0,0 +1,33 @@ +# 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.008-r1.ebuild,v 1.1 2000/08/07 12:47:39 achim Exp $ + +P=psh-0.008 +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} +HOMEPAGE="http://www.focusresearch.com/gregor/psh/" +CATEGORY="app-shells" + +src_compile() { + cd ${S} + perl Makefile.PL $PERLINSTALL + make +} + +src_install() { + cd ${S} + make prefix=${D}/usr install + dodoc COPYRIGHT HACKING MANIFEST README* RELEASE TODO + dodoc examples/complete-examples + prepman +} + + + + + + + |