diff options
author | rafan <rafan@FreeBSD.org> | 2006-07-12 23:02:53 +0800 |
---|---|---|
committer | rafan <rafan@FreeBSD.org> | 2006-07-12 23:02:53 +0800 |
commit | aa123d67a70833d2ea85cc2a53a2f35c8721b999 (patch) | |
tree | b7ae0d7c9d556c472a2ee2ea9fda08a196163b9f /mail | |
parent | 373713a36fa22c5c7284653f1c257a6d8443bda0 (diff) | |
download | freebsd-ports-gnome-aa123d67a70833d2ea85cc2a53a2f35c8721b999.tar.gz freebsd-ports-gnome-aa123d67a70833d2ea85cc2a53a2f35c8721b999.tar.zst freebsd-ports-gnome-aa123d67a70833d2ea85cc2a53a2f35c8721b999.zip |
- Change the way OPTIONS is checked as suggested by Porters Handbook
PR: ports/100158
Submitted by: Boris Kovalenko <boris tagnet.ru> (maintainer)
Diffstat (limited to 'mail')
-rw-r--r-- | mail/tpop3d/Makefile | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/mail/tpop3d/Makefile b/mail/tpop3d/Makefile index 7bb18235e4ba..1924d4132511 100644 --- a/mail/tpop3d/Makefile +++ b/mail/tpop3d/Makefile @@ -33,8 +33,8 @@ OPTIONS= MYSQL "Use MySQL authentication" off \ .include <bsd.port.pre.mk> # MySQL authentication -.if defined(WITH_MYSQL) && !defined(WITHOUT_MYSQL) -.if defined(WITH_PGSQL) && !defined(WITHOUT_PGSQL) +.if defined(WITH_MYSQL) +.if defined(WITH_PGSQL) BROKEN= MySQL and PgSQL authentication can not be build together .endif USE_MYSQL= yes @@ -43,7 +43,7 @@ CONFIGURE_ARGS+= --enable-auth-mysql \ --with-mysql-include-dir=${LOCALBASE}/include/mysql .endif -.if defined(WITH_PGSQL) && !defined(WITHOUT_PGSQL) +.if defined(WITH_PGSQL) USE_PGSQL= yes DEFAULT_PGSQL_VER= 80 CONFIGURE_ARGS+= --enable-auth-pgsql \ @@ -51,26 +51,26 @@ CONFIGURE_ARGS+= --enable-auth-pgsql \ --with-pgsql-include-dir=${LOCALBASE}/include .endif -.if defined(WITH_LDAP) && !defined(WITHOUT_LDAP) +.if defined(WITH_LDAP) USE_OPENLDAP= yes CONFIGURE_ARGS+= --enable-auth-ldap --with-openldap-root=${LOCALBASE} .endif # Perl authentication -.if defined(WITH_PERLAUTH) && !defined(WITHOUT_PERLAUTH) +.if defined(WITH_PERLAUTH) USE_PERL5= yes CONFIGURE_ARGS+= --enable-auth-perl .endif -.if defined(WITH_FLATAUTH) && !defined(WITHOUT_FLATAUTH) +.if defined(WITH_FLATAUTH) CONFIGURE_ARGS+= --enable-auth-flatfile .endif -.if defined(WITH_MAILDIR) && !defined(WITHOUT_MAILDIR) +.if !defined(WITHOUT_MAILDIR) CONFIGURE_ARGS+= --enable-mbox-maildir .endif -.if defined(WITH_DRAC) && !defined(WITHOUT_DRAC) +.if defined(WITH_DRAC) CONFIGURE_ARGS+= --enable-drac BUILD_DEPENDS+= ${LOCALBASE}/lib/libdrac.a:${PORTSDIR}/mail/drac LDFLAGS+= -L${LOCALBASE}/lib |