diff options
author | Peter Alfredsen <loki_val@gentoo.org> | 2008-07-14 20:40:12 +0000 |
---|---|---|
committer | Peter Alfredsen <loki_val@gentoo.org> | 2008-07-14 20:40:12 +0000 |
commit | 7f6cda2e88183fcd2ca82bf708f8264d4c8bf80b (patch) | |
tree | c6920e734a8517603db891d531f2bf851532d3dd /app-shells/dash | |
parent | Stable for HPPA (bug #228695). (diff) | |
download | gentoo-2-7f6cda2e88183fcd2ca82bf708f8264d4c8bf80b.tar.gz gentoo-2-7f6cda2e88183fcd2ca82bf708f8264d4c8bf80b.tar.bz2 gentoo-2-7f6cda2e88183fcd2ca82bf708f8264d4c8bf80b.zip |
Bump
(Portage version: 2.2_rc1/cvs/Linux 2.6.25.8 i686)
Diffstat (limited to 'app-shells/dash')
-rw-r--r-- | app-shells/dash/ChangeLog | 5 | ||||
-rw-r--r-- | app-shells/dash/dash-0.5.4.10.ebuild | 58 |
2 files changed, 63 insertions, 0 deletions
diff --git a/app-shells/dash/ChangeLog b/app-shells/dash/ChangeLog index 40626b585dfb..2902bde7c30e 100644 --- a/app-shells/dash/ChangeLog +++ b/app-shells/dash/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-shells/dash # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 +*dash-0.5.4.10 (14 Jul 2008) + + 14 Jul 2008; Peter Alfredsen <loki_val@gentoo.org> +dash-0.5.4.10.ebuild: + Bump + *dash-0.5.4.9 (31 May 2008) 31 May 2008; Mike Frysinger <vapier@gentoo.org> +dash-0.5.4.9.ebuild: diff --git a/app-shells/dash/dash-0.5.4.10.ebuild b/app-shells/dash/dash-0.5.4.10.ebuild new file mode 100644 index 000000000000..8e70f1231a54 --- /dev/null +++ b/app-shells/dash/dash-0.5.4.10.ebuild @@ -0,0 +1,58 @@ +# 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.10.ebuild,v 1.1 2008/07/14 20:40:12 loki_val Exp $ + +inherit autotools eutils flag-o-matic + +DEB_PV=${PV%.*} +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" +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" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" +IUSE="libedit static" + +DEPEND="libedit? ( dev-libs/libedit )" + +S="${WORKDIR}/${MY_P}" + +src_unpack() { + unpack ${A} + + epatch "${WORKDIR}"/${DEB_PF}.diff + cd "${S}" + epatch debian/diff/* + + # Fix the invalid sort + sed -i -e 's/LC_COLLATE=C/LC_ALL=C/g' src/mkbuiltins + + # Always statically link libedit in to ensure we always boot if it changes + # which it has done in the past. + local s="s/-ledit/-Wl,-Bstatic -ledit -Wl,-Bdynamic -lcurses/g" + use static && s="s/-ledit/-ledit -lcurses/g" + sed -i -e "${s}" configure.ac || die "Failed to sed configure.ac" + + # May as well, as the debian patches force this anyway + eautoreconf +} + +src_compile() { + use static && append-ldflags -static + econf \ + --bindir=/bin \ + $(use_with libedit) \ + || die "econf failed" + emake || die +} + +src_install() { + emake install DESTDIR="${D}" || die + dodoc ChangeLog debian/changelog +} |