diff options
author | kevlo <kevlo@FreeBSD.org> | 2003-04-07 13:04:23 +0800 |
---|---|---|
committer | kevlo <kevlo@FreeBSD.org> | 2003-04-07 13:04:23 +0800 |
commit | 55e09514cd98f2cee2a8a3415be8a3438b230ccd (patch) | |
tree | 148987ab3babb2174d3ad45a42edded2dae1f51e /sysutils | |
parent | ecdba40bf29377c38db47327200db6aafc60a308 (diff) | |
download | freebsd-ports-gnome-55e09514cd98f2cee2a8a3415be8a3438b230ccd.tar.gz freebsd-ports-gnome-55e09514cd98f2cee2a8a3415be8a3438b230ccd.tar.zst freebsd-ports-gnome-55e09514cd98f2cee2a8a3415be8a3438b230ccd.zip |
Update to 0.4.2
PR: 50652
Submitted by: MAINTAINER
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/logmon/Makefile | 2 | ||||
-rw-r--r-- | sysutils/logmon/distinfo | 2 | ||||
-rw-r--r-- | sysutils/logmon/files/patch-aa | 79 |
3 files changed, 2 insertions, 81 deletions
diff --git a/sysutils/logmon/Makefile b/sysutils/logmon/Makefile index 4966f05d2e34..20b493bd2c3e 100644 --- a/sysutils/logmon/Makefile +++ b/sysutils/logmon/Makefile @@ -6,7 +6,7 @@ # PORTNAME= logmon -PORTVERSION= 0.4.1 +PORTVERSION= 0.4.2 CATEGORIES= sysutils MASTER_SITES= http://www.edespot.com/code/LogMon/ DISTNAME= LogMon-${PORTVERSION} diff --git a/sysutils/logmon/distinfo b/sysutils/logmon/distinfo index 05e1fd3f4a6e..3739869335cd 100644 --- a/sysutils/logmon/distinfo +++ b/sysutils/logmon/distinfo @@ -1 +1 @@ -MD5 (LogMon-0.4.1.src.tgz) = b6311d7852bfe36db2cb3a9d228b30bf +MD5 (LogMon-0.4.2.src.tgz) = 09b0533acae5fb75c2a4d0d876a37f42 diff --git a/sysutils/logmon/files/patch-aa b/sysutils/logmon/files/patch-aa deleted file mode 100644 index f61584f4938c..000000000000 --- a/sysutils/logmon/files/patch-aa +++ /dev/null @@ -1,79 +0,0 @@ -diff -ruN ./Frame.cc ../LogMon-0.4.1.fix/Frame.cc ---- ./Frame.cc Thu Jan 10 22:16:39 2002 -+++ ../LogMon-0.4.1.fix/Frame.cc Sat Sep 7 13:23:30 2002 -@@ -73,7 +73,7 @@ - } - - // Take a parameter to determine how far back to read. --long Frame::findPos(long maxLines=0) -+long Frame::findPos(long maxLines) - { - long i=-1; - long cr_count=0; -@@ -214,7 +214,7 @@ - scrollBackOffset = s; - return s; - } --long Frame::incrScrollBack(long s = 1) -+long Frame::incrScrollBack(long s) - { - // Only scroll up if it's not beyond our starting point. - if ( scrollBackOffset + s < (signed)(Screen.size() - (lines-1)) ) -@@ -222,7 +222,7 @@ - return scrollBackOffset; - } - --long Frame::decrScrollBack( long s = 1) -+long Frame::decrScrollBack( long s ) - { - // Don't scroll past our starting point. - // scrollBackOffset min is 0. -@@ -245,13 +245,13 @@ - scrollRightOffset = s; - return s; - } --long Frame::incrScrollRight(long s = 1) -+long Frame::incrScrollRight(long s ) - { - scrollRightOffset +=s; - return scrollRightOffset; - } - --long Frame::decrScrollRight(long s = 1) -+long Frame::decrScrollRight(long s ) - { - // Don't scroll past our starting point. - if ( scrollRightOffset > 0 ) -diff -ruN ./LineManip.cc ../LogMon-0.4.1.fix/LineManip.cc ---- ./LineManip.cc Fri Jan 25 20:43:07 2002 -+++ ../LogMon-0.4.1.fix/LineManip.cc Sat Sep 7 13:24:08 2002 -@@ -175,7 +175,7 @@ - // Scan our config file for lines pertaining to our filename. - // i.e. If there are 'ignore' lines for our filename, we add them - // to an array. --void LineManip::init(char* fileName, string config="") -+void LineManip::init(char* fileName, string config) - { - FILE *cf; - string confFile; -diff -ruN ./Util.cc ../LogMon-0.4.1.fix/Util.cc ---- ./Util.cc Sun Jul 22 03:37:16 2001 -+++ ../LogMon-0.4.1.fix/Util.cc Sat Sep 7 13:23:52 2002 -@@ -8,7 +8,7 @@ - extern FILE*ferr; - #endif - --void clean_exit(int x=0, char *e="" ) -+void clean_exit(int x, char *e ) - { - printf("%s\n",e); - #ifdef __DEBUG__ -@@ -19,7 +19,7 @@ - exit(x); - } - --void sig_int(int x=0) -+void sig_int(int x) - { - printf("Recieved signal SIGINT, exiting (%d)",x); - clean_exit(x); |