diff options
author | Jon Portnoy <avenj@gentoo.org> | 2003-05-02 20:00:57 +0000 |
---|---|---|
committer | Jon Portnoy <avenj@gentoo.org> | 2003-05-02 20:00:57 +0000 |
commit | 057348450e7ae82cbcd5bf477a6b0a1b3b1feed2 (patch) | |
tree | 08c10efc19b2fa49527837c8d14d7a4c13a023c7 /app-shells | |
parent | Initial import (diff) | |
download | gentoo-2-057348450e7ae82cbcd5bf477a6b0a1b3b1feed2.tar.gz gentoo-2-057348450e7ae82cbcd5bf477a6b0a1b3b1feed2.tar.bz2 gentoo-2-057348450e7ae82cbcd5bf477a6b0a1b3b1feed2.zip |
Initial import
Diffstat (limited to 'app-shells')
-rw-r--r-- | app-shells/posh/ChangeLog | 9 | ||||
-rw-r--r-- | app-shells/posh/Manifest | 3 | ||||
-rw-r--r-- | app-shells/posh/files/digest-posh-0.2.28 | 1 | ||||
-rw-r--r-- | app-shells/posh/posh-0.2.28.ebuild | 24 |
4 files changed, 36 insertions, 1 deletions
diff --git a/app-shells/posh/ChangeLog b/app-shells/posh/ChangeLog new file mode 100644 index 000000000000..4f0ad8ac9f60 --- /dev/null +++ b/app-shells/posh/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for app-shells/posh +# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-shells/posh/ChangeLog,v 1.1 2003/05/02 20:00:46 avenj Exp $ + +*posh-0.2.28 (02 May 2003) + + 02 May 2003; Jon Portnoy <avenj@gentoo.org> posh-0.2.28.ebuild : + Initial import. Ebuild submitted by Björn Lindström + <bkhl@privat.utfors.se>. diff --git a/app-shells/posh/Manifest b/app-shells/posh/Manifest index a6204135c80d..d81f92a9abe5 100644 --- a/app-shells/posh/Manifest +++ b/app-shells/posh/Manifest @@ -1,2 +1,3 @@ -MD5 0d77adebba237698272c8c2d0c3ef430 posh-0.2.28.ebuild 603 +MD5 0a7e7cf81bd1b8f66de0785658072c50 posh-0.2.28.ebuild 699 +MD5 e0caaf80d44a4cb661ad1f353ab5e0dc ChangeLog 388 MD5 332905d1b42cdaf6bd7789bb84bf6cf2 files/digest-posh-0.2.28 63 diff --git a/app-shells/posh/files/digest-posh-0.2.28 b/app-shells/posh/files/digest-posh-0.2.28 new file mode 100644 index 000000000000..d33130332162 --- /dev/null +++ b/app-shells/posh/files/digest-posh-0.2.28 @@ -0,0 +1 @@ +MD5 5465f2e9a398495694b1164fe7db9ac3 posh_0.2.28.tar.gz 491123 diff --git a/app-shells/posh/posh-0.2.28.ebuild b/app-shells/posh/posh-0.2.28.ebuild new file mode 100644 index 000000000000..86fb56d9756b --- /dev/null +++ b/app-shells/posh/posh-0.2.28.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-shells/posh/posh-0.2.28.ebuild,v 1.1 2003/05/02 20:00:46 avenj Exp $ + +DESCRIPTION="posh is a stripped-down version of pdksh that aims for compliance with Debian's policy, and few extra features" +HOMEPAGE="http://packages.debian.org/posh" +SRC_URI="ftp://ftp.debian.org/debian/pool/main/p/posh/${PN}_${PV}.tar.gz" +LICENSE="GPL-2" + +SLOT="0" +KEYWORDS="~x86" +IUSE="" +DEPEND="" +S=${WORKDIR}/${P} + +src_compile() { + econf + emake || die +} + +src_install() { + einstall bindir=${D}/bin + dodoc BUG-REPORTS CONTRIBUTORS ChangeLog NEWS NOTES PROJECTS README +} |