blob: a4b3ba261c1a4484dfb20240a2c7978d010f51c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# $NetBSD: Makefile,v 1.8 2005/03/24 21:12:57 wiz Exp $
DISTNAME= colortail-0.3.0
CATEGORIES= misc
MASTER_SITES= http://www.student.hk-r.se/~pt98jan/
MAINTAINER= zuntum@NetBSD.org
HOMEPAGE= http://www.student.hk-r.se/~pt98jan/colortail.html
COMMENT= Colour-able replacement for tail(1)
GNU_CONFIGURE= yes
CONFIGURE_ARGS+=--datadir=${PREFIX}/share/examples/colortail
DESCR_SRC= ${WRKDIR}/.DESCR_SRC
post-install:
${INSTALL_MAN} ${WRKSRC}/colortail.1 ${PREFIX}/man/man1
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/colortail
cd ${WRKSRC}/example-conf/ && \
${INSTALL_DATA} conf.kernel conf.messages conf.secure \
conf.xferlog conf.daemon ${PREFIX}/share/examples/colortail
${SED} 's,@PREFIX@,${PREFIX},' ${PKGDIR}/DESCR > ${DESCR_SRC}
.include "../../mk/bsd.pkg.mk"
|