diff options
author | mandree <mandree@FreeBSD.org> | 2014-08-22 06:50:29 +0800 |
---|---|---|
committer | mandree <mandree@FreeBSD.org> | 2014-08-22 06:50:29 +0800 |
commit | b0113421712e3e2543fa9e1e0726502ef475e372 (patch) | |
tree | 5f9e6219e9207f083ae5e2fff1302ed5967538ef /www | |
parent | cd3ab2c3333aee48d376be65b1751fff66ee393b (diff) | |
download | freebsd-ports-gnome-b0113421712e3e2543fa9e1e0726502ef475e372.tar.gz freebsd-ports-gnome-b0113421712e3e2543fa9e1e0726502ef475e372.tar.zst freebsd-ports-gnome-b0113421712e3e2543fa9e1e0726502ef475e372.zip |
Berkeley DB cleanup, remove versions 4.0 ... 4.7.
- Mk/bsd.database.mk rewrite, new default to db5.
- db6 is eligible by default only if installed on the system.
- Bump PORTREVISION of all ports that directly depend on BerkeleyDB or
where USE_BDB is found in the port's directory
- Patch a few ports such that they will pick up or work with newer
versions.
- Add UPDATING entry
- Drive-by format fix for pks
- Drop BerkeleyDB option from mail/popular for now, requires more work.
- Exp-run logs linked from the PR below.
- Ports that do not build (IGNORE, BROKEN, etc.) have pro-forma changes
for new Berkeley DB, but are untested.
NOTE: please read UPDATING and the Wiki page before proceeding!
Announcement: http://lists.freebsd.org/pipermail/freebsd-ports-announce/2014-August/000090.html
Wiki reference: https://wiki.freebsd.org/Ports/BerkeleyDBCleanup
PR: 192690
Approved by: portmgr (implicit, PORTREVISION bump on unstaged ports)
Diffstat (limited to 'www')
-rw-r--r-- | www/c-icap/Makefile | 2 | ||||
-rw-r--r-- | www/crawl/Makefile | 2 | ||||
-rw-r--r-- | www/oops/Makefile | 10 | ||||
-rw-r--r-- | www/squidguard/Makefile | 2 | ||||
-rw-r--r-- | www/webalizer/Makefile | 2 |
5 files changed, 9 insertions, 9 deletions
diff --git a/www/c-icap/Makefile b/www/c-icap/Makefile index 2de4a3806e5d..f1a33bbba24c 100644 --- a/www/c-icap/Makefile +++ b/www/c-icap/Makefile @@ -3,7 +3,7 @@ PORTNAME= c-icap PORTVERSION= 0.3.3 -PORTREVISION= 3 +PORTREVISION= 4 PORTEPOCH= 2 CATEGORIES= www MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/0.3.x/ diff --git a/www/crawl/Makefile b/www/crawl/Makefile index ebd91fc86269..15362be32572 100644 --- a/www/crawl/Makefile +++ b/www/crawl/Makefile @@ -3,7 +3,7 @@ PORTNAME= crawl PORTVERSION= 0.4 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= www MASTER_SITES= http://www.monkey.org/~provos/ diff --git a/www/oops/Makefile b/www/oops/Makefile index cf6561267d3e..a851952ddd35 100644 --- a/www/oops/Makefile +++ b/www/oops/Makefile @@ -59,27 +59,27 @@ PGSQL_DESC= PostgreSQL auth support .include <bsd.port.options.mk> .if ${PORT_OPTIONS:MGIGABASE} -LIB_DEPENDS+= libgigabase_r.so:${PORTSDIR}/databases/gigabase +LIB_DEPENDS+= libgigabase_r.so:${PORTSDIR}/databases/gigabase CONFIGURE_ARGS+= --without-DB .endif .if ${PORT_OPTIONS:MDB4} -LIB_DEPENDS+= libdb4.so:${PORTSDIR}/databases/db4 +USE_BDB= db48+ CONFIGURE_ARGS+= --without-GB .endif .if ${PORT_OPTIONS:MMYSQL} -USE_MYSQL= YES +USE_MYSQL= YES CONFIGURE_ARGS+= --with-MYSQL=${PREFIX} .endif .if ${PORT_OPTIONS:MPGSQL} -USE_PGSQL= YES +USE_PGSQL= YES CONFIGURE_ARGS+= --with-PGSQL=${PREFIX}/pgsql .endif .if ${PORT_OPTIONS:MPCRE} -LIB_DEPENDS+= libpcre.so:${PORTSDIR}/devel/pcre +LIB_DEPENDS+= libpcre.so:${PORTSDIR}/devel/pcre CONFIGURE_ARGS+= --with-regexp=pcre .endif diff --git a/www/squidguard/Makefile b/www/squidguard/Makefile index 93886007f093..ecae3a5f2273 100644 --- a/www/squidguard/Makefile +++ b/www/squidguard/Makefile @@ -2,7 +2,7 @@ PORTNAME= squidGuard PORTVERSION= 1.4 -PORTREVISION= 11 +PORTREVISION= 12 CATEGORIES= www MASTER_SITES= http://www.squidguard.org/Downloads/:a \ http://www.squidguard.org/Downloads/Contrib/:b diff --git a/www/webalizer/Makefile b/www/webalizer/Makefile index 6b8d1c8ad04b..c3681afa0d75 100644 --- a/www/webalizer/Makefile +++ b/www/webalizer/Makefile @@ -2,7 +2,7 @@ PORTNAME= webalizer PORTVERSION= 2.23.8 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES+= www MASTER_SITES= ftp://ftp.mrunix.net/pub/webalizer/:main \ MASTER_SITES= ftp://ftp.mrunix.net/pub/webalizer/geodb/:geodb \ |