diff options
author | Tim Harder <radhermit@gentoo.org> | 2013-06-08 03:41:40 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2013-06-08 03:41:40 +0000 |
commit | f5fa2921ad58d68b0713cffebff4a1e35e3a711e (patch) | |
tree | 037923248e001f706f846ca6f25bfbf208929031 /dev-util/unifdef | |
parent | Remove useless dodoc LICENSE (diff) | |
download | gentoo-2-f5fa2921ad58d68b0713cffebff4a1e35e3a711e.tar.gz gentoo-2-f5fa2921ad58d68b0713cffebff4a1e35e3a711e.tar.bz2 gentoo-2-f5fa2921ad58d68b0713cffebff4a1e35e3a711e.zip |
Version bump.
(Portage version: 2.2.0_alpha177/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Diffstat (limited to 'dev-util/unifdef')
-rw-r--r-- | dev-util/unifdef/ChangeLog | 7 | ||||
-rw-r--r-- | dev-util/unifdef/unifdef-2.9.ebuild | 21 |
2 files changed, 27 insertions, 1 deletions
diff --git a/dev-util/unifdef/ChangeLog b/dev-util/unifdef/ChangeLog index 080bb54ae266..0f2781b3aad1 100644 --- a/dev-util/unifdef/ChangeLog +++ b/dev-util/unifdef/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-util/unifdef # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/unifdef/ChangeLog,v 1.27 2013/05/09 07:53:30 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/unifdef/ChangeLog,v 1.28 2013/06/08 03:41:40 radhermit Exp $ + +*unifdef-2.9 (08 Jun 2013) + + 08 Jun 2013; Tim Harder <radhermit@gentoo.org> +unifdef-2.9.ebuild: + Version bump. *unifdef-2.8 (09 May 2013) diff --git a/dev-util/unifdef/unifdef-2.9.ebuild b/dev-util/unifdef/unifdef-2.9.ebuild new file mode 100644 index 000000000000..675ccf9aaa37 --- /dev/null +++ b/dev-util/unifdef/unifdef-2.9.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.9.ebuild,v 1.1 2013/06/08 03:41:40 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 +} |