2000-02-03 13:46:39 +00:00
|
|
|
# New ports collection makefile for: lbdb
|
|
|
|
# Date created: 2 February 2000
|
|
|
|
# Whom: mwest@uct.ac.za
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
2000-04-13 20:01:08 +00:00
|
|
|
PORTNAME= lbdb
|
2007-09-22 20:34:07 +00:00
|
|
|
PORTVERSION= 0.35.1
|
2000-02-03 13:46:39 +00:00
|
|
|
CATEGORIES= mail
|
2000-06-22 13:10:05 +00:00
|
|
|
MASTER_SITES= http://www.spinnaker.de/debian/
|
2000-04-13 20:01:08 +00:00
|
|
|
DISTNAME= ${PORTNAME}_${PORTVERSION}
|
2000-02-03 13:46:39 +00:00
|
|
|
|
2004-02-23 23:40:47 +00:00
|
|
|
MAINTAINER= obraun@FreeBSD.org
|
2003-02-21 12:51:06 +00:00
|
|
|
COMMENT= Set of tools for use with mutt's external mail address query feature
|
2000-02-03 13:46:39 +00:00
|
|
|
|
2007-09-10 01:04:49 +00:00
|
|
|
WRKSRC= ${WRKDIR}/lbdb-${PORTVERSION}
|
|
|
|
GNU_CONFIGURE= YES
|
|
|
|
CONFIGURE_ARGS+= --libdir=${PREFIX}/libexec --enable-lbdb-dotlock
|
|
|
|
USE_GMAKE= YES
|
|
|
|
USE_PERL5= yes
|
|
|
|
|
2004-02-23 23:40:47 +00:00
|
|
|
.include <bsd.port.pre.mk>
|
2001-02-26 04:54:23 +00:00
|
|
|
|
2004-02-23 23:40:47 +00:00
|
|
|
.if exists (${LOCALBASE}/bin/gpg)
|
|
|
|
WITH_GPG= yes
|
|
|
|
.endif
|
|
|
|
.if exists (${LOCALBASE}/bin/abook)
|
|
|
|
WITH_ABOOK= yes
|
|
|
|
.endif
|
|
|
|
.if exists (${X11BASE}/bin/evolution)
|
|
|
|
WITH_EVOLUTION= yes
|
|
|
|
.endif
|
2006-08-14 09:04:15 +00:00
|
|
|
.if exists (/usr/bin/getent)
|
|
|
|
WITH_GETENT= yes
|
|
|
|
.endif
|
2004-02-23 23:40:47 +00:00
|
|
|
|
|
|
|
.if defined(PACKAGE_BUILDING)
|
|
|
|
WITH_GPG= yes
|
|
|
|
WITH_ABOOK= yes
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.if defined(WITH_GPG)
|
|
|
|
BUILD_DEPENDS= gpg:${PORTSDIR}/security/gnupg
|
|
|
|
RUN_DEPENDS= gpg:${PORTSDIR}/security/gnupg
|
|
|
|
PLIST_SUB+= GPG=""
|
|
|
|
.else
|
|
|
|
PLIST_SUB+= GPG="@comment "
|
|
|
|
.endif
|
|
|
|
.if defined(WITH_ABOOK)
|
|
|
|
BUILD_DEPENDS+= abook:${PORTSDIR}/mail/abook
|
|
|
|
RUN_DEPENDS+= abook:${PORTSDIR}/mail/abook
|
|
|
|
PLIST_SUB+= ABOOK=""
|
|
|
|
.else
|
|
|
|
PLIST_SUB+= ABOOK="@comment "
|
|
|
|
.endif
|
|
|
|
.if defined(WITH_EVOLUTION)
|
|
|
|
BUILD_DEPENDS+= evolution:${PORTSDIR}/mail/evolution
|
|
|
|
RUN_DEPENDS+= evolution:${PORTSDIR}/mail/evolution
|
|
|
|
PLIST_SUB+= EVOLUTION=""
|
|
|
|
.else
|
|
|
|
PLIST_SUB+= EVOLUTION="@comment "
|
|
|
|
.endif
|
2006-08-14 09:04:15 +00:00
|
|
|
.if defined(WITH_GETENT)
|
|
|
|
PLIST_SUB+= GETENT=""
|
|
|
|
.else
|
|
|
|
PLIST_SUB+= GETENT="@comment "
|
|
|
|
.endif
|
2004-02-23 21:59:14 +00:00
|
|
|
|
2001-09-02 15:03:16 +00:00
|
|
|
MAN1= nodelist2lbdb.1 lbdbq.1 lbdb-fetchaddr.1 lbdb_dotlock.1 \
|
|
|
|
mutt_ldap_query.1
|
2000-02-03 13:46:39 +00:00
|
|
|
|
2004-02-23 23:40:47 +00:00
|
|
|
.include <bsd.port.post.mk>
|