From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 23 20:20:16 2004 Return-Path: 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 C085816A4CF for ; Mon, 23 Aug 2004 20:20:16 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A22BF43D41 for ; Mon, 23 Aug 2004 20:20:16 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i7NKKGGn036512 for ; Mon, 23 Aug 2004 20:20:16 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i7NKKGo3036502; Mon, 23 Aug 2004 20:20:16 GMT (envelope-from gnats) Resent-Date: Mon, 23 Aug 2004 20:20:16 GMT Resent-Message-Id: <200408232020.i7NKKGo3036502@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, Antonio Carlos Venancio Junior Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 89EB116A4CE for ; Mon, 23 Aug 2004 20:12:09 +0000 (GMT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6F1C043D1D for ; Mon, 23 Aug 2004 20:12:09 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.12.11/8.12.11) with ESMTP id i7NKC9Jt041880 for ; Mon, 23 Aug 2004 20:12:09 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.12.11/8.12.11/Submit) id i7NKC9to041879; Mon, 23 Aug 2004 20:12:09 GMT (envelope-from nobody) Message-Id: <200408232012.i7NKC9to041879@www.freebsd.org> Date: Mon, 23 Aug 2004 20:12:09 GMT From: Antonio Carlos Venancio Junior To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Subject: ports/70882: New port: databases/pear-DB_DataObject An SQL Builder, Object Interface to Database Tables X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 20:20:16 -0000 >Number: 70882 >Category: ports >Synopsis: New port: databases/pear-DB_DataObject An SQL Builder, Object Interface to Database Tables >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Aug 23 20:20:15 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Antonio Carlos Venancio Junior >Release: FreeBSD 5.3-ALPHA >Organization: >Environment: FreeBSD 5.3-ALPHA FreeBSD 5.3-ALPHA #2: Mon Aug 23 11:04:27 BRT 2004 root@:/usr/src/sys/i386/compile/ANTONIO i386 >Description: New port: databases/pear-DB_DataObject An SQL Builder, Object Interface to Database Tables PEAR::DB_DataObject performs 2 tasks: 1. Builds SQL statements based on the objects vars and the buiLder methods. 2. acts as a datastore for a table row. The core class is designed to be extended for each of your tables so that you put the data logic inside the data classes. Included is a Generator to make your configuration files and your base classes. >How-To-Repeat: >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: # # pear-DB_DataObject # pear-DB_DataObject/Makefile # pear-DB_DataObject/pkg-descr # pear-DB_DataObject/distinfo # echo c - pear-DB_DataObject mkdir -p pear-DB_DataObject > /dev/null 2>&1 echo x - pear-DB_DataObject/Makefile sed 's/^X//' >pear-DB_DataObject/Makefile << 'END-of-pear-DB_DataObject/Makefile' X# New ports collection makefile for: pear-DB_DataObject X# Date created: 23 August 2004 X# Whom: Antonio Carlos Venancio Junior () X# X# $FreeBSD$ X# X XPORTNAME= DB_DataObject XPORTVERSION= 1.7.1 XCATEGORIES= databases www pear X XMAINTAINER= antonio@php.net XCOMMENT= An SQL Builder, Object Interface to Database Tables X XBUILD_DEPENDS= ${PEARDIR}/DB.php:${PORTSDIR}/databases/pear-DB \ X ${PEARDIR}/Date.php:${PORTSDIR}/devel/pear-Date XRUN_DEPENDS= ${BUILD_DEPENDS} X XCATEGORY= DB XFILES= DataObject.php DataObject/Cast.php DataObject/Error.php \ X DataObject/Generator.php DataObject/createTables.php X XDOCS= example.ini X X.include X.include "${PORTSDIR}/devel/pear-PEAR/Makefile.common" X.include END-of-pear-DB_DataObject/Makefile echo x - pear-DB_DataObject/pkg-descr sed 's/^X//' >pear-DB_DataObject/pkg-descr << 'END-of-pear-DB_DataObject/pkg-descr' XPEAR::DB_DataObject performs 2 tasks: X1. Builds SQL statements based on the objects vars and the buiLder methods. X2. acts as a datastore for a table row. X XThe core class is designed to be extended for each of your tables so that you X put the data logic inside the data classes. XIncluded is a Generator to make your configuration files and your base classes. X XWWW: http://pear.php.net/package/DB_DataObject END-of-pear-DB_DataObject/pkg-descr echo x - pear-DB_DataObject/distinfo sed 's/^X//' >pear-DB_DataObject/distinfo << 'END-of-pear-DB_DataObject/distinfo' XMD5 (PEAR/DB_DataObject-1.7.1.tgz) = 555cc6425c85952221e0237963d3296f XSIZE (PEAR/DB_DataObject-1.7.1.tgz) = 44629 END-of-pear-DB_DataObject/distinfo exit >Release-Note: >Audit-Trail: >Unformatted: