[repocopy] net/php4-rrdtool -> databases/php4-rrdtool

Follow the migration of net/rrdtool to databases/rrdtool

PR:		ports/114316
Submitted by:	Edwin Groothuis <edwin@freebsd.org>
Approved by:	mat@
This commit is contained in:
Edwin Groothuis
2007-08-11 11:31:48 +00:00
parent 0872ead07d
commit 130ff60990
9 changed files with 3 additions and 69 deletions

1
MOVED
View File

@@ -3147,3 +3147,4 @@ net/rrdtool10|databases/rrdtool10|2007-08-11|Moved to a more appropriate categor
net/jrobin|databases/jrobin|2007-08-11|Moved to a more appropriate category
net/p5-POE-Component-RRDTool|databases/p5-POE-Component-RRDTool|2007-08-11|Moved to a more appropriate category
net/p5-RRD-Simple|databases/p5-RRD-Simple|2007-08-11|Moved to a more appropriate category
net/php4-rrdtool|databases/php4-rrdtool|2007-08-11|Moved to a more appropriate category

View File

@@ -360,6 +360,7 @@
SUBDIR += php4-odbc
SUBDIR += php4-oracle
SUBDIR += php4-pgsql
SUBDIR += php4-rrdtool
SUBDIR += php4-sybase_ct
SUBDIR += php5-creole
SUBDIR += php5-dba

View File

@@ -7,7 +7,7 @@
PORTNAME= rrdtool
PORTVERSION= 1.05
CATEGORIES= net
CATEGORIES= databases
MASTER_SITES= ${MASTER_SITE_LOCAL} http://www.joeym.net/
MASTER_SITE_SUBDIR= mat
PKGNAMEPREFIX= php4-

View File

@@ -628,7 +628,6 @@
SUBDIR += pfinger
SUBDIR += phamm
SUBDIR += php4-ldap
SUBDIR += php4-rrdtool
SUBDIR += php4-sockets
SUBDIR += php4-xmlrpc
SUBDIR += php4-yp

View File

@@ -1,32 +0,0 @@
# New ports collection makefile for: php4-rrdtool
# Date created: 26 Aug 2004
# Whom: mat
#
# $FreeBSD$
#
PORTNAME= rrdtool
PORTVERSION= 1.05
CATEGORIES= net
MASTER_SITES= ${MASTER_SITE_LOCAL} http://www.joeym.net/
MASTER_SITE_SUBDIR= mat
PKGNAMEPREFIX= php4-
DISTNAME= ${UNIQUENAME}-${PORTVERSION}
MAINTAINER= mat@FreeBSD.org
COMMENT= A php/rrdtool glue
LIB_DEPENDS= rrd:${PORTSDIR}/databases/rrdtool
GNU_CONFIGURE= yes
WRKSRC= ${WRKDIR}/${UNIQUENAME}-${PORTVERSION}
USE_PHP= yes
USE_PHPEXT= yes
post-install:
@${MKDIR} ${EXAMPLESDIR}
@${INSTALL_DATA} ${WRKSRC}/examples/* ${EXAMPLESDIR}
@${ECHO_MSG} "===> Examples installed in ${EXAMPLESDIR}."
.include <bsd.port.mk>

View File

@@ -1,3 +0,0 @@
MD5 (php4-rrdtool-1.05.tar.gz) = 17816fc591c38135e81856e143aaab6f
SHA256 (php4-rrdtool-1.05.tar.gz) = 7250887228f12178e4121de54985355ae7173d3b957825af389ba483c5a5a523
SIZE (php4-rrdtool-1.05.tar.gz) = 293555

View File

@@ -1,20 +0,0 @@
--- rrdtool.c.orig Thu Jun 12 03:27:51 2003
+++ rrdtool.c Tue May 10 12:39:24 2005
@@ -331,6 +331,7 @@
HashTable *args_arr;
int i, xsize, ysize, argc;
char **argv, **calcpr;
+ double ymin, ymax;
if ( rrd_test_error() )
@@ -377,7 +378,8 @@
}
optind = 0; opterr = 0;
- if ( rrd_graph(argc-1, &argv[1], &calcpr, &xsize, &ysize) != -1 )
+ if ( rrd_graph(argc-1, &argv[1], &calcpr, &xsize, &ysize,
+ NULL, &ymin, &ymax) != -1 )
{
array_init(return_value);
add_assoc_long(return_value, "xsize", xsize);

View File

@@ -1,5 +0,0 @@
Contained herein are bindings to allow you to interface php scripts with RRD
tool directly via RRD tool's 'librrd' library, thus avoiding the need to use
system() calls to the rrdtool binary.
WWW: http://www.joeym.net/

View File

@@ -1,7 +0,0 @@
%%PORTDOCS%%%%EXAMPLESDIR%%/etc3p16.rrd
%%PORTDOCS%%%%EXAMPLESDIR%%/rrd_create.php
%%PORTDOCS%%%%EXAMPLESDIR%%/rrd_graph.php
%%PORTDOCS%%%%EXAMPLESDIR%%/rrd_last.php
%%PORTDOCS%%%%EXAMPLESDIR%%/rrd_update.php
%%PORTDOCS%%%%EXAMPLESDIR%%/test_fetch.php
%%PORTDOCS%%@dirrm %%EXAMPLESDIR%%