diff options
author | Michael Mair-Keimberger <m.mairkeimberger@gmail.com> | 2018-06-28 20:40:44 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2018-07-06 23:47:55 +0200 |
commit | 888941185b4a5a3ee95a1f3dd86c1093d7d18ef6 (patch) | |
tree | fad7d2652cbe1d0c2538ccc9d3f775ea189b2b33 /net-dns/valtz | |
parent | net-dns/valtz: use HTTPs (diff) | |
download | gentoo-888941185b4a5a3ee95a1f3dd86c1093d7d18ef6.tar.gz gentoo-888941185b4a5a3ee95a1f3dd86c1093d7d18ef6.tar.bz2 gentoo-888941185b4a5a3ee95a1f3dd86c1093d7d18ef6.zip |
net-dns/valtz: add EAPI7 ebuild
Diffstat (limited to 'net-dns/valtz')
-rw-r--r-- | net-dns/valtz/valtz-0.7-r1.ebuild | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/net-dns/valtz/valtz-0.7-r1.ebuild b/net-dns/valtz/valtz-0.7-r1.ebuild new file mode 100644 index 000000000000..4e9cc257f220 --- /dev/null +++ b/net-dns/valtz/valtz-0.7-r1.ebuild @@ -0,0 +1,20 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Validation tool for tinydns-data zone files" +SRC_URI="https://x42.com/software/valtz/${PN}.tgz" +HOMEPAGE="https://x42.com/software/valtz/" +IUSE="" + +SLOT="0" +LICENSE="BSD" +KEYWORDS="~amd64 ~x86" + +RDEPEND="dev-lang/perl" + +src_install() { + dobin valtz + dodoc README CHANGES +} |