37f54e0f66
- Convert to USES=libtool and bump dependent ports - Avoid USE_AUTOTOOLS - Don't use PTHREAD_LIBS - Use MAKE_CMD databases/glom: - Drop :keepla - Add INSTALL_TARGET=install-strip databases/libgda4* databases/libgda5*: - Convert to USES=libtool and bump dependent ports - USES=tar:xz - Use INSTALL_TARGET=install-strip - Use @sample databases/libgdamm: - Drop :keepla - USES=tar:bzip2 - Use INSTALL_TARGET=install-strip databases/libgdamm5: - Add INSTALL_TARGET=install-strip - Drop --enable-static (inherited from old repocopy) devel/anjuta x11-toolkits/py-gnome-extras: - Drop :keepla dns/powerdns dns/powerdns-devel: - Convert to USES=libtool - Add INSTALL_TARGET=install-strip - Disable static modules - Stop creating library symlinks with .0 suffix, not needed for dynamically opened modules mail/dovecot2: - Add USES=libtool mail/dovecot2-pigeonhole: - Drop CONFIGURE_TARGET (incorrect for Dragonfly) - Add USES=libtool and INSTALL_TARGET=install-strip math/gnumeric: - USES=libtool tar:xz Approved by: portmgr (implicit, bump unstaged ports)
64 lines
1.8 KiB
Makefile
64 lines
1.8 KiB
Makefile
# Created by: Ed Schouten <ed@fxq.nl>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= xshttpd
|
|
DISTVERSION= 3.6g01
|
|
PORTREVISION= 8
|
|
CATEGORIES= www ipv6
|
|
MASTER_SITES= ftp://ftp.stack.nl/pub/xs-httpd/release/ \
|
|
ftp://mud.stack.nl/pub/xs-httpd/release/
|
|
DISTNAME= ${PORTNAME}-${DISTVERSION:S/.//}
|
|
|
|
MAINTAINER= johans@FreeBSD.org
|
|
COMMENT= Webserver with CGI as own user and SSL support
|
|
|
|
RUN_DEPENDS= run-mailcap:${PORTSDIR}/misc/mime-support \
|
|
ppmtogif:${PORTSDIR}/graphics/netpbm
|
|
|
|
CONFLICTS_INSTALL= xshttpd-devel-[0-9]* publicfile-[0-9]*
|
|
|
|
USE_BZIP2= yes
|
|
USE_RC_SUBR= xshttpd
|
|
GNU_CONFIGURE= yes
|
|
|
|
WWWDIR= ${PREFIX}/www/${PORTNAME}
|
|
CONFIGURE_ARGS+=--with-rootdir=${WWWDIR}
|
|
|
|
OPTIONS_DEFINE= SSL PCRE LDAP CURL M4_CONFIG PERSISTENT_PERL
|
|
OPTIONS_DEFAULT=SSL PCRE
|
|
SSL_CONFIGURE_WITH= ssl
|
|
LDAP_USE= openldap
|
|
LDAP_CONFIGURE_WITH= ldap
|
|
M4_CONFIG_DESC= Enable m4 configuration preprocessor
|
|
M4_CONFIG_CONFIGURE_WITH=preprocessor
|
|
PERSISTENT_PERL_DESC= Enable persistent Perl interpreter
|
|
PERSISTENT_PERL_USES= perl5
|
|
PERSISTENT_PERL_CONFIGURE_WITH= perl
|
|
PCRE_LIB_DEPENDS= libpcre.so:${PORTSDIR}/devel/pcre
|
|
PCRE_CONFIGURE_WITH= pcre
|
|
CURL_LIB_DEPENDS= libcurl.so:${PORTSDIR}/ftp/curl
|
|
CURL_CONFIGURE_WITH= curl
|
|
|
|
PORTDOCS= README ChangeLog
|
|
|
|
post-patch:
|
|
.for i in man/httpd.1.in man/httpd.conf.5 config/httpd.conf.sample \
|
|
contrib/SSL-Makefile contrib/logrotate.sh
|
|
@${REINPLACE_CMD} \
|
|
-e 's|/wwwsys|${WWWDIR}|g' \
|
|
-e 's|/usr/local/lib/httpd|${WWWDIR}|g' \
|
|
-e 's|nobody|${WWWOWN}|g' \
|
|
-e 's|nogroup|${WWWGRP}|g' \
|
|
${WRKSRC}/$i
|
|
.endfor
|
|
@${REINPLACE_CMD} \
|
|
-e 's|\(MIME_TYPES\).*|\1 "${LOCALBASE}/etc/mime.types"|' \
|
|
${WRKSRC}/src/constants.h
|
|
@${REINPLACE_CMD} -e 's|mime.types ||g' \
|
|
${WRKSRC}/config/Makefile.in
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR} ${STAGEDIR}${WWWDIR}/htdocs
|
|
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|