diff options
author | Jesus Rivero <neurogeek@gentoo.org> | 2013-07-09 18:29:21 +0000 |
---|---|---|
committer | Jesus Rivero <neurogeek@gentoo.org> | 2013-07-09 18:29:21 +0000 |
commit | e8d5b6439f4f0e6d58d7f0fc02e98a5b8d2217e4 (patch) | |
tree | 68bace856cdaf051e9ae902c6eb65ab6d0626bbb /app-admin | |
parent | Version bump. (diff) | |
download | gentoo-2-e8d5b6439f4f0e6d58d7f0fc02e98a5b8d2217e4.tar.gz gentoo-2-e8d5b6439f4f0e6d58d7f0fc02e98a5b8d2217e4.tar.bz2 gentoo-2-e8d5b6439f4f0e6d58d7f0fc02e98a5b8d2217e4.zip |
Added patch to rename AM_CONFIG_HEADER to AC_CONFIG_HEADER. Closes bug #467536
(Portage version: 2.1.11.52/cvs/Linux x86_64, signed Manifest commit with key 748B2C601F6F0683)
Diffstat (limited to 'app-admin')
-rw-r--r-- | app-admin/apachetop/ChangeLog | 9 | ||||
-rw-r--r-- | app-admin/apachetop/apachetop-0.12.6-r1.ebuild | 5 | ||||
-rw-r--r-- | app-admin/apachetop/files/apachetop-0.12.6-ac_config_header.patch | 12 |
3 files changed, 22 insertions, 4 deletions
diff --git a/app-admin/apachetop/ChangeLog b/app-admin/apachetop/ChangeLog index e84a8031f226..4bf864e385df 100644 --- a/app-admin/apachetop/ChangeLog +++ b/app-admin/apachetop/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-admin/apachetop -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/apachetop/ChangeLog,v 1.52 2012/11/27 20:19:44 neurogeek Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-admin/apachetop/ChangeLog,v 1.53 2013/07/09 18:29:20 neurogeek Exp $ + + 09 Jul 2013; <neurogeek@gentoo.org> apachetop-0.12.6-r1.ebuild, + +files/apachetop-0.12.6-ac_config_header.patch: + Added patch to rename AM_CONFIG_HEADER to AC_CONFIG_HEADER. Closes bug + #467536 27 Nov 2012; Jesus Rivero <neurogeek@gentoo.org> metadata.xml: Added myself as maintainer diff --git a/app-admin/apachetop/apachetop-0.12.6-r1.ebuild b/app-admin/apachetop/apachetop-0.12.6-r1.ebuild index 95754cbd3b83..df30e3ed11f9 100644 --- a/app-admin/apachetop/apachetop-0.12.6-r1.ebuild +++ b/app-admin/apachetop/apachetop-0.12.6-r1.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2011 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/apachetop/apachetop-0.12.6-r1.ebuild,v 1.6 2011/03/20 18:22:08 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/apachetop/apachetop-0.12.6-r1.ebuild,v 1.7 2013/07/09 18:29:20 neurogeek Exp $ EAPI="2" @@ -24,6 +24,7 @@ src_prepare() { epatch "${FILESDIR}"/${P}-gcc41.patch epatch "${FILESDIR}"/${P}-configure.patch epatch "${FILESDIR}"/${P}-maxpathlen.patch + epatch "${FILESDIR}"/${P}-ac_config_header.patch eautoreconf } diff --git a/app-admin/apachetop/files/apachetop-0.12.6-ac_config_header.patch b/app-admin/apachetop/files/apachetop-0.12.6-ac_config_header.patch new file mode 100644 index 000000000000..aabdb13d75f3 --- /dev/null +++ b/app-admin/apachetop/files/apachetop-0.12.6-ac_config_header.patch @@ -0,0 +1,12 @@ +diff -uNr apachetop-0.12.6.orig/configure.ac apachetop-0.12.6/configure.ac +--- apachetop-0.12.6.orig/configure.ac 2013-07-09 14:06:14.000000000 -0400 ++++ apachetop-0.12.6/configure.ac 2013-07-09 14:07:36.000000000 -0400 +@@ -6,7 +6,7 @@ + AC_CONFIG_AUX_DIR(config) + #AC_CONFIG_MACRO_DIR(m4) # 2.58 + +-AM_CONFIG_HEADER(config.h) ++AC_CONFIG_HEADER(config.h) + AM_INIT_AUTOMAKE(apachetop, 0.12.6) # 2.53 only? + + # Add non-standard directories to the include path |