diff options
author | pawel <pawel@FreeBSD.org> | 2012-11-10 06:21:59 +0800 |
---|---|---|
committer | pawel <pawel@FreeBSD.org> | 2012-11-10 06:21:59 +0800 |
commit | 7cfa63902376c20398d0c4b3ea3c4aa69e8d3bc3 (patch) | |
tree | 86e126d52c3c1c10ad00c0bb972220558fc66736 /sysutils | |
parent | fc7323b32b2c8441578bf04bc8f9c4487287b6c1 (diff) | |
download | freebsd-ports-gnome-7cfa63902376c20398d0c4b3ea3c4aa69e8d3bc3.tar.gz freebsd-ports-gnome-7cfa63902376c20398d0c4b3ea3c4aa69e8d3bc3.tar.zst freebsd-ports-gnome-7cfa63902376c20398d0c4b3ea3c4aa69e8d3bc3.zip |
- Update WWW: line
- Add LICENSE
- Add MAKE_JOBS_SAFE
- Support PORTEXAMPLES
PR: ports/172067
Submitted by: KATO Tsuguru <tkato432@yahoo.com>
Feature safe: yes
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/logmon/Makefile | 25 | ||||
-rw-r--r-- | sysutils/logmon/pkg-descr | 16 |
2 files changed, 23 insertions, 18 deletions
diff --git a/sysutils/logmon/Makefile b/sysutils/logmon/Makefile index 7e6e3a2d493f..a4e659966a2d 100644 --- a/sysutils/logmon/Makefile +++ b/sysutils/logmon/Makefile @@ -1,9 +1,5 @@ -# New ports collection makefile for: logmon -# Date created: 12 September 2001 -# Whom: Gea-Suan Lin (gslin@ccca.nctu.edu.tw) -# +# Created by: Gea-Suan Lin (gslin@ccca.nctu.edu.tw) # $FreeBSD$ -# PORTNAME= logmon PORTVERSION= 0.4.4 @@ -12,16 +8,25 @@ MASTER_SITES= http://www.edespot.com/code/LogMon/ DISTNAME= LogMon-${PORTVERSION} MAINTAINER= ports@FreeBSD.org -COMMENT= An ncurses-based split window log monitoring program +COMMENT= Ncurses-based split window log monitoring program + +LICENSE= ART10 USE_BZIP2= yes -GNU_CONFIGURE= yes -PLIST_FILES= bin/logmon %%EXAMPLESDIR%%/logmon.conf.example -PLIST_DIRS= %%EXAMPLESDIR%% +USE_NCURSES= yes USE_GMAKE= yes +GNU_CONFIGURE= yes +MAKE_JOBS_SAFE= yes + +PORTEXAMPLES= logmon.conf.example +PLIST_FILES= bin/logmon + +.include <bsd.port.options.mk> post-install: - ${MKDIR} ${EXAMPLESDIR} +.if ${PORT_OPTIONS:MEXAMPLES} + @${MKDIR} ${EXAMPLESDIR} ${INSTALL_DATA} ${WRKSRC}/logmon.conf.example ${EXAMPLESDIR} +.endif .include <bsd.port.mk> diff --git a/sysutils/logmon/pkg-descr b/sysutils/logmon/pkg-descr index 6c0895016f00..0325345fade4 100644 --- a/sysutils/logmon/pkg-descr +++ b/sysutils/logmon/pkg-descr @@ -1,9 +1,9 @@ -This program will monitor one or more log files, updating when more data is -available ala 'tail -f' , within a common terminal window via a "split window". -User can scroll up/down/left/right through all the windows. A header displays -each frames file name, and number of lines in the file. Very usefull when -watching several log files at the same time. I've tested this under Linux, but -it should work under other Unices. Please let me know if you get it working on -another OS. +This program will monitor one or more log files, updating when more data +is available ala 'tail -f', within a common terminal window via a "split +window". User can scroll up/down/left/right through all the windows. A +header displays each frames file name, and number of lines in the file. +Very usefull when watching several log files at the same time. I've +tested this under Linux, but it should work under other Unices. Please +let me know if you get it working on another OS. -WWW: http://www.edespot.com/plaidhat/code/LogMon/ +WWW: http://www.edespot.com/logmon |