diff options
author | Steve Wills <swills@FreeBSD.org> | 2013-05-27 02:13:58 +0000 |
---|---|---|
committer | Steve Wills <swills@FreeBSD.org> | 2013-05-27 02:13:58 +0000 |
commit | 0c129f412faeeeb5499565afa223cbf2739166fb (patch) | |
tree | 47fe63d4471ada3d319201d6dc71f6c24cc00471 /net-mgmt/xymon-server/files | |
parent | e2ccc05f274e757bdc783b3ce82bb8083fc114a8 (diff) | |
download | ports-0c129f412faeeeb5499565afa223cbf2739166fb.tar.gz ports-0c129f412faeeeb5499565afa223cbf2739166fb.zip |
Notes
Diffstat (limited to 'net-mgmt/xymon-server/files')
3 files changed, 0 insertions, 48 deletions
diff --git a/net-mgmt/xymon-server/files/patch-build-Makefile.rules b/net-mgmt/xymon-server/files/patch-build-Makefile.rules deleted file mode 100644 index e8114694713b..000000000000 --- a/net-mgmt/xymon-server/files/patch-build-Makefile.rules +++ /dev/null @@ -1,15 +0,0 @@ ---- build/Makefile.rules.orig 2011-02-14 12:00:30.000000000 +0100 -+++ build/Makefile.rules 2011-03-31 07:16:54.000000000 +0200 -@@ -22,9 +22,9 @@ - INSTALLTARGETS = install-client install-clientmsg - endif - else -- BUILDTARGETS = lib-build common-build xymongen-build xymonnet-build xymonproxy-build docs-build build-build xymond-build web-build client -- CLIENTTARGETS = lib-client common-client build-build -- INSTALLTARGETS = install-xymongen install-xymonnet install-xymonproxy install-man install-xymond install-web install-docs install-client install-servermsg -+ BUILDTARGETS = lib-build common-build xymongen-build xymonnet-build xymonproxy-build docs-build build-build xymond-build web-build -+ CLIENTTARGETS = -+ INSTALLTARGETS = install-xymongen install-xymonnet install-xymonproxy install-man install-xymond install-web install-docs install-servermsg - CFLAGS += $(PCREINCDIR) - endif - diff --git a/net-mgmt/xymon-server/files/patch-xymond-client-freebsd.c b/net-mgmt/xymon-server/files/patch-xymond-client-freebsd.c deleted file mode 100644 index 5af6cfb2f787..000000000000 --- a/net-mgmt/xymon-server/files/patch-xymond-client-freebsd.c +++ /dev/null @@ -1,20 +0,0 @@ ---- xymond/client/freebsd.c.orig 2012-11-13 07:48:19.217106974 -0600 -+++ xymond/client/freebsd.c 2012-11-13 07:49:45.416552261 -0600 -@@ -85,8 +85,16 @@ - if (vmtotalstr) { - p = strstr(vmtotalstr, "\nFree Memory Pages:"); - if (p) { -- memphysfree = atol(p + 18); -+ memphysfree = atol(p + 19)/1024; -+ memphysused = memphystotal - memphysfree; - found++; -+ } else { -+ p = strstr(vmtotalstr, "\nFree Memory:"); -+ if (p) { -+ memphysfree = atol(p + 13)/1024; -+ memphysused = memphystotal - memphysfree; -+ found++; -+ } - } - } - diff --git a/net-mgmt/xymon-server/files/patch-xymonnet-Makefile b/net-mgmt/xymon-server/files/patch-xymonnet-Makefile deleted file mode 100644 index 027b491b770e..000000000000 --- a/net-mgmt/xymon-server/files/patch-xymonnet-Makefile +++ /dev/null @@ -1,13 +0,0 @@ ---- xymonnet/Makefile.orig 2010-11-14 18:21:19.000000000 +0100 -+++ xymonnet/Makefile 2011-03-31 07:14:12.000000000 +0200 -@@ -100,8 +100,8 @@ - cp -fp $(EXTENSIONS) $(INSTALLROOT)$(INSTALLEXTDIR)/ - - install-config: -- ../build/convert-bbservices $(INSTALLROOT)$(INSTALLETCDIR)/protocols.cfg -- ../build/merge-sects protocols.cfg $(INSTALLROOT)$(INSTALLETCDIR)/protocols.cfg -+ ../build/convert-bbservices $(INSTALLROOT)$(INSTALLETCDIR)/protocols.cfg.DIST -+ ../build/merge-sects protocols.cfg $(INSTALLROOT)$(INSTALLETCDIR)/protocols.cfg.DIST - - install-man: - mkdir -p $(INSTALLROOT)$(MANROOT)/man1 $(INSTALLROOT)$(MANROOT)/man5 |