summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2021-03-16 19:35:50 +0000
committerSam James <sam@gentoo.org>2021-03-16 19:56:00 +0000
commit150bf24bf3500996655e0282bb7c4dbe9a4dd54b (patch)
tree413f2330d27618062421012db2f4d8b89c629b79 /net-misc/mrouted
parentnet-misc/gsasl: drop 1.8.0-r1, 1.8.1 (diff)
downloadgentoo-150bf24bf3500996655e0282bb7c4dbe9a4dd54b.tar.gz
gentoo-150bf24bf3500996655e0282bb7c4dbe9a4dd54b.tar.bz2
gentoo-150bf24bf3500996655e0282bb7c4dbe9a4dd54b.zip
net-misc/mrouted: drop 3.9.8
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-misc/mrouted')
-rw-r--r--net-misc/mrouted/Manifest1
-rw-r--r--net-misc/mrouted/mrouted-3.9.8.ebuild48
2 files changed, 0 insertions, 49 deletions
diff --git a/net-misc/mrouted/Manifest b/net-misc/mrouted/Manifest
index 4ab2dcf3ac4d..ed1cb10ee72a 100644
--- a/net-misc/mrouted/Manifest
+++ b/net-misc/mrouted/Manifest
@@ -1,2 +1 @@
-DIST mrouted-3.9.8.tar.bz2 112863 BLAKE2B 4a7defbb1b97be8e452881a689d99742df2878dc9c2613c79e1bdc33af398c2be1b2d21de94e90592877ee5b6aa6b2f0c64948193eda9005c828a6cc84e492c0 SHA512 50abf2271c76b604d1e356ca5c0b62a7f07487f364991502326bbee169c451b43b3dbf01b88340d6b406f16d86a6d6fd9e7bb03c6e76d6af463b46d8423a41f4
DIST mrouted-4.2.tar.gz 292640 BLAKE2B 5d356c7c0132e2dc74e360c5a1761b6e39bcdfcb5306dcd7a8a35f5658139bdd74d92587b7fea248092bd4947b5119987bdf4066676c08c6baa849c1845f905b SHA512 88de66f24210bcf9d8e9ab0d38171c64c7dae2981fb2f81a54be2b08bbe26ff9b26ad5a7ec0fd4d67c2dad00a6df608aa7c1536c897bbc98f6bf223766924131
diff --git a/net-misc/mrouted/mrouted-3.9.8.ebuild b/net-misc/mrouted/mrouted-3.9.8.ebuild
deleted file mode 100644
index 0e9bfcd0649a..000000000000
--- a/net-misc/mrouted/mrouted-3.9.8.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-inherit toolchain-funcs
-
-DESCRIPTION="IP multicast routing daemon"
-HOMEPAGE="https://troglobit.com/projects/mrouted/"
-SRC_URI="https://github.com/troglobit/${PN}/releases/download/${PV}/${P}.tar.bz2"
-LICENSE="Stanford GPL-2"
-
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE="rsrr"
-RESTRICT="test"
-
-DEPEND="|| ( dev-util/yacc sys-devel/bison )"
-
-src_prepare() {
- # Respect user CFLAGS, remove upstream optimisation and -Werror, do not
- # print command summaries, do print commands
- sed -i \
- -e '/^CFLAGS/{s|[[:space:]]=| +=|g;s|-O2||g;s|-Werror||g}' \
- -e '/@printf/d' \
- -e 's|^\t-@|\t-|g' \
- -e 's|^\t@|\t|g' \
- Makefile || die
- default
-}
-
-src_configure() {
- sh configure $(usex rsrr --enable-rsrr '')
- tc-export CC CXX
-}
-
-src_compile() {
- emake CC=$(tc-getCC) CXX=$(tc-getCXX)
-}
-
-src_install() {
- dobin mrouted
- dosbin mtrace mrinfo map-mbone
- doman mrouted.8 mtrace.8 mrinfo.8 map-mbone.8
-
- insinto /etc
- doins mrouted.conf
- newinitd "${FILESDIR}"/mrouted.rc mrouted
-}