f9fba21138
Changelog: * m_pine: Double-quote parens. Thanks to Stefan M<C3><A4>tje for reporting this bug and sending a patch. * Apply patch by Brendan Cully to follow the Apple build system changes used to build ABQuery module. * Add m_vcf module for querying vcard files provided by Brendan Cully. * Add authentication (bind_dn, bind_password) to mutt_ldap_query. Based on an idea of Jan-Benedict Glaw (Closes: #324655, #286163). * Update FSF address in nearly all files. * Upgrade to standards-version 3.6.2 (no changes). For now, make sure the m_vcf module is not built. It depends on libvformat, which is not yet in pkgsrc
43 lines
1.1 KiB
Makefile
43 lines
1.1 KiB
Makefile
# $NetBSD: Makefile,v 1.10 2005/11/12 17:43:42 tonio Exp $
|
|
|
|
DISTNAME= lbdb_0.31
|
|
PKGNAME= ${DISTNAME:S/_/-/}
|
|
CATEGORIES= databases
|
|
MASTER_SITES= http://www.spinnaker.de/debian/
|
|
|
|
MAINTAINER= tonio@NetBSD.org
|
|
HOMEPAGE= http://www.spinnaker.de/lbdb/
|
|
COMMENT= The little brother's database
|
|
|
|
DEPENDS+= p5-perl-ldap>=0.20:../../databases/p5-perl-ldap
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_TOOLS+= gmake perl:run
|
|
USE_PKGINSTALL= yes
|
|
|
|
CONFIGURE_ARGS+= --libdir=${PREFIX}/libexec/lbdb/
|
|
CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR}
|
|
CONFIGURE_ARGS+= --enable-lbdb_dotlock
|
|
CONFIGURE_ARGS+= --without-getent
|
|
CONFIGURE_ARGS+= --without-evolution-addressbook-export
|
|
CONFIGURE_ARGS+= --without-pgp
|
|
CONFIGURE_ARGS+= --without-pgpk
|
|
|
|
CONFIGURE_ENV+= SH=${TOOLS_SH}
|
|
CONFIGURE_ENV+= AWK=${TOOLS_AWK}
|
|
|
|
.include "options.mk"
|
|
|
|
WRKSRC= ${WRKDIR}/${PKGNAME_NOREV}
|
|
|
|
EGDIR= ${PREFIX}/share/examples/lbdb
|
|
CONF_FILES+= ${EGDIR}/lbdb.rc ${PKG_SYSCONFDIR}/lbdb.rc
|
|
CONF_FILES+= ${EGDIR}/lbdb_ldap.rc ${PKG_SYSCONFDIR}/lbdb_ldap.rc
|
|
|
|
.if ${OPSYS} == "Interix"
|
|
PLIST_SUBST+= WITHYP='@comment '
|
|
.else
|
|
PLIST_SUBST+= WITHYP=''
|
|
.endif
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|