From owner-freebsd-ports-bugs@FreeBSD.ORG Sun May 25 07:40:02 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org 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 578C6D8C for ; Sun, 25 May 2014 07:40:02 +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)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 381262743 for ; Sun, 25 May 2014 07:40:02 +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 s4P7e265003223 for ; Sun, 25 May 2014 07:40:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s4P7e1C2003219; Sun, 25 May 2014 07:40:01 GMT (envelope-from gnats) Date: Sun, 25 May 2014 07:40:01 GMT Message-Id: <201405250740.s4P7e1C2003219@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: dfilter@FreeBSD.ORG (dfilter service) Subject: Re: ports/185969: commit references a PR Reply-To: dfilter@FreeBSD.ORG (dfilter service) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 May 2014 07:40:02 -0000 The following reply was made to PR ports/185969; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/185969: commit references a PR Date: Sun, 25 May 2014 07:33:08 +0000 (UTC) Author: miwi Date: Sun May 25 07:33:03 2014 New Revision: 355134 URL: http://svnweb.freebsd.org/changeset/ports/355134 QAT: https://qat.redports.org/buildarchive/r355134/ Log: Drizzle Client & Protocol Library. This project is for the new development of the MySQL compatible C connector library called libdrizzle-redux. WWW: https://launchpad.net/libdrizzle PR: ports/185969 Submitted by: Jim Ohlstein Added: head/databases/libdrizzle-redux/ head/databases/libdrizzle-redux/Makefile (contents, props changed) head/databases/libdrizzle-redux/distinfo (contents, props changed) head/databases/libdrizzle-redux/pkg-descr (contents, props changed) head/databases/libdrizzle-redux/pkg-plist (contents, props changed) Modified: head/databases/Makefile Modified: head/databases/Makefile ============================================================================== --- head/databases/Makefile Sun May 25 07:32:07 2014 (r355133) +++ head/databases/Makefile Sun May 25 07:33:03 2014 (r355134) @@ -137,6 +137,7 @@ SUBDIR += libdbi SUBDIR += libdbi-drivers SUBDIR += libdrizzle + SUBDIR += libdrizzle-redux SUBDIR += libgda4 SUBDIR += libgda4-bdb SUBDIR += libgda4-jdbc Added: head/databases/libdrizzle-redux/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/libdrizzle-redux/Makefile Sun May 25 07:33:03 2014 (r355134) @@ -0,0 +1,39 @@ +# Created by: Jim Ohlstein +# $FreeBSD$ + +PORTNAME= libdrizzle +PORTVERSION= 5.1.4 +CATEGORIES= databases +MASTER_SITES= http://launchpadlibrarian.net/138246183/ +PKGNAMESUFFIX= -redux +DISTFILES= ${DISTNAME}${EXTRACT_SUFX} +EXTRACT_ONLY= libdrizzle-5.1.4.tar.gz + +MAINTAINER= jim@ohlste.in +COMMENT= Client and protocol library for the Drizzle database + +LICENSE= BSD2CLAUSE + +GNU_CONFIGURE= yes +USES= gmake +USE_LDCONFIG= yes + +CONFLICTS= libdrizzle-[0-9]* + +OPTIONS_DEFINE= DOCS + +.include + +.if ${PORT_OPTIONS:MDOCS} +MASTER_SITES+= http://launchpadlibrarian.net/138246206/ +DISTFILES+= libdrizzle.pdf +PLIST_SUB+= PORTDOCS="" +.endif + +post-install: +.if !empty(PORT_OPTIONS:MDOCS) + ${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${DISTDIR}/libdrizzle.pdf ${STAGEDIR}${DOCSDIR} +.endif + +.include Added: head/databases/libdrizzle-redux/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/libdrizzle-redux/distinfo Sun May 25 07:33:03 2014 (r355134) @@ -0,0 +1,4 @@ +SHA256 (libdrizzle-5.1.4.tar.gz) = 74b7c0900b36d5e684092f8526fc9a15ae7b2d8d71d033be00fc1b81684dc7f9 +SIZE (libdrizzle-5.1.4.tar.gz) = 454242 +SHA256 (libdrizzle.pdf) = b05c123805a975bf78ea28bb5db5911110730ca11a0cbcdd131e22bab5f7e2d6 +SIZE (libdrizzle.pdf) = 250886 Added: head/databases/libdrizzle-redux/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/libdrizzle-redux/pkg-descr Sun May 25 07:33:03 2014 (r355134) @@ -0,0 +1,5 @@ +Drizzle Client & Protocol Library. This project +is for the new development of the MySQL compatible +C connector library called libdrizzle-redux. + +WWW: https://launchpad.net/libdrizzle Added: head/databases/libdrizzle-redux/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/libdrizzle-redux/pkg-plist Sun May 25 07:33:03 2014 (r355134) @@ -0,0 +1,30 @@ +bin/libdrizzle-config +include/libdrizzle-5.1/binlog.h +include/libdrizzle-5.1/column.h +include/libdrizzle-5.1/column_client.h +include/libdrizzle-5.1/conn.h +include/libdrizzle-5.1/conn_client.h +include/libdrizzle-5.1/constants.h +include/libdrizzle-5.1/drizzle.h +include/libdrizzle-5.1/drizzle_client.h +include/libdrizzle-5.1/error.h +include/libdrizzle-5.1/field_client.h +include/libdrizzle-5.1/libdrizzle.h +include/libdrizzle-5.1/query.h +include/libdrizzle-5.1/result.h +include/libdrizzle-5.1/result_client.h +include/libdrizzle-5.1/return.h +include/libdrizzle-5.1/row_client.h +include/libdrizzle-5.1/ssl.h +include/libdrizzle-5.1/statement.h +include/libdrizzle-5.1/structs.h +include/libdrizzle-5.1/verbose.h +include/libdrizzle-5.1/version.h +include/libdrizzle-5.1/visibility.h +lib/libdrizzle.a +lib/libdrizzle.la +lib/libdrizzle.so +lib/libdrizzle.so.9 +%%PORTDOCS%%%%DOCSDIR%%/libdrizzle.pdf +%%PORTDOCS%%@dirrm %%DOCSDIR%% +@dirrmtry include/libdrizzle-5.1 _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"