blob: f83a947ba81ebc6e4b1e5ca3780040f68bcde648 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# New ports collection makefile for: onis
# Date created: 29 March 2003
# Whom: koji@jet.es
#
# $FreeBSD$
#
PORTNAME= onis
PORTVERSION= 0.6.1
CATEGORIES= irc
MASTER_SITES= http://verplant.org/onis/ \
http://www.bsdberlin.org/~dako/distfiles/irc/
MAINTAINER= dako@bsdberlin.org
COMMENT= A script that converts IRC logfiles into an HTML statistics page
NO_BUILD= YES
USE_PERL5= YES
.include <bsd.port.pre.mk>
.if ${PERL_LEVEL} < 500601
IGNORE= This port requires perl 5.6.x or later. Install lang/perl5 and try again.
.endif
do-install:
@if [ ! -d ${DATADIR} ]; then \
${MKDIR} ${DATADIR}; \
fi
${CP} -R ${WRKSRC}/* ${DATADIR}/
.include <bsd.port.post.mk>
|