0bbbd35e32
espie asked me in such a nice way to fix this that I'm bumping all ports that have a direct dependency on glib2.
54 lines
1.3 KiB
Makefile
54 lines
1.3 KiB
Makefile
# $OpenBSD: Makefile,v 1.9 2012/09/01 14:36:58 ajacoutot Exp $
|
|
|
|
COMMENT-main= wrapper to run CGI applications via FastCGI
|
|
COMMENT-static= static-linked fcgi-cgi wrapper for chroot use
|
|
|
|
V= 0.1.8
|
|
DISTNAME= fcgi-cgi-$V
|
|
PKGNAME-main= fcgi-cgi-$V
|
|
PKGNAME-static= fcgi-cgi-static-$V
|
|
REVISION= 4
|
|
CATEGORIES= www
|
|
|
|
HOMEPAGE= http://redmine.lighttpd.net/projects/fcgi-cgi/wiki
|
|
|
|
# MIT
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
WANTLIB += c ev glib-2.0 m pthread
|
|
|
|
MASTER_SITES= http://cgit.lighttpd.net/fcgi-cgi.git/snapshot/ \
|
|
http://spacehopper.org/mirrors/
|
|
|
|
SEPARATE_BUILD= Yes
|
|
MULTI_PACKAGES= -main -static
|
|
|
|
RUN_DEPENDS= www/spawn-fcgi
|
|
RUN_DEPENDS-static= www/fcgi-cgi,-main
|
|
LIB_DEPENDS= devel/libev \
|
|
devel/glib2
|
|
|
|
MODULES= devel/gettext
|
|
|
|
CONFIGURE_STYLE= autoconf automake
|
|
AUTOCONF_VERSION= 2.68
|
|
AUTOMAKE_VERSION= 1.11
|
|
PREFIX-static= /var/www/${TRUEPREFIX}
|
|
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include ${CPPFLAGS}" \
|
|
LDFLAGS="-L${LOCALBASE}/lib ${LDFLAGS}"
|
|
|
|
post-patch:
|
|
cd ${WRKSRC}; AUTOCONF_VERSION=${AUTOCONF_VERSION} \
|
|
AUTOMAKE_VERSION=${AUTOMAKE_VERSION} ./autogen.sh
|
|
|
|
post-install:
|
|
${INSTALL_PROGRAM_DIR} ${WRKINST}${PREFIX-static}/bin
|
|
mv ${PREFIX}/bin/fcgi-cgi-static \
|
|
${WRKINST}${PREFIX-static}/bin/fcgi-cgi
|
|
|
|
.include <bsd.port.mk>
|