Diff libdom-0.4.1-r1 with a libdom-9999

/usr/portage/net-libs/libdom/libdom-9999.ebuild 2023-10-09 14:52:34.476368476 +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
EAPI=7
4
EAPI=8
5 5

  
6
inherit netsurf
6
inherit git-r3 netsurf
7 7

  
8 8
DESCRIPTION="implementation of the W3C DOM, written in C"
9
HOMEPAGE="http://www.netsurf-browser.org/projects/libdom/"
10
SRC_URI="https://download.netsurf-browser.org/libs/releases/${P}-src.tar.gz"
9
HOMEPAGE="https://www.netsurf-browser.org/projects/libdom/"
11 10

  
11
EGIT_REPO_URI="https://git.netsurf-browser.org/${PN}.git"
12 12
LICENSE="MIT"
13 13
SLOT="0/${PV}"
14
KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
14
KEYWORDS=""
15 15
IUSE="expat test xml"
16 16

  
17 17
RESTRICT="!test? ( test )"
......
21 21
	dev-libs/libwapcaplet
22 22
	net-libs/libhubbub
23 23
	xml? (
24
		expat? ( >=dev-libs/expat-2.1.0-r3 )
25
		!expat? ( >=dev-libs/libxml2-2.9.1-r4 )
24
		expat? ( dev-libs/expat )
25
		!expat? ( dev-libs/libxml2 )
26 26
	)"
27 27
DEPEND="${RDEPEND}
28 28
	test? (
Thank you!