sci-electronics/gtkwave: added latest version 3.3.121

Closes: https://bugs.gentoo.org/906602
Closes: https://bugs.gentoo.org/910340
Closes: https://bugs.gentoo.org/928738
Signed-off-by: Fabio Rossi <rossi.f@inwind.it>
Closes: https://github.com/gentoo/gentoo/pull/38923
Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Fabio Rossi
2024-10-07 15:27:08 +02:00
committed by Sam James
parent 79fc88962c
commit 74fc3e98fb
2 changed files with 66 additions and 0 deletions

View File

@@ -1,2 +1,3 @@
DIST gtkwave-3.3.106.tar.gz 3507185 BLAKE2B 89389c6eef2fb80b82b048fc94248cf6b30ec0d8fea1260189f2ea1f143123e0294d00f93a0c25f777b6e2c188041af16f4e26e5206e0c65fe23c1f058b19186 SHA512 4deec8dc88210ae542b8066763265450530756d34babf10c7820fe27b23d01e6d2f084ec74b7b0730a645fcb667ba3c0d2dcfb4111e702a523805041dc96768a
DIST gtkwave-gtk3-3.3.111.tar.gz 3329907 BLAKE2B 523c5b3cb75581d9828d6a1e61df66a0a85ccc41415c9971affaf347948bc7a3b7850cf8abe4f3e57dab56d2f54722a121a8d3b757993d008e1598e4f2ce8843 SHA512 407c1ca87d9645940201c876846e7e6f5e4af67b919a4f63061adc017b2797be5ba10bb9bf132f1b86dff111a64b774e41b8b1630fc99997b5270622eda44c0c
DIST gtkwave-gtk3-3.3.121.tar.gz 3367669 BLAKE2B 42a015de4d569bd41ac54972d1c4998abb753049e3f28d270c693f8108d5c2d56322494c899cc33121c8fcb01bdace90678fb014f039553284dc317a3dbb190c SHA512 d440a3553125490800f801d5f23461c0745e511c518e0eedd346a2fe2a087c4362488f4a018cba0b22af694e433b070fef882453b9c49e6d9fbe2e1b44966d26

View File

@@ -0,0 +1,65 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit toolchain-funcs xdg
DESCRIPTION="A wave viewer for LXT, LXT2, VZT, GHW and standard Verilog VCD/EVCD files"
HOMEPAGE="http://gtkwave.sourceforge.net/"
SRC_URI="https://downloads.sourceforge.net/${PN}/${PN}-gtk3-${PV}.tar.gz"
LICENSE="GPL-2 MIT"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
IUSE="doc examples fasttree judy lzma packed tcl"
RDEPEND="
dev-libs/glib:2
sys-libs/zlib
x11-libs/pango
x11-libs/gtk+:3
judy? ( dev-libs/judy )
tcl? ( dev-lang/tcl:0 dev-lang/tk:0 )
lzma? ( app-arch/xz-utils )"
DEPEND="${RDEPEND}"
BDEPEND="
dev-util/gperf
virtual/pkgconfig"
# Add '-gtk3-' to the pacakge name
S="${WORKDIR}/${PN}-gtk3-${PV}"
src_prepare() {
default
# do not install doc and examples by default
sed -i -e 's/doc examples//' Makefile.in || die
}
src_configure() {
econf \
--disable-mime-update \
--enable-largefile \
--enable-gtk3 \
$(use_enable packed struct-pack) \
$(use_enable tcl) \
$(use_enable lzma xz) \
$(use_enable fasttree) \
$(use_enable judy)
}
src_compile() {
emake AR="$(tc-getAR)"
}
src_install() {
default
use doc && dodoc doc/${PN}.odt
if use examples; then
rm examples/Makefile* || die
dodoc -r examples
docompress -x /usr/share/doc/${PF}/examples
fi
}