summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-graphics/gtkwave/gtkwave_3.3.119.bb
diff options
context:
space:
mode:
authorWang Mingyu <wangmy@fujitsu.com>2024-04-17 09:40:20 +0800
committerKhem Raj <raj.khem@gmail.com>2024-04-21 10:52:43 -0700
commitf5b5519e11c087bce235740d68c09ffdeed945be (patch)
treeb66be482d518c3c9430577acd742151ece55c652 /meta-oe/recipes-graphics/gtkwave/gtkwave_3.3.119.bb
parent427cfb019972231a1d5db95233ef59251282bcc3 (diff)
downloadmeta-openembedded-f5b5519e11c087bce235740d68c09ffdeed945be.tar.gz
gtkwave: upgrade 3.3.117 -> 3.3.119
Changelog: =========== -Fix stems reader processing code broken in 3.3.114. -Update xml2stems to handle newer "loc" vs "fl" xml tags. -Change preg_regex_c_1 decl to use regex_t* as datatype. -Move gtkwave.appdata.xml to -io.github.gtkwave.GTKWave.metainfo.xml. -Fixed popen security advisories: -Fixed FST security advisories: -Fixed evcd2vcd security advisories: -Fixed VCD security advisories: -Fixed VZT security advisories: -Fixed LXT2 security advisories: -Remove FST_DO_MISALIGNED_OPS. -Update lz4 to current version from github. -Change LZ4_compress to LZ4_compress_default. -Update libghw.c/.h to latest upstream version. -Fix for -Wsign-compare in fstapi.c. -Security fixes for GHW. -Fix left shift of a negative number warning in fstapi.c. -Fix ctrl-A behavior for SST filter entry. -Fix for bad shmat return value in main.c. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-graphics/gtkwave/gtkwave_3.3.119.bb')
-rw-r--r--meta-oe/recipes-graphics/gtkwave/gtkwave_3.3.119.bb44
1 files changed, 44 insertions, 0 deletions
diff --git a/meta-oe/recipes-graphics/gtkwave/gtkwave_3.3.119.bb b/meta-oe/recipes-graphics/gtkwave/gtkwave_3.3.119.bb
new file mode 100644
index 0000000000..0b1b054041
--- /dev/null
+++ b/meta-oe/recipes-graphics/gtkwave/gtkwave_3.3.119.bb
@@ -0,0 +1,44 @@
1SUMMARY = "VCD (Value Change Dump) file waveform viewer"
2DESCRIPTION = "gtkwave is a viewer for VCD (Value Change Dump) files which are usually created by digital circuit simulators. (These files have no connection to video CDs!) "
3HOMEPAGE = "http://gtkwave.sourceforge.net/"
4
5LICENSE = "GPL-2.0-only"
6LIC_FILES_CHKSUM = "file://COPYING;md5=75859989545e37968a99b631ef42722e"
7
8SRC_URI = "http://gtkwave.sourceforge.net/gtkwave-gtk3-${PV}.tar.gz"
9SRC_URI[sha256sum] = "eab3e09e7641115c07848bfb30f7dd0c3bbe2b8cbe45017e95e077dbba6ac038"
10S = "${WORKDIR}/${BPN}-gtk3-${PV}"
11
12DEPENDS = " \
13 gperf-native \
14 gtk+3 \
15 gdk-pixbuf \
16 tcl \
17 tk \
18 bzip2 \
19 xz \
20 pango \
21 zlib \
22"
23
24inherit pkgconfig autotools gettext texinfo mime mime-xdg
25
26inherit features_check
27# depends on gtk+3 which has this restriction
28# ANY_OF_DISTRO_FEATURES = "${GTK3DISTROFEATURES}"
29# but https://github.com/gtkwave/gtkwave/blob/f9d82a82aa3ddc30ca47984278371f62c9a3bd81/gtkwave3-gtk3/src/gtk23compat.h#L10
30# explicitly includes gdk/gdkwayland.h for gtk-3.22.26 and newer (oe-core currently has 3.24.29)
31# and it needs x11 as well for tk dependency (so it happends to be both GTK3DISTROFEATURES instead of either of them)
32REQUIRED_DISTRO_FEATURES = "wayland x11"
33
34EXTRA_OECONF = " \
35 --enable-gtk3 \
36 --with-tcl=${STAGING_BINDIR_CROSS} \
37 --with-tk=${STAGING_BINDIR_CROSS} \
38 --with-tirpc \
39 --disable-mime-update \
40"
41
42FILES:${PN} = "${bindir} ${datadir}"
43
44RDEPENDS:${PN} += "tk-lib"