blob: 24e4663711cc8d4bbc816782f41c47c89cda8d7d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="A number of simple utilities for manipulating HTML and XML files"
HOMEPAGE="https://www.w3.org/Tools/HTML-XML-utils/"
SRC_URI="https://www.w3.org/Tools/HTML-XML-utils/${P}.tar.gz"
LICENSE="W3C"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x86-linux ~ppc-macos"
RDEPEND="
net-dns/libidn2:=
net-misc/curl
"
DEPEND="${RDEPEND}"
src_prepare() {
default
sed -e "/doc_DATA = COPYING/d" -i Makefile.in || die
}
src_test() {
# Lots of tests lack a shebang and use bashisms
# (seems to be better wrt bashisms as of 8.6, but still no shebang. recheck?)
# (as of 8.7 4 tests fail with app-shells/dash)
emake check SHELL="${BROOT}"/bin/bash
}
|