diff options
author | Jorge Manuel B. S. Vicetto <jmbsvicetto@gentoo.org> | 2013-05-14 02:23:38 +0000 |
---|---|---|
committer | Jorge Manuel B. S. Vicetto <jmbsvicetto@gentoo.org> | 2013-05-14 02:23:38 +0000 |
commit | 1387c3491c47cc07dac1cb5d05862ef9d8233f21 (patch) | |
tree | 4c92c9ea0018afab2c345858e6dd4acbdf2ed7a2 /dev-db | |
parent | use games_get_libdir (diff) | |
download | gentoo-2-1387c3491c47cc07dac1cb5d05862ef9d8233f21.tar.gz gentoo-2-1387c3491c47cc07dac1cb5d05862ef9d8233f21.tar.bz2 gentoo-2-1387c3491c47cc07dac1cb5d05862ef9d8233f21.zip |
Apply a patch to replace AM_CONFIG_HEADER with AC_CONFIG_HEADERS - fixes bug 466940.
(Portage version: 2.2.0_alpha173/cvs/Linux x86_64, signed Manifest commit with key BB0E6E98)
Diffstat (limited to 'dev-db')
-rw-r--r-- | dev-db/libdbi/ChangeLog | 11 | ||||
-rw-r--r-- | dev-db/libdbi/files/libdbi-0.8.4-fix-ac-macro.patch | 12 | ||||
-rw-r--r-- | dev-db/libdbi/libdbi-0.8.4.ebuild | 5 |
3 files changed, 24 insertions, 4 deletions
diff --git a/dev-db/libdbi/ChangeLog b/dev-db/libdbi/ChangeLog index ea2f7e1c942c..639108761cb5 100644 --- a/dev-db/libdbi/ChangeLog +++ b/dev-db/libdbi/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for dev-db/libdbi -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/libdbi/ChangeLog,v 1.49 2012/10/07 15:42:06 armin76 Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-db/libdbi/ChangeLog,v 1.50 2013/05/14 02:23:38 jmbsvicetto Exp $ + + 14 May 2013; Jorge Manuel B. S. Vicetto <jmbsvicetto@gentoo.org> + libdbi-0.8.4.ebuild, +files/libdbi-0.8.4-fix-ac-macro.patch: + Apply a patch to replace AM_CONFIG_HEADER with AC_CONFIG_HEADERS - fixes bug + 466940. + + starting 07 Oct 2012; Raúl Porcel <armin76@gentoo.org> libdbi-0.8.4.ebuild: alpha/ia64/s390/sh/sparc/x86 stable wrt #425306 diff --git a/dev-db/libdbi/files/libdbi-0.8.4-fix-ac-macro.patch b/dev-db/libdbi/files/libdbi-0.8.4-fix-ac-macro.patch new file mode 100644 index 000000000000..4dc286856b6b --- /dev/null +++ b/dev-db/libdbi/files/libdbi-0.8.4-fix-ac-macro.patch @@ -0,0 +1,12 @@ +diff -ur libdbi-0.8.4-old/configure.in libdbi-0.8.4/configure.in +--- libdbi-0.8.4-old/configure.in 2013-05-14 01:45:25.595869576 +0000 ++++ libdbi-0.8.4/configure.in 2013-05-14 01:47:09.775467777 +0000 +@@ -3,7 +3,7 @@ + AM_MAINTAINER_MODE + + AM_INIT_AUTOMAKE(libdbi, 0.8.4) +-AM_CONFIG_HEADER(config.h) ++AC_CONFIG_HEADERS(config.h) + AC_CONFIG_MACRO_DIR([m4]) + + dnl Library versioning diff --git a/dev-db/libdbi/libdbi-0.8.4.ebuild b/dev-db/libdbi/libdbi-0.8.4.ebuild index 22a454fc3a29..9b2ac730bc56 100644 --- a/dev-db/libdbi/libdbi-0.8.4.ebuild +++ b/dev-db/libdbi/libdbi-0.8.4.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/dev-db/libdbi/libdbi-0.8.4.ebuild,v 1.12 2012/10/07 15:42:06 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/libdbi/libdbi-0.8.4.ebuild,v 1.13 2013/05/14 02:23:38 jmbsvicetto Exp $ EAPI=4 @@ -31,6 +31,7 @@ src_unpack() { } src_prepare() { + epatch "${FILESDIR}/${P}-fix-ac-macro.patch" epatch "${FILESDIR}"/libdbi-0.8.1-pkg-config.patch cp -f "${FILESDIR}"/dbi.pc.in "${S}"/dbi.pc.in epatch "${FILESDIR}"/libdbi-0.8.4-doc-build-fix.patch |