Diff tilda-1.5.4 with a tilda-2.0.0

/usr/portage/x11-terms/tilda/tilda-2.0.0.ebuild 2026-04-22 12:17:37.005548052 +0300
1
# Copyright 1999-2022 Gentoo Authors
1
# Copyright 1999-2026 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=8
......
9 9
HOMEPAGE="https://github.com/lanoxx/tilda"
10 10
SRC_URI="https://github.com/lanoxx/tilda/archive/${P}.tar.gz"
11 11

  
12
S="${WORKDIR}/${PN}-${P}"
13

  
12 14
LICENSE="GPL-2"
13 15
SLOT="0"
14 16
KEYWORDS="amd64 ~arm64 ppc ~ppc64 ~riscv x86"
......
17 19
	>=dev-libs/glib-2.8.4:2
18 20
	dev-libs/confuse:=
19 21
	gnome-base/libglade
20
	x11-libs/gtk+:3
21
	x11-libs/libX11"
22
	x11-libs/gtk+:3[X]
23
	x11-libs/libX11
24
"
22 25
DEPEND="${RDEPEND}"
23 26
BDEPEND="virtual/pkgconfig
24 27
	sys-devel/gettext"
25 28

  
26
S="${WORKDIR}/${PN}-${P}"
29
PATCHES=(
30
	"${FILESDIR}"/${PN}-2.0.0-fix_bashism.patch
31
)
27 32

  
28 33
src_prepare() {
29 34
	default
30
	append-cflags -std=c99
35
	# 972749 expose popen()
36
	# see also https://github.com/lanoxx/tilda/issues/522
37
	append-cppflags -D_POSIX_C_SOURCE
31 38
	eautoreconf
32 39
}
Thank you!