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 | cdf07996a03341b637615419b78fbe77ea0331e2 (patch) | |
tree | 9f09ecd61a311590ea5ab6eefacfbfd4627c30a0 /app-shells/pdksh | |
parent | *** empty log message *** (diff) | |
download | historical-cdf07996a03341b637615419b78fbe77ea0331e2.tar.gz historical-cdf07996a03341b637615419b78fbe77ea0331e2.tar.bz2 historical-cdf07996a03341b637615419b78fbe77ea0331e2.zip |
*** empty log message ***
Diffstat (limited to 'app-shells/pdksh')
-rw-r--r-- | app-shells/pdksh/files/digest | 1 | ||||
-rw-r--r-- | app-shells/pdksh/pdksh-5.2.14-r1.ebuild | 35 |
2 files changed, 36 insertions, 0 deletions
diff --git a/app-shells/pdksh/files/digest b/app-shells/pdksh/files/digest new file mode 100644 index 000000000000..dbb2fc7470c6 --- /dev/null +++ b/app-shells/pdksh/files/digest @@ -0,0 +1 @@ +MD5 871106b3bd937e1afba9f2ef7c43aef3 pdksh-5.2.14.tar.gz diff --git a/app-shells/pdksh/pdksh-5.2.14-r1.ebuild b/app-shells/pdksh/pdksh-5.2.14-r1.ebuild new file mode 100644 index 000000000000..6544ef90ffd7 --- /dev/null +++ b/app-shells/pdksh/pdksh-5.2.14-r1.ebuild @@ -0,0 +1,35 @@ +# 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/pdksh/pdksh-5.2.14-r1.ebuild,v 1.1 2000/08/07 12:47:39 achim Exp $ + +P=pdksh-5.2.14 +A=${P}.tar.gz +S=${WORKDIR}/${P} +DESCRIPTION="The Public Domain Korn Shell" +SRC_URI="ftp://ftp.cs.mun.ca/pub/pdksh/"${A} +HOMEPAGE="http://ww.cs.mun.ca/~michael/pdksh/" +CATEGORY="app-shells" + +src_compile() { + cd ${S} + ./configure --prefix=/usr --host=${CHOST} + make +} + +src_install() { + cd ${S} + into / + dobin ksh + into /usr + doman ksh.1 + dodoc BUG-REPORTS ChangeLog* CONTRIBUTORS LEGAL NEWS NOTES PROJECTS README + docinto etc + dodoc etc/* +} + + + + + + |