summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarek Szuba <marecki@gentoo.org>2021-11-27 16:05:58 +0100
committerMarek Szuba <marecki@gentoo.org>2021-11-27 17:01:29 +0100
commit2778e6183d7128520ba69aa95c41c2ec0354ef37 (patch)
tree0750d48f010f2b929ea85208e7e225a12fe0ccfd
parentdev-python/fs: Remove obsolete test dep on pyftpdlib (diff)
downloadgentoo-2778e6183d7128520ba69aa95c41c2ec0354ef37.tar.gz
gentoo-2778e6183d7128520ba69aa95c41c2ec0354ef37.tar.bz2
gentoo-2778e6183d7128520ba69aa95c41c2ec0354ef37.zip
www-misc/fcgiwrap: drop 9999
Signed-off-by: Marek Szuba <marecki@gentoo.org>
-rw-r--r--www-misc/fcgiwrap/fcgiwrap-9999.ebuild59
1 files changed, 0 insertions, 59 deletions
diff --git a/www-misc/fcgiwrap/fcgiwrap-9999.ebuild b/www-misc/fcgiwrap/fcgiwrap-9999.ebuild
deleted file mode 100644
index a51f3f4835ab..000000000000
--- a/www-misc/fcgiwrap/fcgiwrap-9999.ebuild
+++ /dev/null
@@ -1,59 +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
- SRC_URI="https://github.com/gnosek/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~arm ~x86"
-fi
-
-RDEPEND="
- dev-libs/fcgi
- systemd? ( sys-apps/systemd )
-"
-DEPEND="${RDEPEND}
- virtual/pkgconfig"
-
-DOCS=( README.rst )
-
-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.'
-}