summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlin Năstac <mrness@gentoo.org>2005-04-25 20:28:12 +0000
committerAlin Năstac <mrness@gentoo.org>2005-04-25 20:28:12 +0000
commitfa32417ec13f24d96a934a9b8c27891a4c888032 (patch)
tree779e2bbc3da4bd8cb88e4d5950441980abb6cb9d /net-misc
parentnet-misc/totd -> net-dns/totd (diff)
downloadgentoo-2-fa32417ec13f24d96a934a9b8c27891a4c888032.tar.gz
gentoo-2-fa32417ec13f24d96a934a9b8c27891a4c888032.tar.bz2
gentoo-2-fa32417ec13f24d96a934a9b8c27891a4c888032.zip
Moved to net-dns/totd
Diffstat (limited to 'net-misc')
-rw-r--r--net-misc/totd/ChangeLog11
-rw-r--r--net-misc/totd/Manifest4
-rw-r--r--net-misc/totd/files/digest-totd-1.31
-rw-r--r--net-misc/totd/files/totd39
-rw-r--r--net-misc/totd/totd-1.3.ebuild33
5 files changed, 0 insertions, 88 deletions
diff --git a/net-misc/totd/ChangeLog b/net-misc/totd/ChangeLog
deleted file mode 100644
index db4b549c3a5f..000000000000
--- a/net-misc/totd/ChangeLog
+++ /dev/null
@@ -1,11 +0,0 @@
-# ChangeLog for net-misc/totd
-# Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/totd/ChangeLog,v 1.2 2004/06/25 00:16:14 agriffis Exp $
-
-*totd-1.3 (25 Jun 2003)
-
- 25 Jun 2003; Peter Johanson <latexer@gentoo.org> totd-1.3.ebuild,
- files/totd:
- Initial import. Combined with net-misc/ptrtd, you can now do fun 6to4 stuff
- easily
-
diff --git a/net-misc/totd/Manifest b/net-misc/totd/Manifest
deleted file mode 100644
index 029d858ccb8b..000000000000
--- a/net-misc/totd/Manifest
+++ /dev/null
@@ -1,4 +0,0 @@
-MD5 56000b751d13bed312987898074a7b10 totd-1.3.ebuild 842
-MD5 d824a5bbc5469ac9352cea53d2bbcc0d ChangeLog 396
-MD5 e3e71aac40ac30ceb20d34d1abeedb98 files/totd 803
-MD5 b5d7da146bba4e657fc30595eab333b5 files/digest-totd-1.3 59
diff --git a/net-misc/totd/files/digest-totd-1.3 b/net-misc/totd/files/digest-totd-1.3
deleted file mode 100644
index ceaf3a1b4092..000000000000
--- a/net-misc/totd/files/digest-totd-1.3
+++ /dev/null
@@ -1 +0,0 @@
-MD5 bc6b85a5bddb72fc3fb20fa9fe50d3a0 totd-1.3.tar.gz 82133
diff --git a/net-misc/totd/files/totd b/net-misc/totd/files/totd
deleted file mode 100644
index aea54da8dd85..000000000000
--- a/net-misc/totd/files/totd
+++ /dev/null
@@ -1,39 +0,0 @@
-#!/sbin/runscript
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/totd/files/totd,v 1.2 2004/07/15 00:14:15 agriffis Exp $
-
-depend() {
- need net
-}
-
-checkconfig() {
- if [ ! -f /etc/totd.conf ]
- then
- eerror "The config file /etc/totd.conf does not exist."
- return 1
- else
- return 0
- fi
-}
-
-start() {
- checkconfig || return 1
-
- ebegin "Starting totd"
- start-stop-daemon --start --quiet --exec /usr/sbin/totd
- eend $?
-}
-
-stop() {
- local pid_file
- pid_file="`grep ^pidfile /etc/totd.conf | cut -f2 -d ' '`"
- ebegin "Stopping totd"
- if [ -n "$pid_file" ]
- then
- start-stop-daemon --stop --quiet --pidfile $pid_file
- else
- start-stop-daemon --stop --quiet --pidfile /var/run/totd.pid
- fi
- eend $?
-}
diff --git a/net-misc/totd/totd-1.3.ebuild b/net-misc/totd/totd-1.3.ebuild
deleted file mode 100644
index 83f617e278e8..000000000000
--- a/net-misc/totd/totd-1.3.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/totd/totd-1.3.ebuild,v 1.4 2004/07/15 03:39:06 agriffis 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 || die
- emake || die
-}
-
-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"
-}