summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Horelick <jdhore@gentoo.org>2013-02-02 17:23:04 +0000
committerJeff Horelick <jdhore@gentoo.org>2013-02-02 17:23:04 +0000
commitf9d539a040b33597a528be3c9007060ad3dab962 (patch)
tree2d98c350ce88d08c047cc5a2a38ff705e8ab4729 /net-irc/shadowircd
parentUpdate SRC_URI, HOMEPAGE. (diff)
downloadgentoo-2-f9d539a040b33597a528be3c9007060ad3dab962.tar.gz
gentoo-2-f9d539a040b33597a528be3c9007060ad3dab962.tar.bz2
gentoo-2-f9d539a040b33597a528be3c9007060ad3dab962.zip
Remove old vulnerable version
(Portage version: 2.2.0_alpha161/cvs/Linux i686, signed Manifest commit with key 23E9E900)
Diffstat (limited to 'net-irc/shadowircd')
-rw-r--r--net-irc/shadowircd/ChangeLog5
-rw-r--r--net-irc/shadowircd/shadowircd-6.3.2.1.ebuild90
2 files changed, 4 insertions, 91 deletions
diff --git a/net-irc/shadowircd/ChangeLog b/net-irc/shadowircd/ChangeLog
index f0b2f99f593c..1cfc9060f700 100644
--- a/net-irc/shadowircd/ChangeLog
+++ b/net-irc/shadowircd/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for net-irc/shadowircd
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/shadowircd/ChangeLog,v 1.9 2013/01/03 11:49:25 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/shadowircd/ChangeLog,v 1.10 2013/02/02 17:23:04 jdhore Exp $
+
+ 02 Feb 2013; Jeff Horelick <jdhore@gentoo.org> -shadowircd-6.3.2.1.ebuild:
+ Remove old vulnerable version
03 Jan 2013; Agostino Sarubbo <ago@gentoo.org> shadowircd-6.3.3.ebuild:
Stable for x86, wrt bug #449790
diff --git a/net-irc/shadowircd/shadowircd-6.3.2.1.ebuild b/net-irc/shadowircd/shadowircd-6.3.2.1.ebuild
deleted file mode 100644
index 3e73285de4c8..000000000000
--- a/net-irc/shadowircd/shadowircd-6.3.2.1.ebuild
+++ /dev/null
@@ -1,90 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/shadowircd/shadowircd-6.3.2.1.ebuild,v 1.5 2012/04/05 20:37:32 jdhore Exp $
-
-EAPI=4
-
-inherit eutils multilib user
-
-DESCRIPTION="An IRCd based on charybdis that adds several useful features"
-HOMEPAGE="http://shadowircd.net"
-SRC_URI="http://shadowircd.net/downloads/${P}.tar.bz2"
-LICENSE="GPL-2"
-
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="debug +ipv6 largenet ssl zlib"
-
-RDEPEND="ssl? ( dev-libs/openssl )
- zlib? ( sys-libs/zlib )"
-DEPEND="${RDEPEND}
- virtual/yacc
- sys-devel/flex"
-
-pkg_setup() {
- enewgroup ${PN}
- enewuser ${PN} -1 -1 "${EPREFIX}"/usr ${PN}
-}
-
-src_prepare() {
- # Fill the example configuration file with proper paths.
- sed -i \
- -e "s:path =.*modules:path = \"$(get_libdir)/${PN}/modules:g" \
- -e "s:etc/:../etc/${PN}/:g" \
- -e "s:logs/:../var/log/shadowircd/:g" \
- -e "s:test\.\(cert\|key\):ssl.\1:g" \
- doc/example.conf \
- doc/reference.conf \
- || die
-}
-
-src_configure() {
- econf \
- ac_cv_prog_cc_g=no \
- --disable-gnutls \
- $(use_enable debug assert soft) \
- $(use_enable debug iodebug) \
- $(use_enable ipv6) \
- $(use_enable !largenet small-net) \
- $(use_enable ssl openssl) \
- $(use_enable zlib) \
- --with-program-prefix=shadowircd- \
- \
- --enable-fhs-paths \
- --sysconfdir="${EPREFIX}"/etc/${PN} \
- --libdir="${EPREFIX}"/usr/"$(get_libdir)"/${PN} \
- --with-logdir="${EPREFIX}"/var/log/${PN} \
- --with-moduledir="${EPREFIX}"/usr/"$(get_libdir)"/${PN}/modules \
- --with-rundir="${EPREFIX}"/var/run
-}
-
-src_install() {
- default
-
- newinitd "${FILESDIR}"/${PN}.initd ${PN}
- newconfd "${FILESDIR}"/${PN}.confd ${PN}
-
- insinto etc/${PN}
- newins doc/reference.conf ircd.conf
-
- keepdir var/{lib,log}/${PN}
-
- # Ensure that if `make install' created /var/run/${PN}, we still
- # force the initscript to create that directory.
- rm -rf "${D}"/var/run || die
-
- # shadowircd needs writing to its state (bandb) and log directories
- fowners :shadowircd /var/{lib,log}/${PN}
- fperms 770 /var/{lib,log}/${PN}
-
- # ensure that shadowircd can access but not modify its configuration
- # while protecting it from others
- fowners :shadowircd /etc/${PN}{,/ircd.conf}
- fperms 750 /etc/${PN}
- fperms 640 /etc/${PN}/ircd.conf
-}
-
-pkg_postinst() {
- elog "All of the shadowircd binaries in PATH have been prefixed with"
- elog "'shadowircd-' to prevent file collisions."
-}