diff options
author | Alexandre Rostovtsev <tetromino@gentoo.org> | 2013-10-04 22:52:59 +0000 |
---|---|---|
committer | Alexandre Rostovtsev <tetromino@gentoo.org> | 2013-10-04 22:52:59 +0000 |
commit | 6c9e1f78802aa1d45a069cddf91d45b4b9f2fe8b (patch) | |
tree | 84f13150294e57dd0b98b971cf1fd4098400e08a /x11-themes/tango-icon-theme-extras | |
parent | Version bump for gnome-3.10, but should be compatible with almost everything ... (diff) | |
download | gentoo-2-6c9e1f78802aa1d45a069cddf91d45b4b9f2fe8b.tar.gz gentoo-2-6c9e1f78802aa1d45a069cddf91d45b4b9f2fe8b.tar.bz2 gentoo-2-6c9e1f78802aa1d45a069cddf91d45b4b9f2fe8b.zip |
Fix build failure with automake-1.13 (bug #486906, thanks to Agostino Sarubbo and Samuli Suominen).
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key CF0ADD61)
Diffstat (limited to 'x11-themes/tango-icon-theme-extras')
3 files changed, 23 insertions, 2 deletions
diff --git a/x11-themes/tango-icon-theme-extras/ChangeLog b/x11-themes/tango-icon-theme-extras/ChangeLog index da9a5b6a581e..bde5c5c0c784 100644 --- a/x11-themes/tango-icon-theme-extras/ChangeLog +++ b/x11-themes/tango-icon-theme-extras/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for x11-themes/tango-icon-theme-extras # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-themes/tango-icon-theme-extras/ChangeLog,v 1.27 2013/02/07 23:08:08 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-themes/tango-icon-theme-extras/ChangeLog,v 1.28 2013/10/04 22:52:58 tetromino Exp $ + + 04 Oct 2013; Alexandre Rostovtsev <tetromino@gentoo.org> + tango-icon-theme-extras-0.1.0-r1.ebuild, + +files/tango-icon-theme-extras-0.1.0-MKDIR_P.patch: + Fix build failure with automake-1.13 (bug #486906, thanks to Agostino Sarubbo + and Samuli Suominen). 07 Feb 2013; Ulrich Müller <ulm@gentoo.org> tango-icon-theme-extras-0.1.0-r1.ebuild: diff --git a/x11-themes/tango-icon-theme-extras/files/tango-icon-theme-extras-0.1.0-MKDIR_P.patch b/x11-themes/tango-icon-theme-extras/files/tango-icon-theme-extras-0.1.0-MKDIR_P.patch new file mode 100644 index 000000000000..f757248c8f54 --- /dev/null +++ b/x11-themes/tango-icon-theme-extras/files/tango-icon-theme-extras-0.1.0-MKDIR_P.patch @@ -0,0 +1,14 @@ +https://bugs.gentoo.org/show_bug.cgi?id=486906 + +diff --git a/configure.ac b/configure.ac +index ce2bc5f..21cc450 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -6,6 +6,7 @@ AC_CONFIG_SRCDIR([svg2png.sh.in]) + + AM_INIT_AUTOMAKE([1.9 tar-ustar]) + ++AC_PROG_MKDIR_P + PKG_PROG_PKG_CONFIG([0.19]) + + # Workaround to make aclocal get the right flags diff --git a/x11-themes/tango-icon-theme-extras/tango-icon-theme-extras-0.1.0-r1.ebuild b/x11-themes/tango-icon-theme-extras/tango-icon-theme-extras-0.1.0-r1.ebuild index dad87601ca86..711e357503a8 100644 --- a/x11-themes/tango-icon-theme-extras/tango-icon-theme-extras-0.1.0-r1.ebuild +++ b/x11-themes/tango-icon-theme-extras/tango-icon-theme-extras-0.1.0-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-themes/tango-icon-theme-extras/tango-icon-theme-extras-0.1.0-r1.ebuild,v 1.17 2013/02/07 23:08:08 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-themes/tango-icon-theme-extras/tango-icon-theme-extras-0.1.0-r1.ebuild,v 1.18 2013/10/04 22:52:58 tetromino Exp $ EAPI=4 inherit autotools eutils gnome2-utils @@ -27,6 +27,7 @@ DOCS="AUTHORS ChangeLog NEWS README" src_prepare() { epatch "${FILESDIR}"/${P}-graphicsmagick.patch + epatch "${FILESDIR}"/${P}-MKDIR_P.patch sed -i -e '/svgconvert_prog/s:rsvg:&-convert:' configure{,.ac} || die #413183 eautoreconf } |