diff options
author | 2000-11-26 20:55:03 +0000 | |
---|---|---|
committer | 2000-11-26 20:55:03 +0000 | |
commit | 541f14235634ec9414e89e8089beca533ffca899 (patch) | |
tree | 86d726368da8d5082e4e7b43278d3a356de0605c /app-shells/pdksh | |
parent | *** empty log message *** (diff) | |
download | gentoo-2-541f14235634ec9414e89e8089beca533ffca899.tar.gz gentoo-2-541f14235634ec9414e89e8089beca533ffca899.tar.bz2 gentoo-2-541f14235634ec9414e89e8089beca533ffca899.zip |
*** empty log message ***
Diffstat (limited to 'app-shells/pdksh')
-rw-r--r-- | app-shells/pdksh/files/digest-pdksh-5.2.14-r2 | 2 | ||||
-rw-r--r-- | app-shells/pdksh/pdksh-5.2.14-r2.ebuild | 43 |
2 files changed, 45 insertions, 0 deletions
diff --git a/app-shells/pdksh/files/digest-pdksh-5.2.14-r2 b/app-shells/pdksh/files/digest-pdksh-5.2.14-r2 new file mode 100644 index 000000000000..82565d42669d --- /dev/null +++ b/app-shells/pdksh/files/digest-pdksh-5.2.14-r2 @@ -0,0 +1,2 @@ +MD5 871106b3bd937e1afba9f2ef7c43aef3 pdksh-5.2.14.tar.gz +MD5 c91364eb3de43a052c53d263000fe14c pdksh-5.2.14-patches.1 diff --git a/app-shells/pdksh/pdksh-5.2.14-r2.ebuild b/app-shells/pdksh/pdksh-5.2.14-r2.ebuild new file mode 100644 index 000000000000..ba2ddf0fae44 --- /dev/null +++ b/app-shells/pdksh/pdksh-5.2.14-r2.ebuild @@ -0,0 +1,43 @@ +# 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-r2.ebuild,v 1.1 2000/11/26 20:54:17 achim Exp $ + +P=pdksh-5.2.14 +A="${P}.tar.gz ${P}-patches.1" +S=${WORKDIR}/${P} +DESCRIPTION="The Public Domain Korn Shell" +SRC_URI="ftp://ftp.cs.mun.ca/pub/pdksh/${P}.tar.gz + ftp://ftp.cs.mun.ca/pub/pdksh/${P}-patches.1" +HOMEPAGE="http://ww.cs.mun.ca/~michael/pdksh/" + +DEPEND=">=sys-libs/glibc-2.1.3" + +src_unpack() { + unpack ${P}.tar.gz + cd ${S} + patch -p2 < ${DISTDIR}/${P}-patches.1 +} + +src_compile() { + cd ${S} + try ./configure --prefix=/usr --host=${CHOST} + try 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/* +} + + + + + + |