A big Thank You to the original contributors of these ports: * Alex Trull <freebsd.alex@trull.org> * Alonso Cardenas <acm@FreeBSD.org> * Boris Samorodov <bsam@FreeBSD.org> * David Shane Holden <dpejesh@yahoo.com> * Felix Palmen <felix@palmen-it.de> * Hirohisa Yamaguchi <umq@ueo.co.jp> * Kevin Bowling <kbowling@FreeBSD.org> * Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> * Markus Mann, CTS - FreeBSD Team <de-freebsd@ctseuro.com> * Matthias Andree * Matthias Fechner <mfechner@FreeBSD.org> * Oleg Sidorkin <osidorkin@gmail.com> * Oliver Lehmann * Radim Kolar <hsn@sendmail.cz> * Timothy Beyer <beyert@cs.ucr.edu> * hq@FreeBSD.org * johalun0@gmail.com * lev@FreeBSD.org * rooneg@electricjellyfish.net With hat: portmgr
31 lines
1.2 KiB
Text
31 lines
1.2 KiB
Text
# 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_SQLITE}
|
|
BUILD_DEPENDS+= ${LOCALBASE}/lib/courier-authlib/libauthsqlite.so:databases/courier-authlib-sqlite
|
|
.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
|