diff options
author | pav <pav@FreeBSD.org> | 2005-02-17 17:45:28 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2005-02-17 17:45:28 +0800 |
commit | d971e1889accdf26a0d0947f876eb2d968c71c85 (patch) | |
tree | 94a9b28398c0d2103139298ff07484f51d28c9f8 /mail | |
parent | f6a9f47341f2ddc30352bd144e9e6b0423ae2be1 (diff) | |
download | freebsd-ports-graphics-d971e1889accdf26a0d0947f876eb2d968c71c85.tar.gz freebsd-ports-graphics-d971e1889accdf26a0d0947f876eb2d968c71c85.tar.zst freebsd-ports-graphics-d971e1889accdf26a0d0947f876eb2d968c71c85.zip |
+ Update to 2.2-20050214
+ Change PgSQL OPTION (from mail/postfix)
PR: ports/77571
Submitted by: Marcus Grando <marcus@corp.grupos.com.br> (maintainer)
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 5a75f95471f..51ee3d95a45 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 9e566246bcf..c20176d53ce 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 89eddeaf349..8f1ccc66803 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" |