mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 09:49:18 -04:00
PR: 48720
Submitted by: Clement Laforet <sheepkiller@cultdeadsheep.org> Update to 1.0.7
This commit is contained in:
parent
64f263db61
commit
ae3a071f3d
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=76826
10 changed files with 40 additions and 114 deletions
|
@ -7,9 +7,9 @@
|
||||||
#
|
#
|
||||||
|
|
||||||
PORTNAME= logtool
|
PORTNAME= logtool
|
||||||
PORTVERSION= 1.0.6
|
PORTVERSION= 1.0.7
|
||||||
CATEGORIES= sysutils
|
CATEGORIES= sysutils
|
||||||
MASTER_SITES= http://www.xjack.org/logtool/logtool/
|
MASTER_SITES= http://xjack.org/logtool/logtool/
|
||||||
|
|
||||||
MAINTAINER= ports@FreeBSD.org
|
MAINTAINER= ports@FreeBSD.org
|
||||||
COMMENT= Parse syslog logfile into a palatable format
|
COMMENT= Parse syslog logfile into a palatable format
|
||||||
|
@ -36,8 +36,8 @@ post-install:
|
||||||
@${CP} ${WRKSRC}/conf/yellow ${PREFIX}/etc/logtool/yellow.dist
|
@${CP} ${WRKSRC}/conf/yellow ${PREFIX}/etc/logtool/yellow.dist
|
||||||
.if !defined(NOPORTDOCS)
|
.if !defined(NOPORTDOCS)
|
||||||
@${ECHO_MSG} "===> Installing logtool docs in ${PREFIX}/share/doc/logtool"
|
@${ECHO_MSG} "===> Installing logtool docs in ${PREFIX}/share/doc/logtool"
|
||||||
@${MKDIR} ${PREFIX}/share/doc/logtool && ${CHMOD} a+rx ${PREFIX}/share/doc/logtool
|
@${MKDIR} ${DOCSDIR}
|
||||||
@${CP} -R ${WRKSRC}/doc/examples ${WRKSRC}/doc/logtool.txt ${PREFIX}/share/doc/logtool
|
@${CP} -Rvf ${WRKSRC}/scripts ${WRKSRC}/doc/logtool.txt ${DOCSDIR}
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
.include <bsd.port.mk>
|
.include <bsd.port.mk>
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
MD5 (logtool-1.0.6.tar.gz) = fc19cba56a9a9a1d7bf3c7210fb5282e
|
MD5 (logtool-1.0.7.tar.gz) = 89257ee8b4f735e72d1d3585b9331b6c
|
||||||
|
|
|
@ -1,14 +0,0 @@
|
||||||
--- configure.orig Tue Jun 12 14:46:04 2001
|
|
||||||
+++ configure Tue Jun 12 14:46:09 2001
|
|
||||||
@@ -744,11 +744,6 @@
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
-if test -n "$GCC"; then
|
|
||||||
- CFLAGS="-O3 -Wall"
|
|
||||||
-fi
|
|
||||||
-
|
|
||||||
-
|
|
||||||
|
|
||||||
if test "`echo "$sysconfdir" | grep "prefix"`" ; then
|
|
||||||
sysconfdir=`echo $sysconfdir/logtool | sed s/'${prefix}'/""/g`
|
|
|
@ -1,19 +0,0 @@
|
||||||
--- logtool/Makefile.in.orig Sun Feb 11 23:50:38 2001
|
|
||||||
+++ logtool/Makefile.in Sun Feb 11 23:54:02 2001
|
|
||||||
@@ -16,6 +16,7 @@
|
|
||||||
CC = @CC@
|
|
||||||
INSTALL = @installprog@
|
|
||||||
CFLAGS= @CFLAGS@ @DEFS@ @LIBS@
|
|
||||||
+LIBS= -L/usr/local/lib -lgnugetopt
|
|
||||||
|
|
||||||
### The stuff below is (I hope) no longer needed now that we us autoconf/configure and friends
|
|
||||||
# Solaris users should probably use the following instead (thanks Christoph Krempe <ck@ub.fu-berlin.de>)
|
|
||||||
@@ -30,7 +31,7 @@
|
|
||||||
|
|
||||||
### The main build stuff
|
|
||||||
logtool: logtool.o $(OBJS)
|
|
||||||
- $(CC) $(ADDCFLAGS) -o $(PROG) $(OBJS)
|
|
||||||
+ $(CC) $(ADDCFLAGS) -o $(PROG) $(OBJS) ${LIBS}
|
|
||||||
@echo "strip $(PROG)"
|
|
||||||
@strip $(PROG)
|
|
||||||
|
|
|
@ -1,25 +1,21 @@
|
||||||
bin/logtool
|
bin/logtool
|
||||||
bin/logtail
|
bin/logtail
|
||||||
@unexec if cmp -s %D/etc/logtool/exclude %D/etc/logtool/exclude.dist; then rm -f %D/etc/logtool/exclude; fi
|
etc/logtool/logtool.conf
|
||||||
etc/logtool/exclude.dist
|
etc/logtool/green
|
||||||
@exec [ -f %B/exclude ] || cp %B/%f %B/exclude
|
etc/logtool/yellow
|
||||||
@unexec if cmp -s %D/etc/logtool/green %D/etc/logtool/green.dist; then rm -f %D/etc/logtool/green; fi
|
etc/logtool/include
|
||||||
etc/logtool/green.dist
|
etc/logtool/exclude
|
||||||
@exec [ -f %B/green ] || cp %B/%f %B/green
|
|
||||||
@unexec if cmp -s %D/etc/logtool/include %D/etc/logtool/include.dist; then rm -f %D/etc/logtool/include; fi
|
|
||||||
etc/logtool/include.dist
|
|
||||||
@exec [ -f %B/include ] || cp %B/%f %B/include
|
|
||||||
@unexec if cmp -s %D/etc/logtool/logtool.conf %D/etc/logtool/logtool.conf.dist; then rm -f %D/etc/logtool/logtool.conf; fi
|
|
||||||
etc/logtool/logtool.conf.dist
|
etc/logtool/logtool.conf.dist
|
||||||
@exec [ -f %B/logtool.conf ] || cp %B/%f %B/logtool.conf
|
etc/logtool/exclude.dist
|
||||||
@unexec if cmp -s %D/etc/logtool/yellow %D/etc/logtool/yellow.dist; then rm -f %D/etc/logtool/yellow; fi
|
etc/logtool/green.dist
|
||||||
|
etc/logtool/include.dist
|
||||||
etc/logtool/yellow.dist
|
etc/logtool/yellow.dist
|
||||||
@exec [ -f %B/yellow ] || cp %B/%f %B/yellow
|
%%PORTDOCS%%share/doc/logtool/scripts/monitor.logs.sh
|
||||||
@unexec rmdir %D/etc/logtool 2>/dev/null || true
|
%%PORTDOCS%%share/doc/logtool/scripts/README
|
||||||
%%PORTDOCS%%share/doc/logtool/examples/README
|
%%PORTDOCS%%share/doc/logtool/scripts/cronjob.emailreport.sh
|
||||||
%%PORTDOCS%%share/doc/logtool/examples/cronjob.genwebpage.sh
|
%%PORTDOCS%%share/doc/logtool/scripts/cronjob.genwebpage.sh
|
||||||
%%PORTDOCS%%share/doc/logtool/examples/cronjob.emailreport.sh
|
%%PORTDOCS%%share/doc/logtool/scripts/logtool_logcheck.sh
|
||||||
%%PORTDOCS%%share/doc/logtool/examples/monitor.logs.sh
|
|
||||||
%%PORTDOCS%%share/doc/logtool/logtool.txt
|
%%PORTDOCS%%share/doc/logtool/logtool.txt
|
||||||
%%PORTDOCS%%@dirrm share/doc/logtool/examples
|
@dirrm etc/logtool
|
||||||
|
%%PORTDOCS%%@dirrm share/doc/logtool/scripts
|
||||||
%%PORTDOCS%%@dirrm share/doc/logtool
|
%%PORTDOCS%%@dirrm share/doc/logtool
|
||||||
|
|
|
@ -7,9 +7,9 @@
|
||||||
#
|
#
|
||||||
|
|
||||||
PORTNAME= logtool
|
PORTNAME= logtool
|
||||||
PORTVERSION= 1.0.6
|
PORTVERSION= 1.0.7
|
||||||
CATEGORIES= sysutils
|
CATEGORIES= sysutils
|
||||||
MASTER_SITES= http://www.xjack.org/logtool/logtool/
|
MASTER_SITES= http://xjack.org/logtool/logtool/
|
||||||
|
|
||||||
MAINTAINER= ports@FreeBSD.org
|
MAINTAINER= ports@FreeBSD.org
|
||||||
COMMENT= Parse syslog logfile into a palatable format
|
COMMENT= Parse syslog logfile into a palatable format
|
||||||
|
@ -36,8 +36,8 @@ post-install:
|
||||||
@${CP} ${WRKSRC}/conf/yellow ${PREFIX}/etc/logtool/yellow.dist
|
@${CP} ${WRKSRC}/conf/yellow ${PREFIX}/etc/logtool/yellow.dist
|
||||||
.if !defined(NOPORTDOCS)
|
.if !defined(NOPORTDOCS)
|
||||||
@${ECHO_MSG} "===> Installing logtool docs in ${PREFIX}/share/doc/logtool"
|
@${ECHO_MSG} "===> Installing logtool docs in ${PREFIX}/share/doc/logtool"
|
||||||
@${MKDIR} ${PREFIX}/share/doc/logtool && ${CHMOD} a+rx ${PREFIX}/share/doc/logtool
|
@${MKDIR} ${DOCSDIR}
|
||||||
@${CP} -R ${WRKSRC}/doc/examples ${WRKSRC}/doc/logtool.txt ${PREFIX}/share/doc/logtool
|
@${CP} -Rvf ${WRKSRC}/scripts ${WRKSRC}/doc/logtool.txt ${DOCSDIR}
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
.include <bsd.port.mk>
|
.include <bsd.port.mk>
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
MD5 (logtool-1.0.6.tar.gz) = fc19cba56a9a9a1d7bf3c7210fb5282e
|
MD5 (logtool-1.0.7.tar.gz) = 89257ee8b4f735e72d1d3585b9331b6c
|
||||||
|
|
|
@ -1,14 +0,0 @@
|
||||||
--- configure.orig Tue Jun 12 14:46:04 2001
|
|
||||||
+++ configure Tue Jun 12 14:46:09 2001
|
|
||||||
@@ -744,11 +744,6 @@
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
-if test -n "$GCC"; then
|
|
||||||
- CFLAGS="-O3 -Wall"
|
|
||||||
-fi
|
|
||||||
-
|
|
||||||
-
|
|
||||||
|
|
||||||
if test "`echo "$sysconfdir" | grep "prefix"`" ; then
|
|
||||||
sysconfdir=`echo $sysconfdir/logtool | sed s/'${prefix}'/""/g`
|
|
|
@ -1,19 +0,0 @@
|
||||||
--- logtool/Makefile.in.orig Sun Feb 11 23:50:38 2001
|
|
||||||
+++ logtool/Makefile.in Sun Feb 11 23:54:02 2001
|
|
||||||
@@ -16,6 +16,7 @@
|
|
||||||
CC = @CC@
|
|
||||||
INSTALL = @installprog@
|
|
||||||
CFLAGS= @CFLAGS@ @DEFS@ @LIBS@
|
|
||||||
+LIBS= -L/usr/local/lib -lgnugetopt
|
|
||||||
|
|
||||||
### The stuff below is (I hope) no longer needed now that we us autoconf/configure and friends
|
|
||||||
# Solaris users should probably use the following instead (thanks Christoph Krempe <ck@ub.fu-berlin.de>)
|
|
||||||
@@ -30,7 +31,7 @@
|
|
||||||
|
|
||||||
### The main build stuff
|
|
||||||
logtool: logtool.o $(OBJS)
|
|
||||||
- $(CC) $(ADDCFLAGS) -o $(PROG) $(OBJS)
|
|
||||||
+ $(CC) $(ADDCFLAGS) -o $(PROG) $(OBJS) ${LIBS}
|
|
||||||
@echo "strip $(PROG)"
|
|
||||||
@strip $(PROG)
|
|
||||||
|
|
|
@ -1,25 +1,21 @@
|
||||||
bin/logtool
|
bin/logtool
|
||||||
bin/logtail
|
bin/logtail
|
||||||
@unexec if cmp -s %D/etc/logtool/exclude %D/etc/logtool/exclude.dist; then rm -f %D/etc/logtool/exclude; fi
|
etc/logtool/logtool.conf
|
||||||
etc/logtool/exclude.dist
|
etc/logtool/green
|
||||||
@exec [ -f %B/exclude ] || cp %B/%f %B/exclude
|
etc/logtool/yellow
|
||||||
@unexec if cmp -s %D/etc/logtool/green %D/etc/logtool/green.dist; then rm -f %D/etc/logtool/green; fi
|
etc/logtool/include
|
||||||
etc/logtool/green.dist
|
etc/logtool/exclude
|
||||||
@exec [ -f %B/green ] || cp %B/%f %B/green
|
|
||||||
@unexec if cmp -s %D/etc/logtool/include %D/etc/logtool/include.dist; then rm -f %D/etc/logtool/include; fi
|
|
||||||
etc/logtool/include.dist
|
|
||||||
@exec [ -f %B/include ] || cp %B/%f %B/include
|
|
||||||
@unexec if cmp -s %D/etc/logtool/logtool.conf %D/etc/logtool/logtool.conf.dist; then rm -f %D/etc/logtool/logtool.conf; fi
|
|
||||||
etc/logtool/logtool.conf.dist
|
etc/logtool/logtool.conf.dist
|
||||||
@exec [ -f %B/logtool.conf ] || cp %B/%f %B/logtool.conf
|
etc/logtool/exclude.dist
|
||||||
@unexec if cmp -s %D/etc/logtool/yellow %D/etc/logtool/yellow.dist; then rm -f %D/etc/logtool/yellow; fi
|
etc/logtool/green.dist
|
||||||
|
etc/logtool/include.dist
|
||||||
etc/logtool/yellow.dist
|
etc/logtool/yellow.dist
|
||||||
@exec [ -f %B/yellow ] || cp %B/%f %B/yellow
|
%%PORTDOCS%%share/doc/logtool/scripts/monitor.logs.sh
|
||||||
@unexec rmdir %D/etc/logtool 2>/dev/null || true
|
%%PORTDOCS%%share/doc/logtool/scripts/README
|
||||||
%%PORTDOCS%%share/doc/logtool/examples/README
|
%%PORTDOCS%%share/doc/logtool/scripts/cronjob.emailreport.sh
|
||||||
%%PORTDOCS%%share/doc/logtool/examples/cronjob.genwebpage.sh
|
%%PORTDOCS%%share/doc/logtool/scripts/cronjob.genwebpage.sh
|
||||||
%%PORTDOCS%%share/doc/logtool/examples/cronjob.emailreport.sh
|
%%PORTDOCS%%share/doc/logtool/scripts/logtool_logcheck.sh
|
||||||
%%PORTDOCS%%share/doc/logtool/examples/monitor.logs.sh
|
|
||||||
%%PORTDOCS%%share/doc/logtool/logtool.txt
|
%%PORTDOCS%%share/doc/logtool/logtool.txt
|
||||||
%%PORTDOCS%%@dirrm share/doc/logtool/examples
|
@dirrm etc/logtool
|
||||||
|
%%PORTDOCS%%@dirrm share/doc/logtool/scripts
|
||||||
%%PORTDOCS%%@dirrm share/doc/logtool
|
%%PORTDOCS%%@dirrm share/doc/logtool
|
||||||
|
|
Loading…
Add table
Reference in a new issue