ports/100158: [MAINTAINER UPDATE] mail/tpop3d: [SUMMARIZE CHANGES]
Boris Kovalenko
boris at tagnet.ru
Wed Jul 12 10:10:19 UTC 2006
>Number: 100158
>Category: ports
>Synopsis: [MAINTAINER UPDATE] mail/tpop3d: [SUMMARIZE CHANGES]
>Confidential: no
>Severity: non-critical
>Priority: low
>Responsible: freebsd-ports-bugs
>State: open
>Quarter:
>Keywords:
>Date-Required:
>Class: change-request
>Submitter-Id: current-users
>Arrival-Date: Wed Jul 12 10:10:17 GMT 2006
>Closed-Date:
>Last-Modified:
>Originator: Boris Kovalenko
>Release: FreeBSD 6.1-RELEASE i386
>Organization:
JSC "TAGNet"
>Environment:
System: FreeBSD boris.nikom.ru 6.1-RELEASE FreeBSD 6.1-RELEASE #1: Wed May 10 10:43:32 YEKST 2006
>Description:
[DESCRIBE CHANGES]
Change the way OPTIONS is checked as suggested by Porters Handbook.
Generated with FreeBSD Port Tools 0.77
>How-To-Repeat:
>Fix:
--- tpop3d-1.5.3_3.patch begins here ---
diff -ruN --exclude=CVS /usr/ports/mail/tpop3d/Makefile /usr/ports/mail/tpop3d.new/Makefile
--- /usr/ports/mail/tpop3d/Makefile Wed Jun 28 10:32:41 2006
+++ /usr/ports/mail/tpop3d.new/Makefile Wed Jul 12 16:05:19 2006
@@ -33,8 +33,8 @@
.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 @@
--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 @@
--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
--- tpop3d-1.5.3_3.patch ends here ---
>Release-Note:
>Audit-Trail:
>Unformatted:
More information about the freebsd-ports-bugs
mailing list