summaryrefslogtreecommitdiff
path: root/dev-libs/fcgi/fcgi-2.4.1_pre0910052249-r2.ebuild
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:57:42 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:57:42 +0100
commit1798c4aeca70ac8d0a243684d6a798fbc65735f8 (patch)
treee48e19cb6fa03de18e1c63e1a93371b7ebc4eb56 /dev-libs/fcgi/fcgi-2.4.1_pre0910052249-r2.ebuild
parentd87262dd706fec50cd150aab3e93883b6337466d (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'dev-libs/fcgi/fcgi-2.4.1_pre0910052249-r2.ebuild')
-rw-r--r--dev-libs/fcgi/fcgi-2.4.1_pre0910052249-r2.ebuild51
1 files changed, 0 insertions, 51 deletions
diff --git a/dev-libs/fcgi/fcgi-2.4.1_pre0910052249-r2.ebuild b/dev-libs/fcgi/fcgi-2.4.1_pre0910052249-r2.ebuild
deleted file mode 100644
index 3e769cb26ae1..000000000000
--- a/dev-libs/fcgi/fcgi-2.4.1_pre0910052249-r2.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="4"
-
-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 ~arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
-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
- epatch "${FILESDIR}"/${P}-poll.patch
-
- eautoreconf
-}
-
-src_install() {
- emake DESTDIR="${D}" install LIBRARY_PATH="${ED}/usr/$(get_libdir)"
-
- 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
-}