From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Mar 19 18:40:08 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 19A476F0 for ; Wed, 19 Mar 2014 18:40:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id EE368C80 for ; Wed, 19 Mar 2014 18:40:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s2JIe71c002620 for ; Wed, 19 Mar 2014 18:40:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s2JIe7QR002619; Wed, 19 Mar 2014 18:40:07 GMT (envelope-from gnats) Resent-Date: Wed, 19 Mar 2014 18:40:07 GMT Resent-Message-Id: <201403191840.s2JIe7QR002619@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 325D94AA for ; Wed, 19 Mar 2014 18:30:24 +0000 (UTC) Received: from omta02.auone-net.jp (mail-or1-f17.auone-net.jp [106.187.231.17]) by mx1.freebsd.org (Postfix) with ESMTP id 057ACBE8 for ; Wed, 19 Mar 2014 18:30:22 +0000 (UTC) Received: from coppermine.my.domain (ZT028161.ppp.dion.ne.jp [59.128.28.161]) by omta02.auone-net.jp (au one net mail) with ESMTP id 1DC441560009 for ; Thu, 20 Mar 2014 03:30:13 +0900 (JST) Message-Id: <20140320032534.e4f05e3b068824024de3a941@yahoo.com> Date: Thu, 20 Mar 2014 03:25:34 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/187760: databases/libzdb: Update to version 3.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Mar 2014 18:40:08 -0000 >Number: 187760 >Category: ports >Synopsis: databases/libzdb: Update to version 3.0 >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: Wed Mar 19 18:40:07 UTC 2014 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 8.4-RELEASE-p7 i386 >Organization: >Environment: >Description: - Update to version 3.0 >How-To-Repeat: >Fix: diff -urN /usr/ports/databases/libzdb/Makefile databases/libzdb/Makefile --- /usr/ports/databases/libzdb/Makefile 2014-03-14 18:10:09.000000000 +0900 +++ databases/libzdb/Makefile 2014-03-20 00:00:00.000000000 +0900 @@ -2,39 +2,36 @@ # $FreeBSD: head/databases/libzdb/Makefile 348140 2014-03-13 23:09:52Z cs $ PORTNAME= libzdb -PORTVERSION= 2.11.3 +PORTVERSION= 3.0 CATEGORIES= databases -MASTER_SITES= http://www.tildeslash.com/libzdb/dist/ \ - http://www.c-s.li/ports/ +MASTER_SITES= http://www.tildeslash.com/libzdb/dist/ MAINTAINER= ports@FreeBSD.org COMMENT= Thread-safe connection pool library LICENSE= GPLv3 -OPTIONS_DEFINE= MYSQL \ - SQLITE \ - PGSQL - -OPTIONS_DEFAULT=MYSQL SQLITE PGSQL - -NO_STAGE= yes - -USES= gmake pathfix +USES= gmake pathfix USE_AUTOTOOLS= libtool USE_LDCONFIG= yes -CPPFLAGS+= -I${LOCALBASE}/include ${PTHREAD_CFLAGS} -LDFLAGS+= -L${LOCALBASE}/lib ${PTHREAD_LIBS} +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib -pthread + +OPTIONS_DEFINE= MYSQL PGSQL SQLITE SSL +OPTIONS_DEFAULT= MYSQL PGSQL SQLITE SSL -MYSQL_USE= mysql=yes +MYSQL_USE= mysql=yes MYSQL_CONFIGURE_ON= --with-mysql=${LOCALBASE}/bin/mysql_config MYSQL_CONFIGURE_OFF= --without-mysql -SQLITE_USE= sqlite=3 -SQLITE_CONFIGURE_ON= --with-sqlite=${LOCALBASE} -SQLITE_CONFIGURE_OFF= --without-sqlite -PGSQL_USE= pgsql=yes +PGSQL_USE= pgsql=yes PGSQL_CONFIGURE_ON= --with-postgresql=${LOCALBASE}/bin/pg_config PGSQL_CONFIGURE_OFF= --without-postgresql +SQLITE_USE= sqlite=3 +SQLITE_CONFIGURE_ON= --with-sqlite=${LOCALBASE} +SQLITE_CONFIGURE_OFF= --without-sqlite +SSL_USE= openssl=yes +SSL_CONFIGURE_ON= --enable-openssl=${OPENSSLBASE} +SSL_CONFIGURE_OFF= --disable-openssl .include diff -urN /usr/ports/databases/libzdb/distinfo databases/libzdb/distinfo --- /usr/ports/databases/libzdb/distinfo 2014-01-23 02:50:43.000000000 +0900 +++ databases/libzdb/distinfo 2014-03-20 00:00:00.000000000 +0900 @@ -1,2 +1,2 @@ -SHA256 (libzdb-2.11.3.tar.gz) = 3ad2ffa8533b8b4524104a66345659235cec56211664906eba83134e3b305028 -SIZE (libzdb-2.11.3.tar.gz) = 604720 +SHA256 (libzdb-3.0.tar.gz) = e334bcb9ca1410e863634a164e3b1b5784018eb6e90b6c2b527780fc29a123c8 +SIZE (libzdb-3.0.tar.gz) = 700284 diff -urN /usr/ports/databases/libzdb/pkg-plist databases/libzdb/pkg-plist --- /usr/ports/databases/libzdb/pkg-plist 2014-01-23 02:50:43.000000000 +0900 +++ databases/libzdb/pkg-plist 2014-03-20 00:00:00.000000000 +0900 @@ -9,6 +9,6 @@ lib/libzdb.a lib/libzdb.la lib/libzdb.so -lib/libzdb.so.9 +lib/libzdb.so.11 libdata/pkgconfig/zdb.pc @dirrm include/zdb >Release-Note: >Audit-Trail: >Unformatted: