From owner-freebsd-ports Sun Oct 21 22:40:11 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 95A9437B405 for ; Sun, 21 Oct 2001 22:40:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9M5e1A76523; Sun, 21 Oct 2001 22:40:01 -0700 (PDT) (envelope-from gnats) Received: from gw.kansai-ri.co.jp (gw.kansai-ri.co.jp [210.134.96.34]) by hub.freebsd.org (Postfix) with ESMTP id 1372E37B401 for ; Sun, 21 Oct 2001 22:37:43 -0700 (PDT) Received: (from uucp@localhost) by gw.kansai-ri.co.jp (8.9.3/3.7W-00020114) id OAA26948 for ; Mon, 22 Oct 2001 14:37:42 +0900 (JST) Received: from adm1004.kansai-ri.co.jp(192.168.103.191) by gw.kansai-ri.co.jp via smap (V5.0) id xma026907; Mon, 22 Oct 01 14:37:12 +0900 Received: (from root@localhost) by adm1004.kansai-ri.co.jp (8.11.3/8.11.3) id f9M5ahk47288; Mon, 22 Oct 2001 14:36:43 +0900 (JST) (envelope-from yukinopo) Message-Id: <200110220536.f9M5ahk47288@adm1004.kansai-ri.co.jp> Date: Mon, 22 Oct 2001 14:36:43 +0900 (JST) From: yukinopo@livedoor.com Reply-To: yukinopo@livedoor.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/31426: New ports Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 31426 >Category: ports >Synopsis: New Ports:graphics/phplot A PHP class for creating scientific and business charts. >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Oct 21 22:40:00 PDT 2001 >Closed-Date: >Last-Modified: >Originator: yukinopo@livedoor.com >Release: FreeBSD 4.3-BETA i386 >Organization: >Environment: System: FreeBSD 4.3-BETA FreeBSD 4.3-BETA #0: Wed Mar 7 09:24:57 GMT 2001 jkh@narf:/usr/src/sys/compile/GENERIC i386 >Description: # 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: # # phplot # phplot/Makefile # phplot/pkg-comment # phplot/pkg-descr # phplot/pkg-plist # phplot/distinfo # echo c - phplot mkdir -p phplot > /dev/null 2>&1 echo x - phplot/Makefile sed 's/^X//' >phplot/Makefile << 'END-of-phplot/Makefile' X# New ports collection makefile for: phplot X# Date created: 21 Oct 2001 X# Whom: yukinopo@livedoor.com X# X# $FreeBSD$ X XPORTNAME= phplot XPORTVERSION= 4.4.6 XCATEGORIES= graphics www XMASTER_SITES= ${MASTER_SITE_SOURCEFORGE} XMASTER_SITE_SUBDIR= phplot XDISTNAME= ${PORTNAME}-${PORTVERSION} X XMAINTAINER= yukinopo@livedoor.com X XRUN_DEPENDS= ${LOCALBASE}/libexec/apache/libphp4.so:${PORTSDIR}/www/mod_php4 XLIB_DEPENDS= gd.2:${PORTSDIR}/graphics/gd X XNO_BUILD= YES X XWRKSRC= ${WRKDIR}/${DISTNAME} XPHPLOT_DIR= lib/php/phplot X XPHPLOT_EXAMPLE= share/phplot X XLIBS= phplot.php phplot_data.php rgb.inc.php benjamingothic.ttf X XDOCS= internal_functions.html function_reference.html \ X index.html examples.html quick_start.php \ X user_functions.html user_internal_functions.html X XEXAMPLES= 0cars.jpg benjamingothic.ttf create_chart.php \ X data.php data_date.php data_date2.php data_sample1.php data_sample2.php \ X data_sample3.php data_sample4.php example1.php example10.php \ X example11.php example12.php example13.php example2.php \ X example3.php example4.php example5.php example6.php \ X example7.php example8.php example9.php format_chart.php \ X inline_image.php rgb.inc.php test1.php test_setup.php X Xdo-install: X @${MKDIR} ${PREFIX}/${PHPLOT_DIR} 2>/dev/null||true X.for FILE in ${SAMPLES} X @${INSTALL_DATA} ${WRKSRC}/${FILE} \ X @${PREFIX}/${PHPLOT_DIR}/${FILE} X.endfor X X.for FILE in ${LIBS} X @${INSTALL_DATA} ${WRKSRC}/${FILE} ${PREFIX}/${PHPLOT_DIR} X.endfor X @${MKDIR} ${PREFIX}/${PHPLOT_EXAMPLE} X @${MKDIR} ${PREFIX}/${PHPLOT_EXAMPLE}/doc X @${MKDIR} ${PREFIX}/${PHPLOT_EXAMPLE}/examples X.for FILE in ${DOCS} X @${INSTALL_DATA} ${WRKSRC}/doc/${FILE} ${PREFIX}/${PHPLOT_EXAMPLE}/doc X.endfor X X.for FILE in ${EXAMPLES} X @${INSTALL_DATA} ${WRKSRC}/examples/${FILE} ${PREFIX}/${PHPLOT_EXAMPLE}/examples X.endfor X X.include END-of-phplot/Makefile echo x - phplot/pkg-comment sed 's/^X//' >phplot/pkg-comment << 'END-of-phplot/pkg-comment' XA PHP class for creating scientific and business charts END-of-phplot/pkg-comment echo x - phplot/pkg-descr sed 's/^X//' >phplot/pkg-descr << 'END-of-phplot/pkg-descr' XA graph library for dynamic scientific, business, and stock-market charts. XWritten in PHP and supports, PHP3, PHP4, TTF (or no ttf), and GD versions 1.2 - Xlatest version. Includes Pie, Bar, Line, Area, Point and combination plots. X XWWW: http://www.phplot.com X X- K.Shiomi Xyukinopo@livedoor.com END-of-phplot/pkg-descr echo x - phplot/pkg-plist sed 's/^X//' >phplot/pkg-plist << 'END-of-phplot/pkg-plist' Xlib/php/phplot/phplot.php Xlib/php/phplot/phplot_data.php Xlib/php/phplot/rgb.inc.php Xlib/php/phplot/benjamingothic.ttf X@dirrm lib/php/phplot X@unexec rmdir lib/php 2>/dev/null || true Xshare/phplot/examples/test_setup.php Xshare/phplot/examples/benjamingothic.ttf Xshare/phplot/examples/create_chart.php Xshare/phplot/examples/data.php Xshare/phplot/examples/data_date.php Xshare/phplot/examples/data_date2.php Xshare/phplot/examples/data_sample1.php Xshare/phplot/examples/data_sample2.php Xshare/phplot/examples/data_sample3.php Xshare/phplot/examples/data_sample4.php Xshare/phplot/examples/example1.php Xshare/phplot/examples/example10.php Xshare/phplot/examples/example11.php Xshare/phplot/examples/example12.php Xshare/phplot/examples/example13.php Xshare/phplot/examples/example2.php Xshare/phplot/examples/example3.php Xshare/phplot/examples/example4.php Xshare/phplot/examples/example5.php Xshare/phplot/examples/example6.php Xshare/phplot/examples/example7.php Xshare/phplot/examples/example8.php Xshare/phplot/examples/example9.php Xshare/phplot/examples/format_chart.php Xshare/phplot/examples/inline_image.php Xshare/phplot/examples/rgb.inc.php Xshare/phplot/examples/test1.php Xshare/phplot/examples/0cars.jpg Xshare/phplot/doc/internal_functions.html Xshare/phplot/doc/function_reference.html Xshare/phplot/doc/index.html Xshare/phplot/doc/examples.html Xshare/phplot/doc/quick_start.php Xshare/phplot/doc/user_functions.html Xshare/phplot/doc/user_internal_functions.html X@dirrm share/phplot/examples X@dirrm share/phplot/doc X@dirrm share/phplot END-of-phplot/pkg-plist echo x - phplot/distinfo sed 's/^X//' >phplot/distinfo << 'END-of-phplot/distinfo' XMD5 (phplot-4.4.6.tar.gz) = 8a5b34e09fa29f20e31814cbd8c0d0b5 END-of-phplot/distinfo exit >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message