diff options
author | Daniel Black <dragonheart@gentoo.org> | 2005-08-14 07:07:45 +0000 |
---|---|---|
committer | Daniel Black <dragonheart@gentoo.org> | 2005-08-14 07:07:45 +0000 |
commit | cc1285a23aa079984dee72af43aa826c50607ac2 (patch) | |
tree | 8b5730f79cf046c975e1d19d7fb78e9435ab5d2f /net-dns/totd | |
parent | adding some fixes and improvements (bug #102417), removing old versions, stab... (diff) | |
download | gentoo-2-cc1285a23aa079984dee72af43aa826c50607ac2.tar.gz gentoo-2-cc1285a23aa079984dee72af43aa826c50607ac2.tar.bz2 gentoo-2-cc1285a23aa079984dee72af43aa826c50607ac2.zip |
version bump
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'net-dns/totd')
-rw-r--r-- | net-dns/totd/ChangeLog | 7 | ||||
-rw-r--r-- | net-dns/totd/Manifest | 18 | ||||
-rw-r--r-- | net-dns/totd/files/digest-totd-1.5.1 | 1 | ||||
-rw-r--r-- | net-dns/totd/totd-1.5.1.ebuild | 34 |
4 files changed, 46 insertions, 14 deletions
diff --git a/net-dns/totd/ChangeLog b/net-dns/totd/ChangeLog index 5abbc6b8d687..147920b232a3 100644 --- a/net-dns/totd/ChangeLog +++ b/net-dns/totd/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-dns/totd # Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-dns/totd/ChangeLog,v 1.2 2005/04/28 18:51:33 swegener Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dns/totd/ChangeLog,v 1.3 2005/08/14 07:07:45 dragonheart Exp $ + +*totd-1.5.1 (14 Aug 2005) + + 14 Aug 2005; Daniel Black <dragonheart@gentoo.org> +totd-1.5.1.ebuild: + version bump *totd-1.5 (25 Apr 2005) diff --git a/net-dns/totd/Manifest b/net-dns/totd/Manifest index 9d6527889fb5..174226240063 100644 --- a/net-dns/totd/Manifest +++ b/net-dns/totd/Manifest @@ -1,17 +1,9 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA1 - -MD5 f2bb5b1f68316818020089ca47e51a6d totd-1.3.ebuild 839 MD5 3676ef33a9c58a10e723b36c6717aeb8 ChangeLog 559 -MD5 560009d7d46941f6b7aa666ad01e37ff totd-1.5.ebuild 963 MD5 3461f8e3858a3f7fcd05779a2a6b8f5a metadata.xml 371 -MD5 0215b0724a772565162a39729c941e8e files/totd 800 +MD5 f2bb5b1f68316818020089ca47e51a6d totd-1.3.ebuild 839 +MD5 560009d7d46941f6b7aa666ad01e37ff totd-1.5.ebuild 963 +MD5 560009d7d46941f6b7aa666ad01e37ff totd-1.5.1.ebuild 963 MD5 b5d7da146bba4e657fc30595eab333b5 files/digest-totd-1.3 59 MD5 0b7a6acb077c76ba59bac49d491dfe71 files/digest-totd-1.5 60 ------BEGIN PGP SIGNATURE----- -Version: GnuPG v1.4.1 (GNU/Linux) - -iD8DBQFCcTDKI1lqEGTUzyQRAlRCAJwPlNH4uk5cQD7PIp16AiOdRyzIUACgpul+ -2qF5Pe00fH7I0NroZBK6SlQ= -=H3rU ------END PGP SIGNATURE----- +MD5 0215b0724a772565162a39729c941e8e files/totd 800 +MD5 e0a3d42450e5d00ad52d551148461a6f files/digest-totd-1.5.1 62 diff --git a/net-dns/totd/files/digest-totd-1.5.1 b/net-dns/totd/files/digest-totd-1.5.1 new file mode 100644 index 000000000000..0b1ad2badeb2 --- /dev/null +++ b/net-dns/totd/files/digest-totd-1.5.1 @@ -0,0 +1 @@ +MD5 7edaedae9f6aca5912dd6c123582cf08 totd-1.5.1.tar.gz 235809 diff --git a/net-dns/totd/totd-1.5.1.ebuild b/net-dns/totd/totd-1.5.1.ebuild new file mode 100644 index 000000000000..3b308dd7b67a --- /dev/null +++ b/net-dns/totd/totd-1.5.1.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-dns/totd/totd-1.5.1.ebuild,v 1.1 2005/08/14 07:07:45 dragonheart Exp $ + +DESCRIPTION="Trick Or Treat Daemon, a DNS proxy for 6to4" +HOMEPAGE="http://www.vermicelli.pasta.cs.uit.no/ipv6/software.html" +SRC_URI="ftp://ftp.pasta.cs.uit.no/pub/Vermicelli/${P}.tar.gz" +LICENSE="BSD as-is" + +SLOT="0" +KEYWORDS="~x86" +IUSE="" +DEPEND="" + +src_compile() { + econf --enable-ipv4 --enable-ipv6 --enable-stf \ + --enable-scoped-rewrite --disable-http-server || die "configure failed" + emake || die "make failed" +} + +src_install() { + dosbin totd + doman totd.8 + dodoc totd.conf.sample README INSTALL + + exeinto /etc/init.d + doexe ${FILESDIR}/totd +} + +pkg_postinst() { + einfo "/usr/share/doc/${P}/totd.conf.sample.gz contains" + einfo "a sample config file for totd. Make sure you create" + einfo "/etc/totd.conf with the necessary configurations" +} |