From 0bb42730e8fc9c8e571f12e3189c6c6f8d532c24 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sat, 10 Feb 2024 17:34:25 +0000 Subject: gentoo auto-resync : 10:02:2024 - 17:34:25 --- net-dns/Manifest.gz | Bin 8211 -> 8050 bytes net-dns/totd/Manifest | 6 ---- net-dns/totd/files/totd | 38 ------------------------ net-dns/totd/files/totd-1.5.1-fix-CC.patch | 11 ------- net-dns/totd/files/totd-1.5.1-no_werror.patch | 11 ------- net-dns/totd/metadata.xml | 10 ------- net-dns/totd/totd-1.5.1.ebuild | 40 -------------------------- 7 files changed, 116 deletions(-) delete mode 100644 net-dns/totd/Manifest delete mode 100644 net-dns/totd/files/totd delete mode 100644 net-dns/totd/files/totd-1.5.1-fix-CC.patch delete mode 100644 net-dns/totd/files/totd-1.5.1-no_werror.patch delete mode 100644 net-dns/totd/metadata.xml delete mode 100644 net-dns/totd/totd-1.5.1.ebuild (limited to 'net-dns') diff --git a/net-dns/Manifest.gz b/net-dns/Manifest.gz index 383c64894158..8fae9c130fa6 100644 Binary files a/net-dns/Manifest.gz and b/net-dns/Manifest.gz differ diff --git a/net-dns/totd/Manifest b/net-dns/totd/Manifest deleted file mode 100644 index 127cdb36f66d..000000000000 --- a/net-dns/totd/Manifest +++ /dev/null @@ -1,6 +0,0 @@ -AUX totd 703 BLAKE2B ff6438966449109cfe9d18cab97570a19876e467ae0e46e52c2431052e0e032ca9dce3fa2d8a8e30007454dfc5139a75b25c1823f4b9b4d9b36d3c54c74e0f2a SHA512 1ff0bf4969a2670147646590e5f33f6dfbebc1e3e03b3d544f03567867f439b386695020766a6433a411664ea0ec64a4e816794a7cff9172ff6ea546d888a4b9 -AUX totd-1.5.1-fix-CC.patch 232 BLAKE2B 88034db37515aa659cb22546835665ce57d17e5ddacbd6e06f67cffef290412f395d0758b3f06761e6de14a991b2b0d74a041272b9f0f55e27f5bb002d7e1c57 SHA512 6f3ec9f8faa4ac07e05792e7e1a44a37a60b8ae75ca34c57cf3a951bd2b2d22deef0009c8ca902855347d0a7ccd035fb63c06cedc8f4050c7dd97448562fe86b -AUX totd-1.5.1-no_werror.patch 528 BLAKE2B 8e310b080acf352ad01158b145b801454a9a019e4ecaeab98527fbee5501e647bf86b352a5570d7461f004275a03f79543c6faa0044ae09a09e8de97ff39a9ca SHA512 ae7dc467c1e404c705502b256635c62a80e6f087878af64e8a3d8367abad053fcfc1d2d1da47a772e57bd669bd26c409302b808eed2fe69bd64d3483c1f5c30c -DIST totd-1.5.1.tar.gz 235809 BLAKE2B ceab2edbebe22162db7193a6e20b0ae2c960c1e613afc3a4ecf068c8f7f3d0f798d03d6c392955799c4fbd1fec10561502e4da08c4a5b39ce5d313a2c0e09663 SHA512 47087fd0478bc2952b25a0952ffb7273e4fdebda019f61fd0bad3c0305ab8f6e32b8f8dd042364f9ae6e6bd31c223e8fd3b17e3b4d44219fd6509f530f56025a -EBUILD totd-1.5.1.ebuild 882 BLAKE2B e57ed2f0263e6842fa7c5c5fe9b4389ec723c98ee847022542e247a139c965f5709b13ad783664b7c563ff64ee5418a67c9947d3970ed1eeaa2cc9a87be3390c SHA512 c0579d2aa87da2732dc558f6c437a23e9a9c4a2d95b582a9924da03edb3f2e08f781bf1a4a1f2dd9a95d23bb5fc53f5bae0732f6db41f5589b7b4e643602f3a0 -MISC metadata.xml 396 BLAKE2B 032e918292458291c8e0370f6793c1f9cfb6c103cee072e01b209ce65cbb18a0489612cd5666c2089681bb0d2ff95ac1010fe3c2b8d03cc619495dacef61716b SHA512 ccb8217ecbe398ea05a01533fa68add66504175195e7de279fea01d8d6add76e0f862b341b6318b71db6fe33a5a0c015b501a385dc807de17b4f01ca0b67febc diff --git a/net-dns/totd/files/totd b/net-dns/totd/files/totd deleted file mode 100644 index 79d410acb013..000000000000 --- a/net-dns/totd/files/totd +++ /dev/null @@ -1,38 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2004 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -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-dns/totd/files/totd-1.5.1-fix-CC.patch b/net-dns/totd/files/totd-1.5.1-fix-CC.patch deleted file mode 100644 index 3ebbd419d0e2..000000000000 --- a/net-dns/totd/files/totd-1.5.1-fix-CC.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- a/Makefile.in -+++ b/Makefile.in -@@ -4,7 +4,7 @@ - # <$Id: Makefile.in,v 3.43 2005/01/31 11:55:14 dillema Exp $> - # - --CC = gcc -+CC = @CC@ - - # These use the standard autoconf variables, which by default are - # rooted in @prefix@ diff --git a/net-dns/totd/files/totd-1.5.1-no_werror.patch b/net-dns/totd/files/totd-1.5.1-no_werror.patch deleted file mode 100644 index 246e709d5109..000000000000 --- a/net-dns/totd/files/totd-1.5.1-no_werror.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- totd-1.5.1/Makefile.in 2005-01-31 12:55:14.000000000 +0100 -+++ totd-1.5.1_new/Makefile.in 2007-06-30 22:51:07.000000000 +0200 -@@ -19,7 +19,7 @@ - - INSTALL = /usr/bin/install - --CFLAGS = @CFLAGS@ @DEFS@ -Werror -Wall -DTOTCONF=\"$(TOT_CONFIG_FILE)\" @OPTFLAGS@ $(INCLUDEPATH) -+CFLAGS = @CFLAGS@ @DEFS@ -Wall -DTOTCONF=\"$(TOT_CONFIG_FILE)\" @OPTFLAGS@ $(INCLUDEPATH) - - # When debugging is enabled by --enable-malloc-debug flag to the configure - # script, the @DBMALLOC@ substitution will contain the empty string, thus diff --git a/net-dns/totd/metadata.xml b/net-dns/totd/metadata.xml deleted file mode 100644 index 1dc73d3c7c92..000000000000 --- a/net-dns/totd/metadata.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - Totd ( Trick Or Treat Daemon ) is a small DNS proxy nameserver that - supports IPv6 only hosts/networks that communicate with the IPv4 world - using some translation mechanism. - - diff --git a/net-dns/totd/totd-1.5.1.ebuild b/net-dns/totd/totd-1.5.1.ebuild deleted file mode 100644 index c2661cc9ce63..000000000000 --- a/net-dns/totd/totd-1.5.1.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DESCRIPTION="Trick Or Treat Daemon, a DNS proxy for 6to4" -HOMEPAGE="http://www.dillema.net/software/totd.html" -SRC_URI="http://www.dillema.net/software/${PN}/${P}.tar.gz" - -LICENSE="totd BSD BSD-4 GPL-2" -SLOT="0" -KEYWORDS="~amd64 x86" - -PATCHES=( - "${FILESDIR}"/${P}-no_werror.patch - "${FILESDIR}"/${P}-fix-CC.patch -) - -src_configure() { - econf \ - --enable-ipv4 \ - --enable-ipv6 \ - --enable-stf \ - --enable-scoped-rewrite \ - --disable-http-server -} - -src_install() { - dosbin totd - doman totd.8 - dodoc totd.conf.sample README INSTALL - - doinitd "${FILESDIR}"/totd -} - -pkg_postinst() { - elog "The totd.conf.sample file in /usr/share/doc/${P}/ contains" - elog "a sample config file for totd. Make sure you create" - elog "/etc/totd.conf with the necessary configurations" -} -- cgit v1.2.3