Diff linuxdoc-tools-0.9.73-r1 with a linuxdoc-tools-0.9.82

/usr/portage/app-text/linuxdoc-tools/linuxdoc-tools-0.9.82.ebuild 2023-10-09 14:52:28.884368335 +0300
1
# Copyright 1999-2022 Gentoo Authors
1
# Copyright 1999-2023 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=7
......
7 7

  
8 8
DESCRIPTION="A toolset for processing LinuxDoc DTD SGML files"
9 9
HOMEPAGE="https://gitlab.com/agmartin/linuxdoc-tools"
10
SRC_URI="https://gitlab.com/agmartin/linuxdoc-tools/-/archive/${PV}/${P}.tar.gz"
10
SRC_URI="https://gitlab.com/agmartin/linuxdoc-tools/-/archive/${PV}/${P}.tar.bz2"
11 11

  
12 12
LICENSE="GPL-3+ MIT SGMLUG"
13 13
SLOT="0"
......
20 20
	dev-lang/perl:=
21 21
	sys-apps/groff
22 22
"
23
DEPEND="${RDEPEND}
24
	sys-devel/flex
23
DEPEND="${RDEPEND}"
24
BDEPEND="
25 25
	app-alternatives/awk
26
	sys-devel/flex
26 27
	doc? (
27 28
		dev-texlive/texlive-fontsrecommended
28 29
		virtual/latex-base
29 30
	)
30 31
"
31 32

  
33
PATCHES=(
34
	"${FILESDIR}"/${PN}-0.9.82-configure-clang16.patch
35
)
36

  
32 37
src_prepare() {
33
	default_src_prepare
38
	default
39

  
34 40
	# Pregenerated configure scripts fail.
35 41
	eautoreconf
36 42
}
......
52 58
src_compile() {
53 59
	# Prevent access violations from bitmap font files generation.
54 60
	use doc && export VARTEXFONTS="${T}/fonts"
55
	default_src_compile
61

  
62
	default
56 63
}
57 64

  
58 65
src_install() {
Thank you!