summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans de Graaff <graaff@gentoo.org>2011-10-08 06:12:58 +0000
committerHans de Graaff <graaff@gentoo.org>2011-10-08 06:12:58 +0000
commit46c3b0e771802a70b7d884da0be68573a031fae5 (patch)
tree366a9f6f64d7bdb0d71dbc9aa37b92414c7d901d
parentRemove old version. (diff)
downloadgentoo-2-46c3b0e771802a70b7d884da0be68573a031fae5.tar.gz
gentoo-2-46c3b0e771802a70b7d884da0be68573a031fae5.tar.bz2
gentoo-2-46c3b0e771802a70b7d884da0be68573a031fae5.zip
Remove old version.
(Portage version: 2.1.10.11/cvs/Linux x86_64)
-rw-r--r--dev-libs/fcgi/ChangeLog7
-rw-r--r--dev-libs/fcgi/fcgi-2.4.0-r2.ebuild53
2 files changed, 5 insertions, 55 deletions
diff --git a/dev-libs/fcgi/ChangeLog b/dev-libs/fcgi/ChangeLog
index 801bf6b57847..e17af2087a17 100644
--- a/dev-libs/fcgi/ChangeLog
+++ b/dev-libs/fcgi/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-libs/fcgi
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/fcgi/ChangeLog,v 1.47 2010/03/01 10:59:34 ssuominen Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/fcgi/ChangeLog,v 1.48 2011/10/08 06:12:58 graaff Exp $
+
+ 08 Oct 2011; Hans de Graaff <graaff@gentoo.org> -fcgi-2.4.0-r2.ebuild:
+ Remove old version.
01 Mar 2010; Samuli Suominen <ssuominen@gentoo.org>
fcgi-2.4.1_pre0311112127.ebuild:
diff --git a/dev-libs/fcgi/fcgi-2.4.0-r2.ebuild b/dev-libs/fcgi/fcgi-2.4.0-r2.ebuild
deleted file mode 100644
index 0e7d9c6de4b6..000000000000
--- a/dev-libs/fcgi/fcgi-2.4.0-r2.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/fcgi/fcgi-2.4.0-r2.ebuild,v 1.9 2008/01/12 20:26:52 grobian Exp $
-
-inherit eutils autotools multilib
-
-DESCRIPTION="FastCGI Developer's Kit"
-HOMEPAGE="http://www.fastcgi.com/"
-SRC_URI="http://www.fastcgi.com/dist/${P}.tar.gz"
-
-LICENSE="FastCGI"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sh sparc x86 ~x86-fbsd"
-IUSE="html"
-
-DEPEND=""
-RDEPEND=""
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- epatch "${FILESDIR}/${P}-Makefile.patch"
- epatch "${FILESDIR}/${P}-clientdata-pointer.patch"
- epatch "${FILESDIR}/${P}-html-updates.patch"
-
- eautoreconf
-}
-
-src_compile() {
- econf || die "econf failed"
- make || die "make failed"
-}
-
-src_install() {
- make 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
-}