media-sound/tagtool: add missing stdbool header

This is safe transformation.

Closes: https://bugs.gentoo.org/961421
Signed-off-by: NHOrus <jy6x2b32pie9@yahoo.com>
Part-of: https://codeberg.org/gentoo/gentoo/pulls/288
Merges: https://codeberg.org/gentoo/gentoo/pulls/288
Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
NHOrus
2026-03-10 20:44:51 +03:00
committed by Sam James
parent b20e4256ca
commit 05e67c4e51
2 changed files with 66 additions and 0 deletions
@@ -0,0 +1,13 @@
https://bugs.gentoo.org/961421
Could be done safely, as this is leaf package, bools don't escape
and aren't used in parsing actual tag frames from the media.
--- a/src/aux_id3lib.c
+++ b/src/aux_id3lib.c
@@ -11,6 +11,7 @@
*/
#include "config.h"
+#include <stdbool.h>
#ifdef LIBID3_MISSING_ID3FRAMEINFO
@@ -0,0 +1,53 @@
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools flag-o-matic xdg
DESCRIPTION="Audio Tag Tool Ogg/Mp3 Tagger"
HOMEPAGE="https://sourceforge.net/projects/tagtool/"
SRC_URI="https://sourceforge.net/projects/${PN}/files/${PN}/${PV}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE="mp3 +vorbis"
REQUIRED_USE="|| ( mp3 vorbis )"
RDEPEND="
x11-libs/gtk+:2
>=gnome-base/libglade-2.6
mp3? ( >=media-libs/id3lib-3.8.3-r6 )
vorbis? ( >=media-libs/libvorbis-1 )"
DEPEND="${RDEPEND}"
BDEPEND="virtual/pkgconfig"
PATCHES=(
"${FILESDIR}"/${P}-autotools.patch
"${FILESDIR}"/${P}-QA-desktop.patch
"${FILESDIR}"/${P}-bool.patch
)
src_prepare() {
default
eautoreconf
}
src_configure() {
# bug #945267
append-cflags -std=gnu17
econf \
$(use_enable mp3) \
$(use_enable vorbis)
}
src_install() {
emake \
DESTDIR="${D}" \
GNOME_SYSCONFDIR="${ED}"/etc \
sysdir="${ED}"/usr/share/applets/Multimedia \
install
einstalldocs
}