summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2011-01-06 20:03:30 +0000
committerMichał Górny <mgorny@gentoo.org>2011-01-06 20:03:30 +0000
commit5459aa52f24549281af1f39b1806038f568f06b3 (patch)
tree05395dee6e936632121a46d544cb001b02d24b9c /app-shells
parentstable for ppc64 wrt #294256 (diff)
downloadgentoo-2-5459aa52f24549281af1f39b1806038f568f06b3.tar.gz
gentoo-2-5459aa52f24549281af1f39b1806038f568f06b3.tar.bz2
gentoo-2-5459aa52f24549281af1f39b1806038f568f06b3.zip
Migrate to autotools-utils, drop old version.
(Portage version: 2.2.0_alpha12_p8/cvs/Linux x86_64)
Diffstat (limited to 'app-shells')
-rw-r--r--app-shells/posh/ChangeLog8
-rw-r--r--app-shells/posh/posh-0.8.6.ebuild22
-rw-r--r--app-shells/posh/posh-0.9.ebuild16
3 files changed, 14 insertions, 32 deletions
diff --git a/app-shells/posh/ChangeLog b/app-shells/posh/ChangeLog
index e0a6640f7593..a75a6345fb99 100644
--- a/app-shells/posh/ChangeLog
+++ b/app-shells/posh/ChangeLog
@@ -1,6 +1,10 @@
# 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.16 2010/11/14 20:06:10 mgorny Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-shells/posh/ChangeLog,v 1.17 2011/01/06 20:03:29 mgorny Exp $
+
+ 06 Jan 2011; Michał Górny <mgorny@gentoo.org> -posh-0.8.6.ebuild,
+ posh-0.9.ebuild:
+ Migrate to autotools-utils, drop old version.
*posh-0.9 (14 Nov 2010)
diff --git a/app-shells/posh/posh-0.8.6.ebuild b/app-shells/posh/posh-0.8.6.ebuild
deleted file mode 100644
index 7c18c921b2e5..000000000000
--- a/app-shells/posh/posh-0.8.6.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# 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.8.6.ebuild,v 1.1 2010/09/30 13:11:42 xmw 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
-}
diff --git a/app-shells/posh/posh-0.9.ebuild b/app-shells/posh/posh-0.9.ebuild
index 8077872db0af..314f560b1622 100644
--- a/app-shells/posh/posh-0.9.ebuild
+++ b/app-shells/posh/posh-0.9.ebuild
@@ -1,8 +1,9 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2011 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 $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/posh/posh-0.9.ebuild,v 1.2 2011/01/06 20:03:29 mgorny Exp $
-EAPI=2
+EAPI=3
+inherit autotools-utils
DESCRIPTION="Reimplementation of Bourne shell based on pdksh"
HOMEPAGE="http://packages.debian.org/posh"
@@ -14,9 +15,8 @@ KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
src_configure() {
- econf --exec-prefix=/
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die
+ myeconfargs=(
+ --exec-prefix=/
+ )
+ autotools-utils_src_configure
}