diff options
author | 2016-01-08 14:11:54 +0100 | |
---|---|---|
committer | 2016-01-08 15:00:12 +0100 | |
commit | dbdc934f9100f40979e283d19843ed9a36364f41 (patch) | |
tree | 10fb7a92a55274770822a104a000fc3c3505aac6 /net-dns/dnssec-lookup/dnssec-lookup-2.2.ebuild | |
parent | profiles/package.mask: g15macro fixed (diff) | |
download | gentoo-dbdc934f9100f40979e283d19843ed9a36364f41.tar.gz gentoo-dbdc934f9100f40979e283d19843ed9a36364f41.tar.bz2 gentoo-dbdc934f9100f40979e283d19843ed9a36364f41.zip |
net-dns/dnssec-lookup: Version bump.
Package-Manager: portage-2.2.26
Diffstat (limited to 'net-dns/dnssec-lookup/dnssec-lookup-2.2.ebuild')
-rw-r--r-- | net-dns/dnssec-lookup/dnssec-lookup-2.2.ebuild | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/net-dns/dnssec-lookup/dnssec-lookup-2.2.ebuild b/net-dns/dnssec-lookup/dnssec-lookup-2.2.ebuild new file mode 100644 index 000000000000..e1a19c1a6075 --- /dev/null +++ b/net-dns/dnssec-lookup/dnssec-lookup-2.2.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit qt4-r2 + +MY_PN=${PN/dnssec-/} +MY_P=${MY_PN}-${PV} +DESCRIPTION="DNS lookup utility that supports DNSSEC validation" +HOMEPAGE="http://www.dnssec-tools.org" +SRC_URI="http://www.dnssec-tools.org/download/${MY_P}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +RDEPEND="=net-dns/dnssec-validator-${PV}[threads] + dev-qt/qtgui:4" +DEPEND="${RDEPEND}" + +S=${WORKDIR}/${MY_P} + +src_configure() { + eqmake4 ${MY_PN}.pro PREFIX=/usr +} + +src_install() { + newbin src/build/${MY_PN} ${PN} + + newicon data/64x64/${MY_PN}.png ${PN}.png + newicon data/maemo/${MY_PN}.xpm ${PN}.xpm + make_desktop_entry ${PN} + + newman man/${MY_PN}.1 ${PN}.1 +} |