mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-06 12:58:16 -07:00
Upstream changes: - Remove Distzilla (fixes '.' in @INC) - Add POD to htmltree - Speed up is_inside method - Fix extra spaces being added to comments - Don't needlessly escape characters in element content Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=614800 Package-Manager: Portage-2.3.3, Repoman-2.3.2
29 lines
672 B
Bash
29 lines
672 B
Bash
# Copyright 1999-2017 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=5
|
|
|
|
MODULE_AUTHOR=JFEARN
|
|
MODULE_VERSION=5.04
|
|
inherit perl-module
|
|
|
|
DESCRIPTION="A library to manage HTML-Tree in PERL"
|
|
|
|
SLOT="0"
|
|
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
|
|
IUSE="test"
|
|
|
|
RDEPEND="
|
|
>=dev-perl/HTML-Tagset-3.03
|
|
>=dev-perl/HTML-Parser-3.46
|
|
"
|
|
# dev-perl/HTML-Format
|
|
DEPEND="${RDEPEND}
|
|
dev-perl/Module-Build
|
|
test? (
|
|
dev-perl/Test-Fatal
|
|
)
|
|
"
|
|
|
|
SRC_TEST="do"
|