summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRafael Martins <rafaelmartins@gentoo.org>2015-02-25 04:40:44 +0000
committerRafael Martins <rafaelmartins@gentoo.org>2015-02-25 04:40:44 +0000
commite0bc851992757f511b6165719be719587ba5e14d (patch)
tree8ac364c1a0f1639ff0f86d4f385383152426c12c /dev-libs/fcgi
parentBump (diff)
downloadgentoo-2-e0bc851992757f511b6165719be719587ba5e14d.tar.gz
gentoo-2-e0bc851992757f511b6165719be719587ba5e14d.tar.bz2
gentoo-2-e0bc851992757f511b6165719be719587ba5e14d.zip
Removing vulnerable ebuild. bug #539164
(Portage version: 2.2.15/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'dev-libs/fcgi')
-rw-r--r--dev-libs/fcgi/ChangeLog6
-rw-r--r--dev-libs/fcgi/fcgi-2.4.1_pre0910052249.ebuild51
2 files changed, 5 insertions, 52 deletions
diff --git a/dev-libs/fcgi/ChangeLog b/dev-libs/fcgi/ChangeLog
index b8e2a9a542dc..8ef493bec6b1 100644
--- a/dev-libs/fcgi/ChangeLog
+++ b/dev-libs/fcgi/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-libs/fcgi
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/fcgi/ChangeLog,v 1.69 2015/02/24 10:56:40 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/fcgi/ChangeLog,v 1.70 2015/02/25 04:40:44 rafaelmartins Exp $
+
+ 25 Feb 2015; Rafael G. Martins <rafaelmartins@gentoo.org>
+ -fcgi-2.4.1_pre0910052249.ebuild:
+ Removing vulnerable ebuild. bug #539164
24 Feb 2015; Agostino Sarubbo <ago@gentoo.org>
fcgi-2.4.1_pre0910052249-r2.ebuild:
diff --git a/dev-libs/fcgi/fcgi-2.4.1_pre0910052249.ebuild b/dev-libs/fcgi/fcgi-2.4.1_pre0910052249.ebuild
deleted file mode 100644
index 9e9945c17cbc..000000000000
--- a/dev-libs/fcgi/fcgi-2.4.1_pre0910052249.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/fcgi/fcgi-2.4.1_pre0910052249.ebuild,v 1.9 2012/07/29 23:56:22 blueness Exp $
-
-EAPI="2"
-
-inherit eutils autotools multilib
-
-DESCRIPTION="FastCGI Developer's Kit"
-HOMEPAGE="http://www.fastcgi.com/"
-SRC_URI="http://www.fastcgi.com/dist/fcgi-2.4.1-SNAP-0910052249.tar.gz"
-
-LICENSE="FastCGI"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sh sparc x86 ~x86-fbsd"
-IUSE="html"
-
-DEPEND=""
-RDEPEND=""
-
-S="${WORKDIR}/fcgi-2.4.1-SNAP-0910052249"
-
-src_prepare() {
- epatch "${FILESDIR}/fcgi-2.4.0-Makefile.patch"
- epatch "${FILESDIR}/fcgi-2.4.0-clientdata-pointer.patch"
- epatch "${FILESDIR}/fcgi-2.4.0-html-updates.patch"
- epatch "${FILESDIR}"/fcgi-2.4.1_pre0311112127-gcc44.patch
- epatch "${FILESDIR}"/${P}-link.patch
-
- eautoreconf
-}
-
-src_install() {
- emake DESTDIR="${D}" install LIBRARY_PATH="${D}/usr/$(get_libdir)" || die
-
- dodoc README
-
- # install the manpages into the right place
- doman doc/*.[13]
-
- # Only install the html documentation if USE=html
- if use html ; then
- dohtml "${S}"/doc/*/*
- insinto /usr/share/doc/${PF}/html
- doins -r "${S}/images"
- fi
-
- # install examples in the right place
- insinto /usr/share/doc/${PF}/examples
- doins "${S}/examples/"*.c
-}