diff options
author | 2013-04-18 05:20:29 +0000 | |
---|---|---|
committer | 2013-04-18 05:20:29 +0000 | |
commit | 4d95d9242996cd10d192bbec02fe81826cde36d6 (patch) | |
tree | 9ae82c9c79011ed77178e5209924741f954bbd05 /dev-util/unifdef | |
parent | Version bump (bug #466230). (diff) | |
download | gentoo-2-4d95d9242996cd10d192bbec02fe81826cde36d6.tar.gz gentoo-2-4d95d9242996cd10d192bbec02fe81826cde36d6.tar.bz2 gentoo-2-4d95d9242996cd10d192bbec02fe81826cde36d6.zip |
Version bump (bug #466232).
(Portage version: 2.2.0_alpha173/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Diffstat (limited to 'dev-util/unifdef')
-rw-r--r-- | dev-util/unifdef/ChangeLog | 9 | ||||
-rw-r--r-- | dev-util/unifdef/unifdef-2.7.ebuild | 21 |
2 files changed, 28 insertions, 2 deletions
diff --git a/dev-util/unifdef/ChangeLog b/dev-util/unifdef/ChangeLog index 524bef3c536e..6b79720c274a 100644 --- a/dev-util/unifdef/ChangeLog +++ b/dev-util/unifdef/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-util/unifdef -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/unifdef/ChangeLog,v 1.25 2012/01/05 10:15:14 ssuominen Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/unifdef/ChangeLog,v 1.26 2013/04/18 05:20:29 radhermit Exp $ + +*unifdef-2.7 (18 Apr 2013) + + 18 Apr 2013; Tim Harder <radhermit@gentoo.org> +unifdef-2.7.ebuild: + Version bump (bug #466232). 05 Jan 2012; Samuli Suominen <ssuominen@gentoo.org> -unifdef-1.20.ebuild, -unifdef-2.3.ebuild: diff --git a/dev-util/unifdef/unifdef-2.7.ebuild b/dev-util/unifdef/unifdef-2.7.ebuild new file mode 100644 index 000000000000..bbd77a235ee8 --- /dev/null +++ b/dev-util/unifdef/unifdef-2.7.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/unifdef/unifdef-2.7.ebuild,v 1.1 2013/04/18 05:20:29 radhermit Exp $ + +EAPI=4 +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" + +DOCS=( README ) + +src_prepare() { + sed -i '/^prefix/s:=.*:=/usr:' Makefile || die + tc-export CC +} |