diff options
author | 2010-11-14 20:06:10 +0000 | |
---|---|---|
committer | 2010-11-14 20:06:10 +0000 | |
commit | 55bbdeb210c621ebb0ba3cb1ec5a5e72805f0da2 (patch) | |
tree | 1eedef0614e7cc816e9a32376e2bbb4c9ab7c6fb /app-shells | |
parent | Version bump (diff) | |
download | gentoo-2-55bbdeb210c621ebb0ba3cb1ec5a5e72805f0da2.tar.gz gentoo-2-55bbdeb210c621ebb0ba3cb1ec5a5e72805f0da2.tar.bz2 gentoo-2-55bbdeb210c621ebb0ba3cb1ec5a5e72805f0da2.zip |
Version bump.
(Portage version: 2.2.0_alpha4/cvs/Linux x86_64)
Diffstat (limited to 'app-shells')
-rw-r--r-- | app-shells/posh/ChangeLog | 8 | ||||
-rw-r--r-- | app-shells/posh/posh-0.6.18.ebuild | 19 | ||||
-rw-r--r-- | app-shells/posh/posh-0.9.ebuild | 22 |
3 files changed, 29 insertions, 20 deletions
diff --git a/app-shells/posh/ChangeLog b/app-shells/posh/ChangeLog index 56205a6552a4..e0a6640f7593 100644 --- a/app-shells/posh/ChangeLog +++ b/app-shells/posh/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-shells/posh # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/posh/ChangeLog,v 1.15 2010/10/01 12:54:28 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/posh/ChangeLog,v 1.16 2010/11/14 20:06:10 mgorny Exp $ + +*posh-0.9 (14 Nov 2010) + + 14 Nov 2010; Michał Górny <mgorny@gentoo.org> -posh-0.6.18.ebuild, + +posh-0.9.ebuild: + Version bump. 01 Oct 2010; Michał Górny <mgorny@gentoo.org> metadata.xml: Take over the maintainership. diff --git a/app-shells/posh/posh-0.6.18.ebuild b/app-shells/posh/posh-0.6.18.ebuild deleted file mode 100644 index 072aaa37d6e4..000000000000 --- a/app-shells/posh/posh-0.6.18.ebuild +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/posh/posh-0.6.18.ebuild,v 1.1 2009/08/03 16:20:07 vostorga Exp $ - -DESCRIPTION="stripped-down version of pdksh" -HOMEPAGE="http://packages.debian.org/posh" -SRC_URI="mirror://debian/pool/main/p/posh/${P/-/_}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="" - -DEPEND="" -RDEPEND="" - -src_install() { - emake DESTDIR="${D}" bindir=/bin install || die "emake install failed" -} diff --git a/app-shells/posh/posh-0.9.ebuild b/app-shells/posh/posh-0.9.ebuild new file mode 100644 index 000000000000..8077872db0af --- /dev/null +++ b/app-shells/posh/posh-0.9.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-shells/posh/posh-0.9.ebuild,v 1.1 2010/11/14 20:06:10 mgorny Exp $ + +EAPI=2 + +DESCRIPTION="Reimplementation of Bourne shell based on pdksh" +HOMEPAGE="http://packages.debian.org/posh" +SRC_URI="mirror://debian/pool/main/p/posh/${P/-/_}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +src_configure() { + econf --exec-prefix=/ +} + +src_install() { + emake DESTDIR="${D}" install || die +} |