diff options
author | Jon Nelson <jnelson@gentoo.org> | 2002-04-14 04:22:18 +0000 |
---|---|---|
committer | Jon Nelson <jnelson@gentoo.org> | 2002-04-14 04:22:18 +0000 |
commit | 31c46c59b136ee230d37ea87b3a47878dd662ccc (patch) | |
tree | ba8b2507fabae61f960493abea98a9294a2c5fc2 /app-shells/pdksh/pdksh-5.2.14-r4.ebuild | |
parent | Added transfig as a runtime dependency (diff) | |
download | historical-31c46c59b136ee230d37ea87b3a47878dd662ccc.tar.gz historical-31c46c59b136ee230d37ea87b3a47878dd662ccc.tar.bz2 historical-31c46c59b136ee230d37ea87b3a47878dd662ccc.zip |
commit work-around for (I think) broken sandbox behavior
Diffstat (limited to 'app-shells/pdksh/pdksh-5.2.14-r4.ebuild')
-rw-r--r-- | app-shells/pdksh/pdksh-5.2.14-r4.ebuild | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/app-shells/pdksh/pdksh-5.2.14-r4.ebuild b/app-shells/pdksh/pdksh-5.2.14-r4.ebuild new file mode 100644 index 000000000000..fdb4c338d0ac --- /dev/null +++ b/app-shells/pdksh/pdksh-5.2.14-r4.ebuild @@ -0,0 +1,39 @@ +# 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-r4.ebuild,v 1.1 2002/04/14 04:22:18 jnelson Exp $ + +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() { + echo 'ksh_cv_dev_fd=${ksh_cv_dev_fd=yes}' > config.cache + try ./configure --prefix=/usr --host=${CHOST} + try make +} + +src_install() { + dobin ksh + into usr + doman ksh.1 + dodoc BUG-REPORTS ChangeLog* CONTRIBUTORS LEGAL NEWS NOTES PROJECTS README + docinto etc + dodoc etc/* +} + + + + + + |