diff options
author | Alfredo Tupone <tupone@gentoo.org> | 2021-10-25 22:18:39 +0200 |
---|---|---|
committer | Alfredo Tupone <tupone@gentoo.org> | 2021-10-25 22:18:39 +0200 |
commit | 9bbb8130079a513ab43610415bf293040ed3bcf2 (patch) | |
tree | 7567913bd204c80cf7e14996f16225450210c8b6 /dev-tcltk | |
parent | dev-python/pypy3-exe-bin: Bump to 7.3.7 (diff) | |
download | gentoo-9bbb8130079a513ab43610415bf293040ed3bcf2.tar.gz gentoo-9bbb8130079a513ab43610415bf293040ed3bcf2.tar.bz2 gentoo-9bbb8130079a513ab43610415bf293040ed3bcf2.zip |
dev-tcltk/tclperl: migrate to EAPI 7
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Alfredo Tupone <tupone@gentoo.org>
Diffstat (limited to 'dev-tcltk')
-rw-r--r-- | dev-tcltk/tclperl/tclperl-3.2-r1.ebuild | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/dev-tcltk/tclperl/tclperl-3.2-r1.ebuild b/dev-tcltk/tclperl/tclperl-3.2-r1.ebuild index 64e82c79a3e1..199adc9af13d 100644 --- a/dev-tcltk/tclperl/tclperl-3.2-r1.ebuild +++ b/dev-tcltk/tclperl/tclperl-3.2-r1.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=7 -inherit flag-o-matic multilib toolchain-funcs +inherit flag-o-matic toolchain-funcs DESCRIPTION="Perl package for Tcl" HOMEPAGE="http://jfontain.free.fr/tclperl.htm" @@ -20,6 +20,9 @@ DEPEND=" sys-libs/binutils-libs" RDEPEND="${DEPEND}" +DOCS=( CHANGES README) +HTML_DOCS=( tclperl.htm ) + src_compile() { append-flags -fPIC @@ -36,7 +39,5 @@ src_install() { exeinto /usr/$(get_libdir)/${P} doexe tclperl.so.${PV} doexe pkgIndex.tcl - - dodoc CHANGES README - dohtml tclperl.htm + einstalldocs } |