31 lines
652 B
Bash
31 lines
652 B
Bash
# Copyright 1999-2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
DIST_AUTHOR=EHUELS
|
|
DIST_VERSION=3.12
|
|
inherit perl-module
|
|
|
|
DESCRIPTION="LaTeX support for the Template Toolkit"
|
|
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ~arm arm64 ppc ppc64 ~riscv x86 ~amd64-linux ~x86-linux"
|
|
IUSE="test"
|
|
RESTRICT="!test? ( test )"
|
|
|
|
RDEPEND="
|
|
>=dev-perl/LaTeX-Driver-0.70.0
|
|
>=dev-perl/LaTeX-Encode-0.20.0
|
|
dev-perl/LaTeX-Table
|
|
>=dev-perl/Template-Toolkit-2.160.0
|
|
app-text/texlive[xetex]
|
|
"
|
|
src_test() {
|
|
LATEX_TESTING=1 perl-module_src_test
|
|
}
|
|
|
|
DEPEND="${RDEPEND}
|
|
virtual/perl-ExtUtils-MakeMaker
|
|
test? ( virtual/perl-Test-Harness )
|
|
"
|