gentoo/dev-perl/HTML-Mason/HTML-Mason-1.600.0-r1.ebuild
Andreas K. Hüttel 0f603fdff2
dev-perl/HTML-Mason: EAPI bump
Signed-off-by: Andreas K. Hüttel <dilfridge@gentoo.org>
2025-06-29 22:08:50 +02:00

63 lines
1.3 KiB
Bash

# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DIST_AUTHOR=DROLSKY
DIST_VERSION=1.60
inherit depend.apache perl-module
DESCRIPTION="A HTML development and delivery Perl Module"
HOMEPAGE="http://www.masonhq.com/ https://metacpan.org/release/HTML-Mason"
SLOT="0"
KEYWORDS="amd64 ppc ~riscv x86"
IUSE="modperl"
RDEPEND="
!modperl? ( >=dev-perl/CGI-2.460.0 )
modperl? (
www-apache/libapreq2
>=www-apache/mod_perl-2
)
>=dev-perl/Cache-Cache-1
>=dev-perl/Class-Container-0.70.0
>=dev-perl/Exception-Class-1.150.0
dev-perl/HTML-Parser
>=dev-perl/Log-Any-0.80.0
>=dev-perl/Params-Validate-0.70.0
"
DEPEND="${RDEPEND}"
BDEPEND="
test? (
>=virtual/perl-Test-Simple-0.880.0
dev-perl/Test-Output
)
"
want_apache2 modperl
mydoc="CREDITS UPGRADE"
myconf="--noprompts"
pkg_setup() {
depend.apache_pkg_setup modperl
perl_set_version
}
src_prepare() {
# Note about new modperl use flag
if use !modperl ; then
ewarn "HTML-Mason will only install with modperl support"
ewarn "if the use flag modperl is enabled."
fi
# rendhalver - needed to set an env var for the build script so it finds our apache.
export APACHE="${APACHE_BIN}"
perl-module_src_prepare
}
src_install() {
perl-module_src_install
mv "${ED}"/usr/bin/convert* "${ED}"/usr/share/doc/${PF} || die
}