summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlfredo Tupone <tupone@gentoo.org>2023-03-12 17:34:08 +0100
committerAlfredo Tupone <tupone@gentoo.org>2023-03-12 17:34:59 +0100
commit3815e59bcf82938d601af954f2cda6778bbb9a5d (patch)
treecbb049e22ea61317f773ea15c6bba2c1765d9502 /dev-tcltk/tkzinc/tkzinc-3.3.6-r1.ebuild
parentapp-crypt/yubikey-manager-qt: replace inactive maintainer (diff)
downloadgentoo-3815e59bcf82938d601af954f2cda6778bbb9a5d.tar.gz
gentoo-3815e59bcf82938d601af954f2cda6778bbb9a5d.tar.bz2
gentoo-3815e59bcf82938d601af954f2cda6778bbb9a5d.zip
dev-tcltk/tkzinc: fix some gcc13 warnings
Signed-off-by: Alfredo Tupone <tupone@gentoo.org>
Diffstat (limited to 'dev-tcltk/tkzinc/tkzinc-3.3.6-r1.ebuild')
-rw-r--r--dev-tcltk/tkzinc/tkzinc-3.3.6-r1.ebuild65
1 files changed, 0 insertions, 65 deletions
diff --git a/dev-tcltk/tkzinc/tkzinc-3.3.6-r1.ebuild b/dev-tcltk/tkzinc/tkzinc-3.3.6-r1.ebuild
deleted file mode 100644
index 43bc5ca4dc1e..000000000000
--- a/dev-tcltk/tkzinc/tkzinc-3.3.6-r1.ebuild
+++ /dev/null
@@ -1,65 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools
-
-DESCRIPTION="A Tk widget library"
-HOMEPAGE="http://www.tkzinc.org"
-SRC_URI="http://www.tkzinc.org/Packages/Tkzinc-${PV}plus.tar.gz"
-
-LICENSE="LGPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE="debug doc threads"
-
-DEPEND="
- dev-lang/tk:=
- media-libs/glew:=
- virtual/opengl
- doc? ( virtual/latex-base )"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/Tkzinc-${PV//.}+"
-
-PATCHES=(
- "${FILESDIR}"/${PV}-ldflags.patch
- "${FILESDIR}"/${PN}-3.3.4-latex.patch
- "${FILESDIR}"/${P}-clang.patch
-)
-
-QA_CONFIG_IMPL_DECL_SKIP=(
- stat64 # used to test for Large File Support
-)
-
-HTML_DOCS='doc/*png doc/*html doc/*css'
-
-src_prepare() {
- default
- eautoreconf
-}
-
-src_configure() {
- econf \
- --enable-shared \
- --enable-gl=damage \
- $(use_enable debug symbols) \
- $(use_enable threads)
-}
-
-src_compile() {
- default
- if use doc; then
- VARTEXFONTS="${T}"/fonts emake pdf
- fi
-}
-
-src_install() {
- default
- use doc && dodoc doc/refman.pdf
-}
-
-src_test() {
- emake test
-}