diff options
author | Alex Legler <a3li@gentoo.org> | 2012-01-29 16:50:45 +0000 |
---|---|---|
committer | Alex Legler <a3li@gentoo.org> | 2012-01-29 16:50:45 +0000 |
commit | abde60e09741a7701091655dfbc1c2803f39de1b (patch) | |
tree | 8cf060dc7a26264656b43b763a1214acbd044ca1 /net-irc | |
parent | arm stable, bug #395735 (diff) | |
download | gentoo-2-abde60e09741a7701091655dfbc1c2803f39de1b.tar.gz gentoo-2-abde60e09741a7701091655dfbc1c2803f39de1b.tar.bz2 gentoo-2-abde60e09741a7701091655dfbc1c2803f39de1b.zip |
removing vulnerable version
(Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
Diffstat (limited to 'net-irc')
-rw-r--r-- | net-irc/bip/ChangeLog | 5 | ||||
-rw-r--r-- | net-irc/bip/bip-0.8.8.ebuild | 68 |
2 files changed, 4 insertions, 69 deletions
diff --git a/net-irc/bip/ChangeLog b/net-irc/bip/ChangeLog index 723a76ed3dfe..765532d50bec 100644 --- a/net-irc/bip/ChangeLog +++ b/net-irc/bip/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-irc/bip # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/bip/ChangeLog,v 1.25 2012/01/29 12:24:00 phajdan.jr Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/bip/ChangeLog,v 1.26 2012/01/29 16:50:45 a3li Exp $ + + 29 Jan 2012; Alex Legler <a3li@gentoo.org> -bip-0.8.8.ebuild: + removing vulnerable version 29 Jan 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> bip-0.8.8-r1.ebuild: x86 stable wrt bug #400599 diff --git a/net-irc/bip/bip-0.8.8.ebuild b/net-irc/bip/bip-0.8.8.ebuild deleted file mode 100644 index 58a93ce867f9..000000000000 --- a/net-irc/bip/bip-0.8.8.ebuild +++ /dev/null @@ -1,68 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/bip/bip-0.8.8.ebuild,v 1.3 2011/10/25 16:42:55 phajdan.jr Exp $ - -EAPI="2" -inherit eutils autotools - -DESCRIPTION="Multiuser IRC proxy with SSL support" -HOMEPAGE="http://bip.milkypond.org/" -SRC_URI="ftp://ftp.duckcorp.org/bip/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="debug freenode noctcp ssl vim-syntax oidentd" - -DEPEND="ssl? ( dev-libs/openssl )" -RDEPEND="${DEPEND} - vim-syntax? ( || ( app-editors/vim - app-editors/gvim ) ) - oidentd? ( >=net-misc/oidentd-2.0 )" - -src_prepare() { - epatch "${FILESDIR}/${P}-configure.patch" || die - - eautoreconf - - if use noctcp; then - sed -i -e '/irc_privmsg_check_ctcp(server, line);/s:^://:' src/irc.c || die - fi - - if use freenode; then - epatch "${FILESDIR}/${PN}-freenode.patch" || die - fi -} - -src_configure() { - econf \ - $(use_with ssl openssl) \ - $(use_enable debug) \ - $(use_enable oidentd) -} - -src_compile() { - # Parallel make fails. - emake -j1 || die "emake failed" -} - -src_install() { - dobin src/bip src/bipmkpw || die "dobin failed" - - dodoc AUTHORS ChangeLog README NEWS TODO || die "dodoc failed" - newdoc samples/bip.conf bip.conf.sample || die "newdoc failed" - doman bip.1 bip.conf.5 bipmkpw.1 || die "doman failed" - - if use vim-syntax; then - insinto /usr/share/vim/vimfiles/syntax - doins samples/bip.vim || die "doins failed" - insinto /usr/share/vim/vimfiles/ftdetect - doins "${FILESDIR}"/bip.vim || die "doins failed" - fi -} - -pkg_postinst() { - elog 'The default configuration file is "~/.bip/bip.conf"' - elog "You can find a sample configuration file in" - elog "/usr/share/doc/${PF}/bip.conf.sample" -} |