diff options
author | Andrej Kacian <ticho@gentoo.org> | 2008-04-24 16:44:16 +0000 |
---|---|---|
committer | Andrej Kacian <ticho@gentoo.org> | 2008-04-24 16:44:16 +0000 |
commit | c0b63b87bd67c7a537497f714c243b6bd1800bf5 (patch) | |
tree | 02fe2763f808f663d6b4386c0d8e6dd3c5a8d5f5 /net-dns/dlint | |
parent | Version bump (diff) | |
download | gentoo-2-c0b63b87bd67c7a537497f714c243b6bd1800bf5.tar.gz gentoo-2-c0b63b87bd67c7a537497f714c243b6bd1800bf5.tar.bz2 gentoo-2-c0b63b87bd67c7a537497f714c243b6bd1800bf5.zip |
Version bump. Bug #219110 by Alexander Skwar.
(Portage version: 2.1.4.4)
Diffstat (limited to 'net-dns/dlint')
-rw-r--r-- | net-dns/dlint/ChangeLog | 7 | ||||
-rw-r--r-- | net-dns/dlint/dlint-1.4.0-r2.ebuild | 4 | ||||
-rw-r--r-- | net-dns/dlint/dlint-1.4.1.ebuild | 33 |
3 files changed, 41 insertions, 3 deletions
diff --git a/net-dns/dlint/ChangeLog b/net-dns/dlint/ChangeLog index 91e5cfe0b5a0..ab993900ac90 100644 --- a/net-dns/dlint/ChangeLog +++ b/net-dns/dlint/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-dns/dlint # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-dns/dlint/ChangeLog,v 1.15 2008/01/21 18:35:14 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dns/dlint/ChangeLog,v 1.16 2008/04/24 16:44:16 ticho Exp $ + +*dlint-1.4.1 (24 Apr 2008) + + 24 Apr 2008; Andrej Kacian <ticho@gentoo.org> +dlint-1.4.1.ebuild: + Version bump. Bug #219110 by Alexander Skwar. 21 Jan 2008; Raúl Porcel <armin76@gentoo.org> -dlint-1.4.0.ebuild, -dlint-1.4.0-r1.ebuild: diff --git a/net-dns/dlint/dlint-1.4.0-r2.ebuild b/net-dns/dlint/dlint-1.4.0-r2.ebuild index af793c946119..f3d3f5b8dade 100644 --- a/net-dns/dlint/dlint-1.4.0-r2.ebuild +++ b/net-dns/dlint/dlint-1.4.0-r2.ebuild @@ -1,11 +1,11 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-dns/dlint/dlint-1.4.0-r2.ebuild,v 1.4 2008/01/21 18:30:59 welp Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dns/dlint/dlint-1.4.0-r2.ebuild,v 1.5 2008/04/24 16:44:16 ticho Exp $ inherit eutils fixheadtails S=${WORKDIR}/${P/-/} -DESCRIPTION="Dlint analyzes any DNS zone you specify, and reports any problems it finds by displaying errors and warnings" +DESCRIPTION="Dlint analyzes any DNS zone you specify, and reports any problems." SRC_URI="http://www.domtools.com/pub/${P/-/}.tar.gz" HOMEPAGE="http://www.domtools.com/dns/dlint.shtml" diff --git a/net-dns/dlint/dlint-1.4.1.ebuild b/net-dns/dlint/dlint-1.4.1.ebuild new file mode 100644 index 000000000000..b3e2fa37add9 --- /dev/null +++ b/net-dns/dlint/dlint-1.4.1.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-dns/dlint/dlint-1.4.1.ebuild,v 1.1 2008/04/24 16:44:16 ticho Exp $ + +inherit eutils fixheadtails + +S=${WORKDIR}/${P/-/} +DESCRIPTION="Dlint analyzes any DNS zone you specify, and reports any problems." +SRC_URI="http://www.domtools.com/pub/${P/-/}.tar.gz" +HOMEPAGE="http://www.domtools.com/" + +SLOT="0" +KEYWORDS="~amd64 ~sparc ~x86" +IUSE="" +LICENSE="GPL-2" + +DEPEND="" +RDEPEND="sys-apps/coreutils + net-dns/bind-tools + dev-lang/perl + app-shells/bash" + +src_compile() { + sed -i -e 's:rrfilt=\"/usr/local/bin/digparse\":rrfilt=\"digparse\":' dlint + ht_fix_file dlint +} + +src_install () { + dobin digparse + dobin dlint + doman dlint.1 + dodoc BUGS INSTALL README CHANGES COPYRIGHT TESTCASES +} |