diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2012-12-29 23:14:24 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2012-12-29 23:14:24 +0000 |
commit | 541cf0967efcc73552bbc7c0fb22b705131684b1 (patch) | |
tree | 8e0c0dfacd4b07d14343c4cab798670e0d72bdf6 /mail/popular | |
parent | 5de2e326447951c0ee5a7905794921949d24286d (diff) |
Notes
Diffstat (limited to 'mail/popular')
-rw-r--r-- | mail/popular/Makefile | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/mail/popular/Makefile b/mail/popular/Makefile index f12a9e558142..760da5fc9cc0 100644 --- a/mail/popular/Makefile +++ b/mail/popular/Makefile @@ -1,9 +1,5 @@ -# New ports collection makefile for: popular -# Date created: 11 July 2005 -# Whom: Pav Lucistnik <pav@FreeBSD.org> -# +# Created by: Pav Lucistnik <pav@FreeBSD.org> # $FreeBSD$ -# PORTNAME= popular PORTVERSION= 1.5.5 @@ -35,11 +31,13 @@ MAN1= pcheck.1 pcontrol.1 pdeliver.1 pstatus.1 ptestpdm.1 MAN7= popular-log.7 MAN8= pcheckd.8 pproxy.8 pserv.8 ringd.8 -OPTIONS= DB4 "Build db4 pdm module" on +OPTIONS_DEFINE= DB4 +OPTIONS_DEFAULT= DB4 +DB4_DESC= Build db4 pdm module -.include <bsd.port.pre.mk> +.include <bsd.port.options.mk> -.if !defined(WITHOUT_DB4) +.if ${PORT_OPTIONS:MDB4} LIB_DEPENDS+= db4.0:${PORTSDIR}/databases/db4 PLIST_SUB+= WITH_DB4="" PDM_MODULES+= db4 @@ -54,4 +52,4 @@ post-install: ${MKDIR} ${PREFIX}/include/popular ${FIND} ${WRKSRC}/src -name *.h | ${XARGS} -n 1 -J % ${INSTALL_DATA} % ${PREFIX}/include/popular -.include <bsd.port.post.mk> +.include <bsd.port.mk> |