diff options
author | Sam James <sam@gentoo.org> | 2024-12-01 13:46:08 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2024-12-01 13:46:08 +0000 |
commit | 401eaca8212670cc2f79cb7c4664a662c1b605b1 (patch) | |
tree | cebeedc9d2e6f5dd008ef3e38638606058b798d5 /dev-tex | |
parent | app-text/ps2pkm: build w/ -std=gnu17 (diff) | |
download | gentoo-401eaca8212670cc2f79cb7c4664a662c1b605b1.tar.gz gentoo-401eaca8212670cc2f79cb7c4664a662c1b605b1.tar.bz2 gentoo-401eaca8212670cc2f79cb7c4664a662c1b605b1.zip |
dev-tex/sketch: build w/ -std=gnu17
Bug: https://bugs.gentoo.org/943829
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-tex')
-rw-r--r-- | dev-tex/sketch/sketch-0.3.7.ebuild | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/dev-tex/sketch/sketch-0.3.7.ebuild b/dev-tex/sketch/sketch-0.3.7.ebuild index 224a68f6c88c..a5c4eefaa58a 100644 --- a/dev-tex/sketch/sketch-0.3.7.ebuild +++ b/dev-tex/sketch/sketch-0.3.7.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -inherit edos2unix toolchain-funcs +inherit edos2unix flag-o-matic toolchain-funcs DESCRIPTION="Produces drawings of two- or three-dimensional solid objects and scenes for TeX" HOMEPAGE="https://www.frontiernet.net/~eugene.ressler/" @@ -24,6 +24,8 @@ src_prepare() { } src_compile() { + # bug #943829 + append-cflags -std=gnu17 emake CC="$(tc-getCC)" LDFLAGS="${LDFLAGS}" } |