+++ /dev/null
-MD5 b41068ae708a8cc5fa7a133edca2c6f4 icmpdn-0.2.ebuild 894
-MD5 739441e12d6ce3c64ed9597c003f4717 files/digest-icmpdn-0.2 62
-MD5 5b59c7db5b52c25a3b93f1c5da3fc45c files/icmpdnd 306
+++ /dev/null
-#!/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 $?
-}
+++ /dev/null
-# 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
-}