diff options
author | Achim Gottinger <achim@gentoo.org> | 2001-04-13 13:17:50 +0000 |
---|---|---|
committer | Achim Gottinger <achim@gentoo.org> | 2001-04-13 13:17:50 +0000 |
commit | 31940f88b66fada132f42011f3e23d6829f2283d (patch) | |
tree | 30317270f795eb86c4d835a1576cc967f20611c7 /app-shells/pdksh | |
parent | Cosmetics (diff) | |
download | historical-31940f88b66fada132f42011f3e23d6829f2283d.tar.gz historical-31940f88b66fada132f42011f3e23d6829f2283d.tar.bz2 historical-31940f88b66fada132f42011f3e23d6829f2283d.zip |
*** empty log message ***
Diffstat (limited to 'app-shells/pdksh')
-rw-r--r-- | app-shells/pdksh/files/digest-pdksh-5.2.14-r3 | 2 | ||||
-rw-r--r-- | app-shells/pdksh/pdksh-5.2.14-r3.ebuild | 42 |
2 files changed, 44 insertions, 0 deletions
diff --git a/app-shells/pdksh/files/digest-pdksh-5.2.14-r3 b/app-shells/pdksh/files/digest-pdksh-5.2.14-r3 new file mode 100644 index 000000000000..82565d42669d --- /dev/null +++ b/app-shells/pdksh/files/digest-pdksh-5.2.14-r3 @@ -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-r3.ebuild b/app-shells/pdksh/pdksh-5.2.14-r3.ebuild new file mode 100644 index 000000000000..3e2ee5898c96 --- /dev/null +++ b/app-shells/pdksh/pdksh-5.2.14-r3.ebuild @@ -0,0 +1,42 @@ +# 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-r3.ebuild,v 1.1 2001/04/13 13:17:50 achim Exp $ + +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() { + + try ./configure --prefix=/usr --host=${CHOST} + try make +} + +src_install() { + + into / + dobin ksh + into /usr + doman ksh.1 + dodoc BUG-REPORTS ChangeLog* CONTRIBUTORS LEGAL NEWS NOTES PROJECTS README + docinto etc + dodoc etc/* +} + + + + + + |