commit: 6d130d75180042f6704840b060b6d37797789f26 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Sun Dec 1 13:45:07 2024 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Sun Dec 1 13:45:07 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d130d75
app-text/ps2pkm: build w/ -std=gnu17 Bug: https://bugs.gentoo.org/944098 Signed-off-by: Sam James <sam <AT> gentoo.org> app-text/ps2pkm/ps2pkm-1.8_p20240311.ebuild | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app-text/ps2pkm/ps2pkm-1.8_p20240311.ebuild b/app-text/ps2pkm/ps2pkm-1.8_p20240311.ebuild index eb69ea98433b..be4b632992a2 100644 --- a/app-text/ps2pkm/ps2pkm-1.8_p20240311.ebuild +++ b/app-text/ps2pkm/ps2pkm-1.8_p20240311.ebuild @@ -3,6 +3,8 @@ EAPI=8 +inherit flag-o-matic + DESCRIPTION="Tool that converts a PostScript type1 font into a corresponding TeX PK font" HOMEPAGE="https://tug.org/texlive/" SRC_URI="https://mirrors.ctan.org/systems/texlive/Source/texlive-${PV#*_p}-source.tar.xz" @@ -19,6 +21,9 @@ BDEPEND="virtual/pkgconfig" DOCS=( "ChangeLog" "CHANGES.type1" "README" "README.14m" "README.type1" ) src_configure() { + # bug #944098 + append-cflags -std=gnu17 + econf \ --with-system-kpathsea }
