aboutsummaryrefslogtreecommitdiffstats
path: root/sysutils
diff options
context:
space:
mode:
authorkuriyama <kuriyama@FreeBSD.org>2004-03-05 21:29:09 +0800
committerkuriyama <kuriyama@FreeBSD.org>2004-03-05 21:29:09 +0800
commite8355cc613d21e94868cd11e7f6b828ad55f47cf (patch)
tree90419fccda017e6e9cf44b0747b9c30e30d93263 /sysutils
parent61c4aacabfd38c782171f78c9183698c32058cec (diff)
downloadfreebsd-ports-gnome-e8355cc613d21e94868cd11e7f6b828ad55f47cf.tar.gz
freebsd-ports-gnome-e8355cc613d21e94868cd11e7f6b828ad55f47cf.tar.zst
freebsd-ports-gnome-e8355cc613d21e94868cd11e7f6b828ad55f47cf.zip
Upgrade to 0.11.
Approved by: maintainer
Diffstat (limited to 'sysutils')
-rw-r--r--sysutils/apachetop/Makefile3
-rw-r--r--sysutils/apachetop/distinfo3
-rw-r--r--sysutils/apachetop/files/patch-display.cc17
3 files changed, 3 insertions, 20 deletions
diff --git a/sysutils/apachetop/Makefile b/sysutils/apachetop/Makefile
index dea5ec017a82..f8eb6246462b 100644
--- a/sysutils/apachetop/Makefile
+++ b/sysutils/apachetop/Makefile
@@ -6,8 +6,7 @@
#
PORTNAME= apachetop
-PORTVERSION= 0.9
-PORTREVISION= 2
+PORTVERSION= 0.11
CATEGORIES= sysutils
MASTER_SITES= http://clueful.shagged.org/apachetop/files/
DISTNAME= ${PORTNAME}-${PORTVERSION}
diff --git a/sysutils/apachetop/distinfo b/sysutils/apachetop/distinfo
index 2e04d146564b..2a7feda0054e 100644
--- a/sysutils/apachetop/distinfo
+++ b/sysutils/apachetop/distinfo
@@ -1 +1,2 @@
-MD5 (apachetop-0.9.tar.gz) = 6a6d27d78915e1d7923ecdcc4573adfe
+MD5 (apachetop-0.11.tar.gz) = cd83ad174f792d971361093a04f82b07
+SIZE (apachetop-0.11.tar.gz) = 124473
diff --git a/sysutils/apachetop/files/patch-display.cc b/sysutils/apachetop/files/patch-display.cc
deleted file mode 100644
index 7d290b67173c..000000000000
--- a/sysutils/apachetop/files/patch-display.cc
+++ /dev/null
@@ -1,17 +0,0 @@
---- src/display.cc.orig Sun Feb 22 22:53:52 2004
-+++ src/display.cc Sun Feb 22 22:54:16 2004
-@@ -238,8 +238,12 @@
- * I'm fairly sure, realistically, it'll never get high enough to be
- * a problem, so uInt should be ok */
- if (items) free(items); /* get rid of the last one */
-- items = (struct itemlist *)
-- calloc((unsigned int)items_size, sizeof(itemlist));
-+ if (items_size == 0) {
-+ items = NULL;
-+ } else {
-+ items = (struct itemlist *)
-+ calloc((unsigned int)items_size, sizeof(itemlist));
-+ }
-
- /* another thread may change the contents of cf while we're running,
- * and it would be undesirable to have most of this change on us, so