From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Oct 20 03:30:15 2005 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E893916A43A for ; Thu, 20 Oct 2005 03:30:14 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 00B3543D62 for ; Thu, 20 Oct 2005 03:30:13 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j9K3UD8i027660 for ; Thu, 20 Oct 2005 03:30:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j9K3UDkB027657; Thu, 20 Oct 2005 03:30:13 GMT (envelope-from gnats) Resent-Date: Thu, 20 Oct 2005 03:30:13 GMT Resent-Message-Id: <200510200330.j9K3UDkB027657@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, "Choe, Cheng-Dae" Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C180A16A41F for ; Thu, 20 Oct 2005 03:21:42 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7250243D62 for ; Thu, 20 Oct 2005 03:21:42 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id j9K3LgdV074097 for ; Thu, 20 Oct 2005 03:21:42 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id j9K3LgH3074079; Thu, 20 Oct 2005 03:21:42 GMT (envelope-from nobody) Message-Id: <200510200321.j9K3LgH3074079@www.freebsd.org> Date: Thu, 20 Oct 2005 03:21:42 GMT From: "Choe, Cheng-Dae" To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Cc: Subject: ports/87701: new port: databases/pgpool X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Oct 2005 03:30:15 -0000 >Number: 87701 >Category: ports >Synopsis: new port: databases/pgpool >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Oct 20 03:30:13 GMT 2005 >Closed-Date: >Last-Modified: >Originator: "Choe, Cheng-Dae" >Release: FreeBSD 6.0-RC1 i386 >Organization: >Environment: System: FreeBSD w.comdongin.com 6.0-RC1 FreeBSD 6.0-RC1 #0: Wed Oct 12 16:30:03 KST 2005 root@w.comdongin.com:/usr/obj/data/src/sys/CDI i386 >Description: >From homepage: pgpool is a connection pool server for PostgreSQL. pgpool runs between PostgreSQL's clients(front ends) and servers(back ends). A PostgreSQL client can connect to pgpool as if it were a standard PostgreSQL server. pgpool caches the connection to PostgreSQL server to reduce the overhead to establish the connection to it. >How-To-Repeat: N/A >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # pgpool # pgpool/pkg-descr # pgpool/Makefile # pgpool/pkg-plist # pgpool/distinfo # echo c - pgpool mkdir -p pgpool > /dev/null 2>&1 echo x - pgpool/pkg-descr sed 's/^X//' >pgpool/pkg-descr << 'END-of-pgpool/pkg-descr' Xpgpool is a connection pool server for PostgreSQL. pgpool runs between XPostgreSQL's clients(front ends) and servers(back ends). A PostgreSQL client can Xconnect to pgpool as if it were a standard PostgreSQL server. X Xpgpool caches the connection to PostgreSQL server to reduce the overhead to Xestablish the connection to it. X XWWW: http://pgpool.projects.postgresql.org/ END-of-pgpool/pkg-descr echo x - pgpool/Makefile sed 's/^X//' >pgpool/Makefile << 'END-of-pgpool/Makefile' X# New ports collection makefile for: pgpool X# Date created: 2005-10-19 X# Whom: Choe, Cheng-Dae X# X# $FreeBSD$ X# X XPORTNAME= pgpool XPORTVERSION= 2.6.3 XCATEGORIES= databases XMASTER_SITES= http://pgfoundry.org/frs/download.php/426/ X XMAINTAINER= whitekid@gmail.com XCOMMENT= A connection pool server for PostgreSQL X XUSE_GMAKE= yes XGNU_CONFIGURE= yes X XPORTDOCS= README AUTHORS COPYING ChangeLog INSTALL NEWS TODO README.euc_jp X Xpost-install: X.if !defined(NOPORTDOCS) X ${MKDIR} ${DOCSDIR} X.for f in ${PORTDOCS} X ${INSTALL_MAN} ${WRKSRC}/$f ${DOCSDIR} X.endfor X.endif X X.include END-of-pgpool/Makefile echo x - pgpool/pkg-plist sed 's/^X//' >pgpool/pkg-plist << 'END-of-pgpool/pkg-plist' X@comment $FreeBSD$ Xbin/pgpool Xetc/pgpool.conf.sample END-of-pgpool/pkg-plist echo x - pgpool/distinfo sed 's/^X//' >pgpool/distinfo << 'END-of-pgpool/distinfo' XMD5 (pgpool-2.6.3.tar.gz) = fb301c1f42f67357dd72c9a20042c2ba XSIZE (pgpool-2.6.3.tar.gz) = 150829 END-of-pgpool/distinfo exit >Release-Note: >Audit-Trail: >Unformatted: