diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2009-10-02 10:46:59 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2009-10-02 10:46:59 +0000 |
commit | c394debe495deca3b46c6fd1643de99e5222a7a8 (patch) | |
tree | 0dab1772195987fe9c83c1e8a55f265be6ba4b19 /www-apache | |
parent | Version bump wrt #287200, thanks to Nick Bowler for reporting. (diff) | |
download | gentoo-2-c394debe495deca3b46c6fd1643de99e5222a7a8.tar.gz gentoo-2-c394debe495deca3b46c6fd1643de99e5222a7a8.tar.bz2 gentoo-2-c394debe495deca3b46c6fd1643de99e5222a7a8.zip |
Ooops, fix the missing broken autotools correction.
(Portage version: 2.2_rc42/cvs/Linux x86_64)
Diffstat (limited to 'www-apache')
-rw-r--r-- | www-apache/mod_security/ChangeLog | 7 | ||||
-rw-r--r-- | www-apache/mod_security/files/mod_security-2.5.10-broken-autotools.patch | 13 | ||||
-rw-r--r-- | www-apache/mod_security/mod_security-2.5.10.ebuild | 3 |
3 files changed, 21 insertions, 2 deletions
diff --git a/www-apache/mod_security/ChangeLog b/www-apache/mod_security/ChangeLog index 1097f708d06e..eb8aafc8c622 100644 --- a/www-apache/mod_security/ChangeLog +++ b/www-apache/mod_security/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for www-apache/mod_security # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_security/ChangeLog,v 1.28 2009/10/01 22:07:37 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_security/ChangeLog,v 1.29 2009/10/02 10:46:58 flameeyes Exp $ + + 02 Oct 2009; Diego E. Pettenò <flameeyes@gentoo.org> + mod_security-2.5.10.ebuild, + +files/mod_security-2.5.10-broken-autotools.patch: + Ooops, fix the missing broken autotools correction. *mod_security-2.5.10 (01 Oct 2009) diff --git a/www-apache/mod_security/files/mod_security-2.5.10-broken-autotools.patch b/www-apache/mod_security/files/mod_security-2.5.10-broken-autotools.patch new file mode 100644 index 000000000000..6992aa3f1ac3 --- /dev/null +++ b/www-apache/mod_security/files/mod_security-2.5.10-broken-autotools.patch @@ -0,0 +1,13 @@ +Index: modsecurity-apache_2.5.9/apache2/configure.in +=================================================================== +--- modsecurity-apache_2.5.9.orig/apache2/configure.in ++++ modsecurity-apache_2.5.9/apache2/configure.in +@@ -247,7 +247,7 @@ VERSION_OK + if test "$verbose_output" -eq 1; then AC_MSG_NOTICE(apxs LIBDIR: $APXS_LIBDIR); fi + # Make sure the lib dir is used + if test -n "$APXS_LIBDIR"; then +- APXS_LIBS="-L{$APXS_LIBDIR} `$APXS -q LIBS` `$APXS -q EXTRA_LIBS`" ++ APXS_LIBS="-L${APXS_LIBDIR} `$APXS -q LIBS` `$APXS -q EXTRA_LIBS`" + else + APXS_LIBS="`$APXS -q LIBS` `$APXS -q EXTRA_LIBS`" + fi diff --git a/www-apache/mod_security/mod_security-2.5.10.ebuild b/www-apache/mod_security/mod_security-2.5.10.ebuild index 6bd9f2d62fd7..7468d9ee509d 100644 --- a/www-apache/mod_security/mod_security-2.5.10.ebuild +++ b/www-apache/mod_security/mod_security-2.5.10.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_security/mod_security-2.5.10.ebuild,v 1.1 2009/10/01 22:07:37 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_security/mod_security-2.5.10.ebuild,v 1.2 2009/10/02 10:46:58 flameeyes Exp $ inherit apache-module autotools @@ -34,6 +34,7 @@ src_unpack() { cd "${S}"/apache2 + epatch "${FILESDIR}"/${P}-broken-autotools.patch epatch "${FILESDIR}"/${P}-as-needed.patch eautoreconf |