diff options
author | Jason Helfman <jgh@FreeBSD.org> | 2012-04-04 05:12:03 +0000 |
---|---|---|
committer | Jason Helfman <jgh@FreeBSD.org> | 2012-04-04 05:12:03 +0000 |
commit | 42d8138e1e20e9a96dcedaef20d8cf33c3d509d5 (patch) | |
tree | 7ff5e2413b41c5ca5dcd1c940e9f10c2a28bca03 /ports-mgmt | |
parent | c0c47dcd0cc0e65591a8af1ef4da414120e0fa51 (diff) |
- Update to 0.91 (bug fix release, fix crashes on some systems)
PR: ports/166588
Submitted by: maintainer, magik@roorback.net
Feature safe: yes
Notes
Notes:
svn path=/head/; revision=294185
Diffstat (limited to 'ports-mgmt')
-rw-r--r-- | ports-mgmt/fbsdmon/Makefile | 5 | ||||
-rw-r--r-- | ports-mgmt/fbsdmon/distinfo | 4 | ||||
-rw-r--r-- | ports-mgmt/fbsdmon/files/600.fbsdmon.in | 2 | ||||
-rw-r--r-- | ports-mgmt/fbsdmon/files/fbsdmon.in | 7 | ||||
-rw-r--r-- | ports-mgmt/fbsdmon/files/patch-src__io.c | 11 |
5 files changed, 7 insertions, 22 deletions
diff --git a/ports-mgmt/fbsdmon/Makefile b/ports-mgmt/fbsdmon/Makefile index d0b62e7981f2..542767ba6bea 100644 --- a/ports-mgmt/fbsdmon/Makefile +++ b/ports-mgmt/fbsdmon/Makefile @@ -6,8 +6,7 @@ # PORTNAME= fbsdmon -PORTVERSION= 0.90 -PORTREVISION= 1 +PORTVERSION= 0.91 CATEGORIES= ports-mgmt sysutils MASTER_SITES= http://files.roorback.net/ @@ -15,7 +14,7 @@ MAINTAINER= magik@roorback.net COMMENT= Sumbit system and ports statistics to fbsdmon.org LIB_DEPENDS= curl.6:${PORTSDIR}/ftp/curl \ - jansson.7:${PORTSDIR}/devel/jansson \ + jansson.7:${PORTSDIR}/devel/jansson SUB_FILES= 600.fbsdmon pkg-message USE_RC_SUBR= fbsdmon diff --git a/ports-mgmt/fbsdmon/distinfo b/ports-mgmt/fbsdmon/distinfo index c0dfcf0c0030..c311ade87574 100644 --- a/ports-mgmt/fbsdmon/distinfo +++ b/ports-mgmt/fbsdmon/distinfo @@ -1,2 +1,2 @@ -SHA256 (fbsdmon-0.90.tar.gz) = 5143eb51b241bef6c30e26a5fac54308ca36db76b865da208f33edab92c13b78 -SIZE (fbsdmon-0.90.tar.gz) = 3692 +SHA256 (fbsdmon-0.91.tar.gz) = 3ae83e7e3a73ff363095edbbbcecad037e14c0ce3128b6e4e891ec579b63b419 +SIZE (fbsdmon-0.91.tar.gz) = 3607 diff --git a/ports-mgmt/fbsdmon/files/600.fbsdmon.in b/ports-mgmt/fbsdmon/files/600.fbsdmon.in index 5b970f7412f0..bf5e882f64a3 100644 --- a/ports-mgmt/fbsdmon/files/600.fbsdmon.in +++ b/ports-mgmt/fbsdmon/files/600.fbsdmon.in @@ -16,7 +16,7 @@ case "$weekly_fbsdmon_enable" in echo "" echo "Sending statistic to fbsdmon.org" - %%PREFIX%%/sbin/fbsdmon + %%PREFIX%%/sbin/fbsdmon -D -s rc=$?;; *) rc=0;; diff --git a/ports-mgmt/fbsdmon/files/fbsdmon.in b/ports-mgmt/fbsdmon/files/fbsdmon.in index 64dc73c63b74..8d0b7d65c9ca 100644 --- a/ports-mgmt/fbsdmon/files/fbsdmon.in +++ b/ports-mgmt/fbsdmon/files/fbsdmon.in @@ -21,10 +21,7 @@ rcvar=fbsdmon_enable load_rc_config "$name" : ${fbsdmon_enable="NO"} -pidfile="/var/run/$name.pid" -procname="%%PREFIX%%/sbin/$name" -command="/usr/sbin/daemon" -command_args="-c -f -p $pidfile $procname" -stop_postcmd="/bin/rm -f $pidfile" +command="%%PREFIX%%/sbin/$name" +command_args="-D" run_rc_command "$1" diff --git a/ports-mgmt/fbsdmon/files/patch-src__io.c b/ports-mgmt/fbsdmon/files/patch-src__io.c deleted file mode 100644 index a60332c25712..000000000000 --- a/ports-mgmt/fbsdmon/files/patch-src__io.c +++ /dev/null @@ -1,11 +0,0 @@ ---- ./src/io.c.orig 2012-01-30 12:34:26.000000000 -0800 -+++ ./src/io.c 2012-01-30 12:34:36.000000000 -0800 -@@ -47,7 +47,7 @@ - extern char* gz_data(char *data) - { - char *fn = strdup("/tmp/fbsdmon.XXXXXX"); -- mktemp(fn); -+ mkstemp(fn); - - gzFile *gz = gzopen(fn, "wb"); - gzputs(gz, data); |