diff options
author | Mike Frysinger <vapier@gentoo.org> | 2008-01-26 20:14:31 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2008-01-26 20:14:31 +0000 |
commit | d6cb8c27036148a1156556da0f88ad36f8f606b4 (patch) | |
tree | 6b6f331d78724b65a46dede009fc6da7286b6c06 /app-shells/dash | |
parent | Add new version and remove old version which had some QA issues. (diff) | |
download | gentoo-2-d6cb8c27036148a1156556da0f88ad36f8f606b4.tar.gz gentoo-2-d6cb8c27036148a1156556da0f88ad36f8f606b4.tar.bz2 gentoo-2-d6cb8c27036148a1156556da0f88ad36f8f606b4.zip |
Touchup install and make sure we error out if dash isnt found.
(Portage version: 2.1.4)
Diffstat (limited to 'app-shells/dash')
-rw-r--r-- | app-shells/dash/ChangeLog | 6 | ||||
-rw-r--r-- | app-shells/dash/dash-0.5.4.1-r2.ebuild | 17 |
2 files changed, 12 insertions, 11 deletions
diff --git a/app-shells/dash/ChangeLog b/app-shells/dash/ChangeLog index d0cd3ea6bb3c..0524aebc5cf1 100644 --- a/app-shells/dash/ChangeLog +++ b/app-shells/dash/ChangeLog @@ -1,6 +1,8 @@ # ChangeLog for app-shells/dash -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/dash/ChangeLog,v 1.48 2007/12/25 16:17:37 phreak Exp $ +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 + + 26 Jan 2008; Mike Frysinger <vapier@gentoo.org> dash-0.5.4.1-r2.ebuild: + Touchup install and make sure we error out if dash isnt found. 25 Dec 2007; Christian Heim <phreak@gentoo.org> metadata.xml: Removing uberlord from metadata.xml as per #199318. diff --git a/app-shells/dash/dash-0.5.4.1-r2.ebuild b/app-shells/dash/dash-0.5.4.1-r2.ebuild index f0fba792c862..ff0a2a71467d 100644 --- a/app-shells/dash/dash-0.5.4.1-r2.ebuild +++ b/app-shells/dash/dash-0.5.4.1-r2.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/dash/dash-0.5.4.1-r2.ebuild,v 1.1 2007/10/08 20:53:28 uberlord Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/dash/dash-0.5.4.1-r2.ebuild,v 1.2 2008/01/26 20:14:31 vapier Exp $ inherit autotools eutils flag-o-matic toolchain-funcs @@ -9,11 +9,10 @@ DEB_PATCH=${PV##*.} DEB_PF="${PN}_${DEB_PV}-${DEB_PATCH}" MY_P="${PN}-${DEB_PV}" -DESCRIPTION="DASH is a direct descendant of the NetBSD version of ash (the -Almquist SHell) and is POSIX compliant" +DESCRIPTION="DASH is a direct descendant of the NetBSD version of ash (the Almquist SHell) and is POSIX compliant" HOMEPAGE="http://gondor.apana.org.au/~herbert/dash/" SRC_URI="http://gondor.apana.org.au/~herbert/dash/files/${PN}-${DEB_PV}.tar.gz - mirror://debian/pool/main/d/dash/${DEB_PF}.diff.gz" + mirror://debian/pool/main/d/dash/${DEB_PF}.diff.gz" LICENSE="BSD" SLOT="0" @@ -63,8 +62,8 @@ src_compile() { } src_install() { - exeinto /bin - newexe src/dash dash - newman src/dash.1 dash.1 - dodoc COPYING ChangeLog + doman src/dash.1 + dodoc ChangeLog + into / + dobin src/dash || die } |