diff options
author | Mike Frysinger <vapier@gentoo.org> | 2010-09-11 15:49:19 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2010-09-11 15:49:19 +0000 |
commit | 31632f8d476cb634e5fa51cebd8f3c42b610d2fa (patch) | |
tree | c849c42adb3414f1f650248d5beb157976ebe6c9 /dev-util/unifdef | |
parent | ebuild cleanup plus version bump (diff) | |
download | gentoo-2-31632f8d476cb634e5fa51cebd8f3c42b610d2fa.tar.gz gentoo-2-31632f8d476cb634e5fa51cebd8f3c42b610d2fa.tar.bz2 gentoo-2-31632f8d476cb634e5fa51cebd8f3c42b610d2fa.zip |
Version bump to fix building with make 3.82 #336824 by Diego E. Pettenò.
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'dev-util/unifdef')
-rw-r--r-- | dev-util/unifdef/ChangeLog | 7 | ||||
-rw-r--r-- | dev-util/unifdef/unifdef-2.3.ebuild | 27 |
2 files changed, 33 insertions, 1 deletions
diff --git a/dev-util/unifdef/ChangeLog b/dev-util/unifdef/ChangeLog index 413723833f70..bcc384e28006 100644 --- a/dev-util/unifdef/ChangeLog +++ b/dev-util/unifdef/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-util/unifdef # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/unifdef/ChangeLog,v 1.8 2010/01/15 03:15:06 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/unifdef/ChangeLog,v 1.9 2010/09/11 15:49:19 vapier Exp $ + +*unifdef-2.3 (11 Sep 2010) + + 11 Sep 2010; Mike Frysinger <vapier@gentoo.org> +unifdef-2.3.ebuild: + Version bump to fix building with make 3.82 #336824 by Diego E. Pettenò. 15 Jan 2010; Mike Frysinger <vapier@gentoo.org> unifdef-1.23.ebuild: Pull in xz-utils for $A #299988 by Matt Turner. diff --git a/dev-util/unifdef/unifdef-2.3.ebuild b/dev-util/unifdef/unifdef-2.3.ebuild new file mode 100644 index 000000000000..9a980e754cdb --- /dev/null +++ b/dev-util/unifdef/unifdef-2.3.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/unifdef/unifdef-2.3.ebuild,v 1.1 2010/09/11 15:49:19 vapier Exp $ + +EAPI="2" + +inherit toolchain-funcs + +DESCRIPTION="remove #ifdef'ed lines from a file while otherwise leaving the file alone" +HOMEPAGE="http://dotat.at/prog/unifdef/" +SRC_URI="http://dotat.at/prog/unifdef/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 -sparc-fbsd -x86-fbsd ~amd64-linux ~x86-linux" +IUSE="" + +src_prepare() { + sed -i 's:[.] version.sh:. ./version.sh:' reversion.sh || die + sed -i '/^prefix/s:=.*:=/usr:' Makefile || die + tc-export CC +} + +src_install() { + emake install DESTDIR="${D}" || die + dodoc README +} |