net-irc/srvx: cleaned per security bug 521892

This commit is contained in:
Aaron Bauman
2016-04-26 17:23:34 +09:00
parent 9ab7e67001
commit d7ec853863
5 changed files with 0 additions and 107 deletions

View File

@@ -1 +0,0 @@
DIST srvx-1.3.1.tar.bz2 560658 SHA256 e11347a58505f0274a54ca8f956ad21d9e5557ecfcd86f71a58be2fbc2a81d63 SHA512 6f0c4c3af48dea5bc51f673b66a8a72b9f54c2d0c40f5b00e77da0b1b48174ca671a473cd86a3aea4d3c5cb766995d5b892cc5748c47766d53414778403beb65 WHIRLPOOL f4e2f622f3bb20aee41af5b5826c5c5585be60c0ea7c1813f18e1126fa5e5f226190d8eb4411143d78795d0676dadbb7481a5267f2a1652821881be6e7f42527

View File

@@ -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"

View File

@@ -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 $?
}

View File

@@ -1,11 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<!-- maintainer-needed -->
<use>
<flag name="bahamut">Choose bahamut protocol over p10 protocol</flag>
</use>
<upstream>
<remote-id type="sourceforge">srvx</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -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
}