summaryrefslogtreecommitdiff
path: root/sys-auth/icmpdn
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2019-10-13 22:19:36 +0100
committerV3n3RiX <venerix@redcorelinux.org>2019-10-14 23:22:23 +0100
commit4b19be30aa626b327c885dae62c559ec0e9fb935 (patch)
tree76e74807bc479502e13866b581b6bf86734ec634 /sys-auth/icmpdn
parent30d6f67c98d149508509d5e86f176d558793acc0 (diff)
gentoo resync : 13.10.2019
Diffstat (limited to 'sys-auth/icmpdn')
-rw-r--r--sys-auth/icmpdn/Manifest5
-rw-r--r--sys-auth/icmpdn/files/conf.d-icmpdnd14
-rw-r--r--sys-auth/icmpdn/files/init.d-icmpdnd26
-rw-r--r--sys-auth/icmpdn/icmpdn-0.4.ebuild40
-rw-r--r--sys-auth/icmpdn/metadata.xml7
5 files changed, 0 insertions, 92 deletions
diff --git a/sys-auth/icmpdn/Manifest b/sys-auth/icmpdn/Manifest
deleted file mode 100644
index b7d130ee6b33..000000000000
--- a/sys-auth/icmpdn/Manifest
+++ /dev/null
@@ -1,5 +0,0 @@
-AUX conf.d-icmpdnd 472 BLAKE2B 185558e26078752d489094fa9dd68ab2e0cd6bbba97e42c98ac323afd2896a38581cdd96a310c16a1266af0147f05b29620d4eb4fe6dffc70e2665a0ca2971ef SHA512 3318dbc6bb808c20088a1e83214a3b7d34486d367fabf243917da8e174dae39741115016c8fd5ee874191d7f5e3dc3cf2e0e9711df3b9d3862dd9f9d3f22ab4f
-AUX init.d-icmpdnd 568 BLAKE2B 4bfa5274b6f4d1fddfea0d1c8fd01cb52233021e2e65a030723914e2ba20af510ce59d43c27defed903cd2241e34613144228bf67ce3c989dc7e278d2b9a2650 SHA512 7d2b72a1613f736b4538add02cdfeef37d4f0ce68fbadde126717317a863e2e22533c0f7b74a21cf1ea2f123487fab68ec3d47f40f8addfacf6a5ba091268610
-DIST icmpdn-0.4.tar.gz 332780 BLAKE2B 82f6d428fda7989e60d083a8a214f5d4ef7f593525d221b0a6cc2385b1104a3a474daf60e254c703b24a38146e2540c66f331a5959078fd0a55482c2af30ff70 SHA512 2bcaa8987f1479fe0b562b805f1515d7dfba74ce8ca2f82156176eb9a059a6903e324a7fe64e256fec8a032a68de4618eb469e856d0004a3ceea4897f0833b1d
-EBUILD icmpdn-0.4.ebuild 988 BLAKE2B 725013829eb95d2d1283d58a9b38e2cdeb86d7e15645964f12162bb324f676cea98c6da12a883a085dbffe4e1c34320a2a5d18446aa4fff851930bb6b90b4c16 SHA512 305e0bedefd976250273ecb3f8dc194280a55906b0917499744cffd2e144dd9b5e578037e8aa0408ca200c329764cd18bee8226d690916d58fff705d24ba6a71
-MISC metadata.xml 216 BLAKE2B 20531789dc11e43feee7ec315a0c1c7249fdf73764e29cb7d6db439826e9ff72f24a5cdb8eb7f1ab99bbb41fb6e4226874a1d1fa4185de52598602bb3b0479a3 SHA512 e881b59fe49746eb25ad66c258b41aba501e4eb563129093a3898ea970a20506e7898f7c355cfcf99605234962bf2c77c1309c258b9a2b84ee4302ccb71c9dbd
diff --git a/sys-auth/icmpdn/files/conf.d-icmpdnd b/sys-auth/icmpdn/files/conf.d-icmpdnd
deleted file mode 100644
index 24e6e95fef25..000000000000
--- a/sys-auth/icmpdn/files/conf.d-icmpdnd
+++ /dev/null
@@ -1,14 +0,0 @@
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-# Set the TTL (Time-to-Live) value in responses to TTL seconds rather
-# than the default of 3600 seconds
-#TTL=3600
-
-# Set the domain name in responses to domainname, rather than the
-# default as described above. This option is useful in case the system
-# is not configured to set up its own hostname.
-#DOMAINNAME=mydomainname.com
-
-# Other options
-#ICMPDND_OPTS=""
diff --git a/sys-auth/icmpdn/files/init.d-icmpdnd b/sys-auth/icmpdn/files/init.d-icmpdnd
deleted file mode 100644
index 452b644c63fa..000000000000
--- a/sys-auth/icmpdn/files/init.d-icmpdnd
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-BINARY="/usr/sbin/icmpdnd"
-
-[ -n "${TTL}" ] && ICMPDND_OPTS="${ICMPDND_OPTS} -t ${TTL}"
-[ -n "${DOMAINNAME}" ] && ICMPDND_OPTS="${ICMPDND_OPTS} -d ${DOMAINNAME}"
-
-depend() {
- need net
- after ypbind
-}
-
-start() {
- ebegin "Starting icmpdnd"
- start-stop-daemon --start --quiet --exec ${BINARY} -- ${ICMPDND_OPTS}
- eend $?
-}
-
-stop() {
- ebegin "Stopping icmpdnd"
- start-stop-daemon --stop --quiet --exec ${BINARY}
- eend $?
-}
-
diff --git a/sys-auth/icmpdn/icmpdn-0.4.ebuild b/sys-auth/icmpdn/icmpdn-0.4.ebuild
deleted file mode 100644
index aef8a9c770e8..000000000000
--- a/sys-auth/icmpdn/icmpdn-0.4.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=0
-
-inherit eutils flag-o-matic multilib
-
-DESCRIPTION="ICMP Domain Name utilities & NSS backend"
-HOMEPAGE="http://www.dolda2000.com/~fredrik/icmp-dn/"
-SRC_URI="${HOMEPAGE}${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~x86"
-IUSE=""
-
-src_compile() {
- append-cppflags -D_GNU_SOURCE #241318
- econf \
- --sysconfdir=/etc \
- --libdir=/$(get_libdir) \
- || die "econf failed"
- emake || die "emake failed"
-}
-
-src_install() {
- emake install DESTDIR="${D}" || die "emake install failed"
- newinitd "${FILESDIR}"/init.d-icmpdnd icmpdnd
- newconfd "${FILESDIR}"/conf.d-icmpdnd icmpdnd
- dodoc AUTHORS ChangeLog README
- # must always run as root
- fperms 4711 /usr/bin/idnlookup
- # useless as nothing should link against this lib
- rm "${D}"/lib*/*.{la,so}
-}
-
-pkg_postinst() {
- einfo "To use the ICMP nameswitch module, add 'icmp'"
- einfo "to the 'hosts' line in your /etc/nsswitch.conf"
-}
diff --git a/sys-auth/icmpdn/metadata.xml b/sys-auth/icmpdn/metadata.xml
deleted file mode 100644
index 79d462e85571..000000000000
--- a/sys-auth/icmpdn/metadata.xml
+++ /dev/null
@@ -1,7 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<maintainer type="person">
- <email>robbat2@gentoo.org</email>
-</maintainer>
-</pkgmetadata>