mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-05 01:55:52 +00:00
597afc47ba
With hat: portmgr Sponsored by: Absolight
32 lines
1.1 KiB
Makefile
32 lines
1.1 KiB
Makefile
# Created by: Oliver Lehmann
|
|
# $FreeBSD$
|
|
|
|
# To depend on courier-authlib you might consider using this file by specifying
|
|
#
|
|
#.if exists(${.CURDIR}/../../security/courier-authlib/Makefile.dep)
|
|
#.include "${.CURDIR}/../../security/courier-authlib/Makefile.dep"
|
|
#.endif
|
|
#
|
|
# in your Makefile *before* any
|
|
#.include <bsd.port.pre.mk>
|
|
|
|
.if ${PORT_OPTIONS:MAUTH_LDAP}
|
|
BUILD_DEPENDS+= ${LOCALBASE}/lib/courier-authlib/libauthldap.so:net/courier-authlib-ldap
|
|
.endif
|
|
.if ${PORT_OPTIONS:MAUTH_MYSQL}
|
|
BUILD_DEPENDS+= ${LOCALBASE}/lib/courier-authlib/libauthmysql.so:databases/courier-authlib-mysql
|
|
.endif
|
|
.if ${PORT_OPTIONS:MAUTH_PGSQL}
|
|
BUILD_DEPENDS+= ${LOCALBASE}/lib/courier-authlib/libauthpgsql.so:databases/courier-authlib-pgsql
|
|
.endif
|
|
.if ${PORT_OPTIONS:MAUTH_USERDB}
|
|
.if ${PORT_OPTIONS:MGDBM}
|
|
BUILD_DEPENDS+= ${LOCALBASE}/lib/courier-authlib/libauthuserdb.so:databases/courier-authlib-usergdbm
|
|
.else
|
|
BUILD_DEPENDS+= ${LOCALBASE}/lib/courier-authlib/libauthuserdb.so:databases/courier-authlib-userdb
|
|
.endif
|
|
.endif
|
|
.if ${PORT_OPTIONS:MAUTH_VCHKPW}
|
|
BUILD_DEPENDS+= ${LOCALBASE}/lib/courier-authlib/libauthvchkpw.so:mail/courier-authlib-vchkpw
|
|
.endif
|