Skip site navigation (1)Skip section navigation (2)
Date:      Thu,  4 Sep 2008 17:16:11 +0200 (CEST)
From:      bapt <baptiste.daroussin@gmail.com>
To:        FreeBSD-gnats-submit@FreeBSD.org
Cc:        yds@coolrat.org
Subject:   ports/127091: [PATCH] mail/dovecot: [SUMMARIZE CHANGES]
Message-ID:  <20080904151611.2C4FAF1885@wicklow.lan>
Resent-Message-ID: <200809041520.m84FK15n020952@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         127091
>Category:       ports
>Synopsis:       [PATCH] mail/dovecot: [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:   Thu Sep 04 15:20:01 UTC 2008
>Closed-Date:
>Last-Modified:
>Originator:     bapt
>Release:        FreeBSD 7.0-STABLE i386
>Organization:
>Environment:
System: FreeBSD wicklow.lan 7.0-STABLE FreeBSD 7.0-STABLE #6: Fri Aug  1 15:41:21 CEST
>Description:
[DESCRIBE CHANGES]

update dovecot ports to add support for berkleydb  database I use it for expire plugin for example
I added USE_BDB= 44+ because I only have tested with bdb44 and bdb46 not with oldest one

-L${BDB_LIB_DIR} is to prevent configure script to fail because it can't find libdb (doesn't work if I add this in LDFLAGS)

Port maintainer (yds@coolrat.org) is cc'd.

Generated with FreeBSD Port Tools 0.77
>How-To-Repeat:
>Fix:

--- dovecot-1.1.2_1.patch begins here ---
Index: Makefile
===================================================================
RCS file: /home/ncvs/ports/mail/dovecot/Makefile,v
retrieving revision 1.91
diff -u -r1.91 Makefile
--- Makefile	21 Aug 2008 06:17:33 -0000	1.91
+++ Makefile	4 Sep 2008 15:13:05 -0000
@@ -48,6 +48,7 @@
 		VPOPMAIL	"VPopMail support"	off \
 		LDAP		"OpenLDAP support"	off \
 		PGSQL		"PostgreSQL support"	off \
+		BDB		"BerkleyDB support"	off \
 		MYSQL		"MySQL support"		off \
 		SQLITE		"SQLite support"	off
 
@@ -141,6 +142,15 @@
 CONFIGURE_ARGS+=	--without-pgsql
 .endif
 
+## BDB Support
+#
+.if defined(WITH_BDB)
+USE_BDB=		44+
+CONFIGURE_ARGS+=	--with-db
+CFLAGS+=		-I${BDB_INCLUDE_DIR} -L${BDB_LIB_DIR}
+_REQUIRE+=		bdb
+.endif
+
 ## MySQL Support
 #
 .if defined(WITH_MYSQL)
--- dovecot-1.1.2_1.patch ends here ---

>Release-Note:
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20080904151611.2C4FAF1885>