openbsd-ports/www/ap2-mod_fastcgi/Makefile
merdely 90a9f57099 mod_fastcgi is a module for the Apache2 web server, that enables
FastCGI - a standards based protocol for communicating with
applications that generate dynamic content for web pages.

FastCGI provides a superset of CGI functionality, but a subset of the
functionality of programming for a particular web server API.
Nonetheless, the feature set is rich enough for programming virtually
any type of web application, but the result is generally more
scalable.

Original suggestion from Roland Philippsen
Advice from steve@ and mbalmer@
Help and ok, simon@
2007-09-21 20:09:21 +00:00

43 lines
1.0 KiB
Makefile

# $OpenBSD: Makefile,v 1.1.1.1 2007/09/21 20:09:21 merdely Exp $
SHARED_ONLY= Yes
COMMENT= Apache2 FastCGI module
DISTNAME= mod_fastcgi-2.4.2
PKGNAME= ap2-${DISTNAME}
CATEGORIES= www
HOMEPAGE= http://www.fastcgi.com/
MASTER_SITES= ${HOMEPAGE}dist/
MAINTAINER= Michael Erdely <merdely@openbsd.org>
# Proprietary license
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
NO_REGRESS= Yes
RUN_DEPENDS= ::www/apache-httpd
BUILD_DEPENDS= ${RUN_DEPENDS}
MAKE_FLAGS= top_dir=${LOCALBASE}/share/apache2 \
APXS=${LOCALBASE}/sbin/apxs2 \
APACHECTL=${LOCALBASE}/sbin/apachectl2
FAKE_FLAGS= top_dir=${LOCALBASE}/share/apache2 \
APXS=${LOCALBASE}/sbin/apxs2 \
APACHECTL=${LOCALBASE}/sbin/apachectl2
MAKE_FILE= Makefile.AP2
INSTALL_TARGET= local-install
post-install:
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/apache2/mod/mod_fastcgi
${INSTALL_DATA} ${WRKBUILD}/docs/* \
${PREFIX}/share/doc/apache2/mod/mod_fastcgi
.include <bsd.port.mk>