summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2019-09-11 13:27:30 +0200
committerMichał Górny <mgorny@gentoo.org>2019-09-11 18:21:09 +0200
commitec0d08162718444fd61bf120c8b490a19a751352 (patch)
tree5c382726c4e7f314662a843f8d9ee179eee57497 /www-misc/fcgiwrap/fcgiwrap-1.1.0_pre20150419.ebuild
parentwww-client/ripe-atlas-cousteau: Drop old (diff)
downloadgentoo-ec0d08162718444fd61bf120c8b490a19a751352.tar.gz
gentoo-ec0d08162718444fd61bf120c8b490a19a751352.tar.bz2
gentoo-ec0d08162718444fd61bf120c8b490a19a751352.zip
www-misc/fcgiwrap: Drop old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'www-misc/fcgiwrap/fcgiwrap-1.1.0_pre20150419.ebuild')
-rw-r--r--www-misc/fcgiwrap/fcgiwrap-1.1.0_pre20150419.ebuild63
1 files changed, 0 insertions, 63 deletions
diff --git a/www-misc/fcgiwrap/fcgiwrap-1.1.0_pre20150419.ebuild b/www-misc/fcgiwrap/fcgiwrap-1.1.0_pre20150419.ebuild
deleted file mode 100644
index b6310e79a9d5..000000000000
--- a/www-misc/fcgiwrap/fcgiwrap-1.1.0_pre20150419.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-[[ ${PV} = *9999* ]] && VCS_ECLASS="git-r3" || VCS_ECLASS=""
-inherit autotools systemd toolchain-funcs ${VCS_ECLASS}
-
-DESCRIPTION="Simple FastCGI wrapper for CGI scripts (CGI support for nginx)"
-HOMEPAGE="https://github.com/gnosek/fcgiwrap"
-
-LICENSE="BSD"
-SLOT="0"
-IUSE="systemd"
-
-if [[ ${PV} == *9999* ]]; then
- EGIT_REPO_URI="https://github.com/gnosek/${PN}.git"
-else
- MY_REV="99c942c90063c73734e56bacaa65f947772d9186"
- MY_P="gnosek-fcgiwrap-${MY_REV:0:7}"
- SRC_URI="https://github.com/gnosek/${PN}/tarball/${MY_REV} -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~arm ~x86"
-fi
-
-RDEPEND="
- dev-libs/fcgi
- systemd? ( sys-apps/systemd )
-"
-DEPEND="${RDEPEND}
- virtual/pkgconfig"
-
-DOCS=( README.rst )
-
-S="${WORKDIR}/${MY_P}"
-
-src_prepare() {
- sed -e "s/-Werror//" \
- -i configure.ac || die "sed failed"
-
- sed -e '/man8dir = $(DESTDIR)/s/@prefix@//' \
- -i Makefile.in || die "sed failed"
-
- sed -e "s/libsystemd-daemon/libsystemd/" \
- -i configure.ac || die "sed failed"
- tc-export CC
-
- # Fix systemd units for Gentoo
- sed -i -e '/User/d' systemd/fcgiwrap.service || die
- sed -i -e '/Group/d' systemd/fcgiwrap.service || die
-
- eapply_user
- eautoreconf
-}
-
-src_configure() {
- econf \
- $(use_with systemd) \
- --with-systemdsystemunitdir="$(systemd_get_systemunitdir)"
-}
-
-pkg_postinst() {
- einfo 'You may want to install www-servers/spawn-fcgi to use with fcgiwrap.'
-}