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)
38 lines
926 B
Makefile
38 lines
926 B
Makefile
# Created by: Clement Laforet <clement@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= mod_vhost_ldap
|
|
PORTVERSION= 2.0.8
|
|
PORTREVISION= 1
|
|
CATEGORIES= www
|
|
MASTER_SITES= ${MASTER_SITE_DEBIAN}
|
|
MASTER_SITE_SUBDIR=pool/main/m/mod-vhost-ldap
|
|
DISTNAME= ${PORTNAME:S/_/-/g}_${PORTVERSION}.orig
|
|
DIST_SUBDIR= apache2
|
|
|
|
MAINTAINER= apache@FreeBSD.org
|
|
COMMENT= Virtual Hosting from ldap built on top of mod_ldap
|
|
|
|
LICENSE= APACHE20
|
|
|
|
USE_OPENLDAP= yes
|
|
|
|
USE_APACHE= 22
|
|
AP_FAST_BUILD= yes
|
|
AP_GENPLIST= yes
|
|
AP_LIB+= ${LOCALBASE}/lib -lldap
|
|
AP_EXTRAS+= -DMOD_VHOST_LDAP_VERSION=\\\"mod_vhost_ldap/${PORTVERSION}\\\"
|
|
|
|
PORTDOCS= mod_vhost_ldap.schema vhost_ldap.conf COPYING
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME:S/_/-/g}-${PORTVERSION}
|
|
|
|
.if defined(PACKAGE_BUILDING)
|
|
IGNORE= Requires support of LDAP in apache 2.x port
|
|
.endif
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|