diff -ruN postfix-current.old/Makefile postfix-current/Makefile --- postfix-current.old/Makefile Mon Feb 28 01:03:18 2005 +++ postfix-current/Makefile Mon Feb 28 14:39:17 2005 @@ -15,7 +15,7 @@ # NOTE: PCRE is enabled by default unless you specifically disable it. PORTNAME= postfix -PORTVERSIONRAW= 2.2-20050218 +PORTVERSIONRAW= 2.2-20050227 PORTVERSION= ${PORTVERSIONRAW:S/-/./} PORTEPOCH= 2 CATEGORIES= mail ipv6 diff -ruN postfix-current.old/distinfo postfix-current/distinfo --- postfix-current.old/distinfo Mon Feb 28 01:03:18 2005 +++ postfix-current/distinfo Mon Feb 28 14:39:42 2005 @@ -1,2 +1,2 @@ -MD5 (postfix/postfix-2.2-20050218.tar.gz) = 5b41c917635ec61e29731bc9cea07a96 -SIZE (postfix/postfix-2.2-20050218.tar.gz) = 2401756 +MD5 (postfix/postfix-2.2-20050227.tar.gz) = 10b9b8d39464abae33e9fe480635af3a +SIZE (postfix/postfix-2.2-20050227.tar.gz) = 2402536 diff -ruN postfix-current.old/pkg-plist postfix-current/pkg-plist --- postfix-current.old/pkg-plist Tue Feb 15 11:19:57 2005 +++ postfix-current/pkg-plist Mon Feb 28 14:46:55 2005 @@ -81,6 +81,7 @@ %%PORTDOCS%%%%DOCSDIR%%/BASIC_CONFIGURATION_README.html %%PORTDOCS%%%%DOCSDIR%%/BUILTIN_FILTER_README %%PORTDOCS%%%%DOCSDIR%%/BUILTIN_FILTER_README.html +%%PORTDOCS%%%%DOCSDIR%%/CONNECTION_CACHE_README.html %%PORTDOCS%%%%DOCSDIR%%/CONTENT_INSPECTION_README %%PORTDOCS%%%%DOCSDIR%%/CONTENT_INSPECTION_README.html %%PORTDOCS%%%%DOCSDIR%%/CYRUS_README.html diff -ruN postfix-current.old/scripts/configure.postfix postfix-current/scripts/configure.postfix --- postfix-current.old/scripts/configure.postfix Thu Feb 17 07:45:28 2005 +++ postfix-current/scripts/configure.postfix Mon Feb 28 15:07:52 2005 @@ -29,6 +29,7 @@ DB40 "Berkeley DB4.0 (required if SASL also built with DB4.0)" "$status_DB40" \ DB41 "Berkeley DB4.1 (required if SASL also built with DB4.1)" "$status_DB41" \ DB42 "Berkeley DB4.2 (required if SASL also built with DB4.2)" "$status_DB42" \ +DB43 "Berkeley DB4.3 (required if SASL also built with DB4.3)" "$status_DB43" \ MySQL "MySQL map lookups (choose version with WITH_MYSQL_VER)" "$status_MySQL" \ PgSQL "PostgreSQL map lookups (choose with DEFAULT_PGSQL_VER)" "$status_PgSQL" \ OpenLDAP "OpenLDAP map lookups (choose ver. with WITH_OPENLDAP_VER)" "$status_OpenLDAP" \ @@ -110,7 +111,7 @@ ;; DB3) if [ "X$BDB_SELECTED" != "X" ]; then - /usr/bin/dialog --msgbox "Select exactly one of the DB3, DB40, DB41 and DB42 options." 5 60 > /dev/stderr + /usr/bin/dialog --msgbox "Select exactly one of the DB3, DB40, DB41, DB42 and DB43 options." 5 60 > /dev/stderr rm -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc exit 1 fi @@ -122,7 +123,7 @@ ;; DB40) if [ "X$BDB_SELECTED" != "X" ]; then - /usr/bin/dialog --msgbox "Select exactly one of the DB3, DB40, DB41 and DB42 options." 5 60 > /dev/stderr + /usr/bin/dialog --msgbox "Select exactly one of the DB3, DB40, DB41, DB42 and DB43 options." 5 60 > /dev/stderr rm -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc exit 1 fi @@ -134,7 +135,7 @@ ;; DB41) if [ "X$BDB_SELECTED" != "X" ]; then - /usr/bin/dialog --msgbox "Select exactly one of the DB3, DB40, DB41 and DB42 options." 5 60 > /dev/stderr + /usr/bin/dialog --msgbox "Select exactly one of the DB3, DB40, DB41, DB42 and DB43 options." 5 60 > /dev/stderr rm -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc exit 1 fi @@ -146,7 +147,7 @@ ;; DB42) if [ "X$BDB_SELECTED" != "X" ]; then - /usr/bin/dialog --msgbox "Select exactly one of the DB3, DB40, DB41 and DB42 options." 5 60 > /dev/stderr + /usr/bin/dialog --msgbox "Select exactly one of the DB3, DB40, DB41, DB42 and DB43 options." 5 60 > /dev/stderr rm -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc exit 1 fi @@ -155,6 +156,18 @@ echo "POSTFIX_AUXLIBS+= -L\${LOCALBASE}/lib/db42/ -ldb" echo "DB_SUFFIX= +db42" BDB_SELECTED="42" + ;; + DB43) + if [ "X$BDB_SELECTED" != "X" ]; then + /usr/bin/dialog --msgbox "Select exactly one of the DB3, DB40, DB41, DB42 and DB43 options." 5 60 > /dev/stderr + rm -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc + exit 1 + fi + echo "LIB_DEPENDS+= db-4.3.0:\${PORTSDIR}/databases/db43" + echo "POSTFIX_CCARGS+= -I\${LOCALBASE}/include/db43" + echo "POSTFIX_AUXLIBS+= -L\${LOCALBASE}/lib/db43/ -ldb" + echo "DB_SUFFIX= +db43" + BDB_SELECTED="43" ;; MySQL) echo "USE_MYSQL=YES"