mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:48:54 +00:00
32a2597e73
incremental logfile reader. It will read a file or group of files given on the command line, and output any changes since last time it read the file(s) in question. It will attempt to compensate if the filesize changes unexpectedly, and will also attempt to compensate if the file contents changes as well. It is not a very complex program. WWW: http://xjack.org/retail/ PR: ports/146849 Submitted by: Oleg Ginzburg
28 lines
650 B
Makefile
28 lines
650 B
Makefile
# New ports collection makefile for: retail
|
|
# Date created: 19 May 2010
|
|
# Whom: Oleg Ginzburg
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= retail
|
|
PORTVERSION= 1.0.0
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://xjack.org/retail/download/ \
|
|
http://itdev.spb.ru/mirror/
|
|
|
|
MAINTAINER= oleg.ginzburg@nevosoft.ru
|
|
COMMENT= A program for incremental logfile reader
|
|
|
|
GNU_CONFIGURE= yes
|
|
MAN1= retail.1
|
|
PLIST_FILES= bin/retail
|
|
|
|
post-configure:
|
|
${REINPLACE_CMD} -e 's/%.o: %.c \*.h ..\/config.h//g' ${WRKSRC}/src/Makefile
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/doc/retail.1 ${PREFIX}/man/man1/
|
|
|
|
.include <bsd.port.mk>
|