diff options
author | Sam James <sam@gentoo.org> | 2024-01-02 06:23:01 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2024-01-02 06:23:01 +0000 |
commit | 6c9a2e725a33fe7b2bf5a3028ca156ed89c19234 (patch) | |
tree | afe049d02116f0fb2dba7a5f791332a2c8b76e24 /media-gfx/pngnq | |
parent | media-sound/mpd: backport ffmpeg-6.1 fix (diff) | |
download | gentoo-6c9a2e725a33fe7b2bf5a3028ca156ed89c19234.tar.gz gentoo-6c9a2e725a33fe7b2bf5a3028ca156ed89c19234.tar.bz2 gentoo-6c9a2e725a33fe7b2bf5a3028ca156ed89c19234.zip |
media-gfx/pngnq: fix autoconf quoting
Closes: https://bugs.gentoo.org/921125
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'media-gfx/pngnq')
-rw-r--r-- | media-gfx/pngnq/files/pngnq-1.1-autoconf-quoting.patch | 12 | ||||
-rw-r--r-- | media-gfx/pngnq/pngnq-1.1-r1.ebuild | 3 |
2 files changed, 14 insertions, 1 deletions
diff --git a/media-gfx/pngnq/files/pngnq-1.1-autoconf-quoting.patch b/media-gfx/pngnq/files/pngnq-1.1-autoconf-quoting.patch new file mode 100644 index 000000000000..375c42d332c2 --- /dev/null +++ b/media-gfx/pngnq/files/pngnq-1.1-autoconf-quoting.patch @@ -0,0 +1,12 @@ +https://bugs.gentoo.org/921125 +--- a/configure.ac ++++ b/configure.ac +@@ -1,7 +1,7 @@ + # Autoconf for pngnq + + AC_INIT([pngnq],[1.1], [stuart.coyle@gmail.com]) +-AM_INIT_AUTOMAKE[-Wall -Werror] ++AM_INIT_AUTOMAKE([-Wall -Werror]) + AC_COPYRIGHT([Copyright 2008-2011, Stuart Coyle]) + + # check for progs diff --git a/media-gfx/pngnq/pngnq-1.1-r1.ebuild b/media-gfx/pngnq/pngnq-1.1-r1.ebuild index 4558a9745a30..ee0a6de62dfe 100644 --- a/media-gfx/pngnq/pngnq-1.1-r1.ebuild +++ b/media-gfx/pngnq/pngnq-1.1-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -21,6 +21,7 @@ PATCHES=( "${FILESDIR}"/${PN}-1.0-libpng14.patch "${FILESDIR}"/${PN}-1.0-libpng15.patch "${FILESDIR}"/${PN}-1.0-Wimplicit-function-declaration.patch + "${FILESDIR}"/${PN}-1.1-autoconf-quoting.patch ) src_prepare() { |