# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/www-misc/fcgiwrap/fcgiwrap-1.1.0.ebuild,v 1.1 2013/02/18 19:10:11 hwoarang Exp $ EAPI="4" [[ ${PV} = *9999* ]] && VCS_ECLASS="git" || VCS_ECLASS="" inherit autotools toolchain-funcs ${VCS_ECLASS} DESCRIPTION="Simple FastCGI wrapper for CGI scripts (CGI support for nginx)" HOMEPAGE="http://nginx.localdomain.pl/wiki/FcgiWrap" LICENSE="BSD" SLOT="0" IUSE="" if [[ ${PV} == *9999* ]]; then EGIT_REPO_URI="git://github.com/gnosek/${PN}.git" KEYWORDS="" else SRC_URI="https://github.com/gnosek/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" KEYWORDS="~amd64 ~x86" fi RDEPEND="dev-libs/fcgi" DEPEND="${RDEPEND} virtual/pkgconfig" DOCS=( README.rst ) src_prepare() { sed -e '/man8dir = $(DESTDIR)/s/@prefix@//' \ -i Makefile.in || die "sed failed" tc-export CC eautoreconf } pkg_postinst() { einfo 'You may want to install www-servers/spawn-fcgi to use with fcgiwrap.' }