diff options
author | Mike Frysinger <vapier@gentoo.org> | 2013-05-04 19:04:06 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2013-05-04 19:04:06 +0000 |
commit | a4f077f25f43333cbaff907d4a7197ea48b075f5 (patch) | |
tree | 46548bc7a43975ae811f5301a7ef8a01c14f4ff4 /app-text | |
parent | Fix building with newer automake. (diff) | |
download | gentoo-2-a4f077f25f43333cbaff907d4a7197ea48b075f5.tar.gz gentoo-2-a4f077f25f43333cbaff907d4a7197ea48b075f5.tar.bz2 gentoo-2-a4f077f25f43333cbaff907d4a7197ea48b075f5.zip |
Fix building with newer automake.
(Portage version: 2.2.0_alpha170/cvs/Linux x86_64, signed Manifest commit with key FB7C4156)
Diffstat (limited to 'app-text')
-rw-r--r-- | app-text/a2ps/ChangeLog | 7 | ||||
-rw-r--r-- | app-text/a2ps/a2ps-4.14-r3.ebuild | 8 |
2 files changed, 10 insertions, 5 deletions
diff --git a/app-text/a2ps/ChangeLog b/app-text/a2ps/ChangeLog index 25f125a5790a..f5141a513254 100644 --- a/app-text/a2ps/ChangeLog +++ b/app-text/a2ps/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-text/a2ps -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/a2ps/ChangeLog,v 1.113 2012/09/09 16:05:04 armin76 Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/a2ps/ChangeLog,v 1.114 2013/05/04 19:04:06 vapier Exp $ + + 04 May 2013; Mike Frysinger <vapier@gentoo.org> a2ps-4.14-r3.ebuild: + Fix building with newer automake. 09 Sep 2012; Raúl Porcel <armin76@gentoo.org> a2ps-4.14-r3.ebuild: alpha/ia64/s390/sh/sparc stable wrt #428900 diff --git a/app-text/a2ps/a2ps-4.14-r3.ebuild b/app-text/a2ps/a2ps-4.14-r3.ebuild index 40531af388b2..045232c54e19 100644 --- a/app-text/a2ps/a2ps-4.14-r3.ebuild +++ b/app-text/a2ps/a2ps-4.14-r3.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/a2ps/a2ps-4.14-r3.ebuild,v 1.8 2012/09/09 16:05:04 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/a2ps/a2ps-4.14-r3.ebuild,v 1.9 2013/05/04 19:04:06 vapier Exp $ EAPI=4 inherit autotools elisp-common eutils flag-o-matic @@ -74,7 +74,9 @@ src_prepare() { sed -i \ -e '/^AM_C_PROTOTYPES/d' \ -e '/^AUTOMAKE_OPTIONS.*ansi2knr/d' \ - configure.in {contrib/sample,lib,src}/Makefile.am || die + -e 's:AM_CONFIG_HEADER:AC_CONFIG_HEADERS:' \ + -e 's:AM_PROG_CC_STDC:AC_PROG_CC:' \ + configure.in {contrib/sample,lib,src}/Makefile.am m4/protos.m4 || die eautoreconf } |