From d7ec853863e66b2a6a3c17d126f2c6bffcc79229 Mon Sep 17 00:00:00 2001 From: Aaron Bauman Date: Tue, 26 Apr 2016 17:23:34 +0900 Subject: net-irc/srvx: cleaned per security bug 521892 --- net-irc/srvx/Manifest | 1 - net-irc/srvx/files/srvx.conf.d | 7 ----- net-irc/srvx/files/srvx.init.d | 21 ------------- net-irc/srvx/metadata.xml | 11 ------- net-irc/srvx/srvx-1.3.1.ebuild | 67 ------------------------------------------ 5 files changed, 107 deletions(-) delete mode 100644 net-irc/srvx/Manifest delete mode 100644 net-irc/srvx/files/srvx.conf.d delete mode 100644 net-irc/srvx/files/srvx.init.d delete mode 100644 net-irc/srvx/metadata.xml delete mode 100644 net-irc/srvx/srvx-1.3.1.ebuild (limited to 'net-irc') diff --git a/net-irc/srvx/Manifest b/net-irc/srvx/Manifest deleted file mode 100644 index d7e19eb6cc99..000000000000 --- a/net-irc/srvx/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST srvx-1.3.1.tar.bz2 560658 SHA256 e11347a58505f0274a54ca8f956ad21d9e5557ecfcd86f71a58be2fbc2a81d63 SHA512 6f0c4c3af48dea5bc51f673b66a8a72b9f54c2d0c40f5b00e77da0b1b48174ca671a473cd86a3aea4d3c5cb766995d5b892cc5748c47766d53414778403beb65 WHIRLPOOL f4e2f622f3bb20aee41af5b5826c5c5585be60c0ea7c1813f18e1126fa5e5f226190d8eb4411143d78795d0676dadbb7481a5267f2a1652821881be6e7f42527 diff --git a/net-irc/srvx/files/srvx.conf.d b/net-irc/srvx/files/srvx.conf.d deleted file mode 100644 index 1f5cfdc265f8..000000000000 --- a/net-irc/srvx/files/srvx.conf.d +++ /dev/null @@ -1,7 +0,0 @@ -# Copyright 1999-2004 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -# user and group to run srvx as -SRVX_USER="srvx" -SRVX_GROUP="srvx" diff --git a/net-irc/srvx/files/srvx.init.d b/net-irc/srvx/files/srvx.init.d deleted file mode 100644 index e9ae6717b25e..000000000000 --- a/net-irc/srvx/files/srvx.init.d +++ /dev/null @@ -1,21 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2004 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -depend() { - use dns net -} - -start() { - ebegin "Starting srvx" - start-stop-daemon --start --chdir /var/lib/srvx --quiet \ - --exec /usr/bin/srvx --chuid ${SRVX_USER}:${SRVX_GROUP} &>/dev/null - eend $? -} - -stop() { - ebegin "Shutting down srvx" - start-stop-daemon --stop --quiet --pidfile /var/lib/srvx/srvx.pid - eend $? -} diff --git a/net-irc/srvx/metadata.xml b/net-irc/srvx/metadata.xml deleted file mode 100644 index 02c74f8977f4..000000000000 --- a/net-irc/srvx/metadata.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - Choose bahamut protocol over p10 protocol - - - srvx - - diff --git a/net-irc/srvx/srvx-1.3.1.ebuild b/net-irc/srvx/srvx-1.3.1.ebuild deleted file mode 100644 index 32096fa7dfba..000000000000 --- a/net-irc/srvx/srvx-1.3.1.ebuild +++ /dev/null @@ -1,67 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -inherit eutils user - -DESCRIPTION="A complete set of services for IRCu 2.10.10+ and bahamut based networks" -HOMEPAGE="http://www.srvx.net/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="bahamut debug" - -src_compile() { - local PROTOCOL="p10" MALLOC="system" DEBUG="" - use bahamut && PROTOCOL="bahamut" - use debug && MALLOC="srvx" DEBUG="--enable-debug" - - econf \ - --with-protocol=${PROTOCOL} \ - --with-malloc=${MALLOC} \ - --enable-modules=helpserv,memoserv,sockcheck \ - ${DEBUG} \ - || die "econf failed" - emake all-recursive || die "emake failed" -} - -src_install() { - dobin src/srvx || die "dobin failed" - dodir /var/lib/srvx || die "dodir failed" - - insinto /etc/srvx - newins srvx.conf.example srvx.conf || die "newins failed" - newins sockcheck.conf.example sockcheck.conf || die "newins failed" - dosym ../../../etc/srvx/srvx.conf /var/lib/srvx/srvx.conf || die "dosym failed" - dosym ../../../etc/srvx/sockcheck.conf /var/lib/srvx/sockcheck.conf || die "dosym failed" - - insinto /usr/share/srvx - for helpfile in \ - chanserv.help global.help mod-helpserv.help mod-memoserv.help \ - mod-sockcheck.help modcmd.help nickserv.help opserv.help \ - saxdb.help sendmail.help - do - doins "src/${helpfile}" || die "doins failed" - dosym "../../../usr/share/srvx/${helpfile}" "/var/lib/srvx/${helpfile}" || die "dosym failed" - done - - dodoc \ - AUTHORS INSTALL NEWS README TODO UPGRADE \ - {sockcheck,srvx}.conf.example \ - || die "dodoc failed" - - newinitd "${FILESDIR}"/srvx.init.d srvx || die "newinitd failed" - newconfd "${FILESDIR}"/srvx.conf.d srvx || die "newconfd failed" -} - -pkg_setup() { - enewgroup srvx - enewuser srvx -1 -1 /var/lib/srvx srvx -} - -pkg_postinst() { - chown -R srvx:srvx "${ROOT}"/etc/srvx "${ROOT}"/var/lib/srvx - chmod 0700 "${ROOT}"/etc/srvx "${ROOT}"/var/lib/srvx -} -- cgit v1.2.3-65-gdbad