Diff gtkwave-3.3.106 with a gtkwave-3.3.111

/usr/portage/sci-electronics/gtkwave/gtkwave-3.3.111.ebuild 2023-10-09 14:52:35.044368490 +0300
1 1
# Copyright 1999-2023 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4
EAPI=7
4
EAPI=8
5 5

  
6 6
inherit toolchain-funcs xdg
7 7

  
8 8
DESCRIPTION="A wave viewer for LXT, LXT2, VZT, GHW and standard Verilog VCD/EVCD files"
9 9
HOMEPAGE="http://gtkwave.sourceforge.net/"
10
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
10
SRC_URI="mirror://sourceforge/${PN}/${PN}-gtk3-${PV}.tar.gz"
11 11

  
12 12
LICENSE="GPL-2 MIT"
13 13
SLOT="0"
14 14
KEYWORDS="amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
15
IUSE="doc examples fasttree fatlines judy lzma packed tcl"
15
IUSE="doc examples fasttree judy lzma packed tcl"
16 16

  
17 17
RDEPEND="
18 18
	dev-libs/glib:2
19 19
	sys-libs/zlib
20
	x11-libs/gtk+:2
21 20
	x11-libs/pango
21
	x11-libs/gtk+:3[wayland]
22 22
	judy? ( dev-libs/judy )
23 23
	tcl? ( dev-lang/tcl:0 dev-lang/tk:0 )
24 24
	lzma? ( app-arch/xz-utils )"
......
27 27
	dev-util/gperf
28 28
	virtual/pkgconfig"
29 29

  
30
# Add '-gtk3-' to the pacakge name
31
S="${WORKDIR}/${PN}-gtk3-${PV}"
32

  
30 33
src_prepare() {
31 34
	default
32 35

  
......
36 39

  
37 40
src_configure() {
38 41
	econf \
39
		--disable-local-libz \
40
		--disable-local-libbz2 \
41 42
		--disable-mime-update \
42 43
		--enable-largefile \
44
		--enable-gtk3 \
43 45
		$(use_enable packed struct-pack) \
44
		$(use_enable fatlines) \
45 46
		$(use_enable tcl) \
46 47
		$(use_enable lzma xz) \
47 48
		$(use_enable fasttree) \
Thank you!