Moved portage stuff to new dir.
authorfredrik@DOLDA2000.COM <fredrik@DOLDA2000.COM@959494ce-11ee-0310-bf91-de5d638817bd>
Mon, 27 Jun 2005 15:25:01 +0000 (15:25 +0000)
committerfredrik@DOLDA2000.COM <fredrik@DOLDA2000.COM@959494ce-11ee-0310-bf91-de5d638817bd>
Mon, 27 Jun 2005 15:25:01 +0000 (15:25 +0000)
git-svn-id: svn+ssh://svn.dolda2000.com/srv/svn/repos/src/icmp-dn@286 959494ce-11ee-0310-bf91-de5d638817bd

admin/portage/net-misc/icmpdn/Manifest [deleted file]
admin/portage/net-misc/icmpdn/files/digest-icmpdn-0.2 [deleted file]
admin/portage/net-misc/icmpdn/files/icmpdnd [deleted file]
admin/portage/net-misc/icmpdn/icmpdn-0.2.ebuild [deleted file]

diff --git a/admin/portage/net-misc/icmpdn/Manifest b/admin/portage/net-misc/icmpdn/Manifest
deleted file mode 100644 (file)
index e839763..0000000
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 b41068ae708a8cc5fa7a133edca2c6f4 icmpdn-0.2.ebuild 894
-MD5 739441e12d6ce3c64ed9597c003f4717 files/digest-icmpdn-0.2 62
-MD5 5b59c7db5b52c25a3b93f1c5da3fc45c files/icmpdnd 306
diff --git a/admin/portage/net-misc/icmpdn/files/digest-icmpdn-0.2 b/admin/portage/net-misc/icmpdn/files/digest-icmpdn-0.2
deleted file mode 100644 (file)
index 4dd2387..0000000
+++ /dev/null
@@ -1 +0,0 @@
-MD5 332920950754312db4e627d0a2229438 icmpdn-0.2.tar.gz 321359
diff --git a/admin/portage/net-misc/icmpdn/files/icmpdnd b/admin/portage/net-misc/icmpdn/files/icmpdnd
deleted file mode 100755 (executable)
index 26210f0..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/sbin/runscript
-
-opts="start stop restart"
-
-depend() {
-    need net
-}
-
-start() {
-    ebegin "Starting icmpdnd"
-    start-stop-daemon --start --quiet --exec /usr/sbin/icmpdnd
-    eend $?
-}
-
-stop() {
-    ebegin "Stopping icmpdnd"
-    start-stop-daemon --stop --quiet --exec /usr/sbin/icmpdnd
-    eend $?
-}
diff --git a/admin/portage/net-misc/icmpdn/icmpdn-0.2.ebuild b/admin/portage/net-misc/icmpdn/icmpdn-0.2.ebuild
deleted file mode 100644 (file)
index 95a1d49..0000000
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 2005 Fredrik Tolf <fredrik@dolda2000.com>
-# Distributed under the terms of the GNU General Public License v2
-
-inherit eutils
-
-DESCRIPTION="ICMP Domain Name utilities"
-HOMEPAGE="http://www.dolda2000.com/~fredrik/icmp-dn/"
-SRC_URI="http://www.dolda2000.com/~fredrik/icmp-dn/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="x86"
-IUSE=""
-
-DEPEND=""
-
-src_unpack() {
-    unpack ${A}
-    cd ${S}
-}
-
-src_compile() {
-    econf --sysconfdir=/etc \
-         --libdir=/lib || die "Configuration failed"
-    emake || die "Make failed"
-}
-
-src_install() {
-    make install DESTDIR=${D} || die "Install failed"
-    fperms 4755 /usr/bin/idnlookup
-    doinitd ${FILESDIR}/icmpdnd
-    dodoc AUTHORS ChangeLog COPYING INSTALL README
-}
-
-pkg_postinst() {
-    einfo
-    einfo "To use the ICMP nameswitch module, add \"icmp\""
-    einfo "to the \"hosts\" line in your /etc/nsswitch.conf"
-    einfo
-    ebeep 3
-}