diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2005-02-17 09:45:28 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2005-02-17 09:45:28 +0000 |
commit | d4c3bc932cd39d90addf34b8ee743dfe80a51bdb (patch) | |
tree | 0d911ad600fc9aff8b2fb97de696ba6c7d881462 /mail | |
parent | Update to 3.3.0 (diff) |
+ Update to 2.2-20050214
+ Change PgSQL OPTION (from mail/postfix)
PR: ports/77571
Submitted by: Marcus Grando <marcus@corp.grupos.com.br> (maintainer)
Notes
Notes:
svn path=/head/; revision=129077
Diffstat (limited to 'mail')
-rw-r--r-- | mail/postfix-current/Makefile | 2 | ||||
-rw-r--r-- | mail/postfix-current/distinfo | 4 | ||||
-rw-r--r-- | mail/postfix-current/scripts/configure.postfix | 19 |
3 files changed, 8 insertions, 17 deletions
diff --git a/mail/postfix-current/Makefile b/mail/postfix-current/Makefile index 5a75f95471fc..51ee3d95a458 100644 --- a/mail/postfix-current/Makefile +++ b/mail/postfix-current/Makefile @@ -15,7 +15,7 @@ # NOTE: PCRE is enabled by default unless you specifically disable it. PORTNAME= postfix -PORTVERSIONRAW= 2.2-20050212 +PORTVERSIONRAW= 2.2-20050214 PORTVERSION= ${PORTVERSIONRAW:S/-/./} PORTEPOCH= 2 CATEGORIES= mail ipv6 diff --git a/mail/postfix-current/distinfo b/mail/postfix-current/distinfo index 9e566246bcf8..c20176d53ce2 100644 --- a/mail/postfix-current/distinfo +++ b/mail/postfix-current/distinfo @@ -1,2 +1,2 @@ -MD5 (postfix/postfix-2.2-20050212.tar.gz) = 12191a2c250eecc56d944c2050593c16 -SIZE (postfix/postfix-2.2-20050212.tar.gz) = 2397152 +MD5 (postfix/postfix-2.2-20050214.tar.gz) = 2f107198e4670883d90f1201ea5fa2dd +SIZE (postfix/postfix-2.2-20050214.tar.gz) = 2397788 diff --git a/mail/postfix-current/scripts/configure.postfix b/mail/postfix-current/scripts/configure.postfix index 89eddeaf3490..8f1ccc66803f 100644 --- a/mail/postfix-current/scripts/configure.postfix +++ b/mail/postfix-current/scripts/configure.postfix @@ -30,8 +30,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" \ MySQL "MySQL map lookups (choose version with WITH_MYSQL_VER)" "$status_MySQL" \ -PgSQL "PostgreSQL v7.4 map lookups" "$status_PgSQL" \ -PgSQL73 "PostgreSQL v7.3 map lookups" "$status_PgSQL73" \ +PgSQL "PostgreSQL map lookups (choose with DEFAULT_PGSQL_VER)" "$status_PgSQL" \ OpenLDAP "OpenLDAP map lookups (choose ver. with WITH_OPENLDAP_VER)" "$status_OpenLDAP" \ NIS "NIS map lookups" "$status_NIS" \ Test "SMTP/LMTP test server and generator" "$status_Test" \ @@ -164,18 +163,10 @@ while [ "$1" ]; do echo "MYSQL_SUFFIX= +mysql" ;; PgSQL) - echo "POSTGRESQL_PORT?= databases/postgresql74-client" - echo "LIB_DEPENDS+= pq.3:\${PORTSDIR}/\${POSTGRESQL_PORT}" - echo "POSTFIX_CCARGS+= -DHAS_PGSQL -I\${LOCALBASE}/include -I\${LOCALBASE}/pgsql/include" - echo "POSTFIX_AUXLIBS+= -L\${LOCALBASE}/lib -L\${LOCALBASE}/pgsql/lib -lpq -lcrypt" - echo "PGSQL_SUFFIX= +pgsql" - ;; - PgSQL73) - echo "POSTGRESQL_PORT?= databases/postgresql73-client" - echo "LIB_DEPENDS+= pq.3:\${PORTSDIR}/\${POSTGRESQL_PORT}" - echo "POSTFIX_CCARGS+= -DHAS_PGSQL -I\${LOCALBASE}/include -I\${LOCALBASE}/pgsql/include" - echo "POSTFIX_AUXLIBS+= -L\${LOCALBASE}/lib -L\${LOCALBASE}/pgsql/lib -lpq -lcrypt" - echo "PGSQL_SUFFIX= +pgsql" + echo "USE_PGSQL=YES" + echo "POSTFIX_CCARGS+= -DHAS_PGSQL -I\${LOCALBASE}/include -I\${LOCALBASE}/pgsql/include" + echo "POSTFIX_AUXLIBS+= -L\${LOCALBASE}/lib -L\${LOCALBASE}/pgsql/lib -lpq -lcrypt" + echo "PGSQL_SUFFIX= +pgsql" ;; OpenLDAP) echo "USE_OPENLDAP=YES" |