blob: e5de6fad0f2d7b9835c6486499630b3f94f7755e (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
# New ports collection makefile for: webalizer
# Date created: 02.Jun 1998
# Whom: dirk.meyer@dinoex.sub.org
#
# $FreeBSD$
#
PORTNAME= webalizer
PORTVERSION= 2.1.6
PORTREVISION= 2
CATEGORIES+= www
MASTER_SITES= ftp://ftp.mrunix.net/pub/webalizer/ \
ftp://ftp.dinoex.de/pub/FreeBSD/distfiles/
DISTNAME= ${PORTNAME}-2.01-06-src
MAINTAINER= dirk.meyer@dinoex.sub.org
LIB_DEPENDS= gd.2:${PORTSDIR}/graphics/gd
USE_BZIP2= yes
GNU_CONFIGURE= yes
.if defined(BATCH)
# no cosmetique spaces allowed
WEBALIZER_LANG?=english
.endif
.include <bsd.port.pre.mk>
CONFIGURE_ARGS+= --enable-dns \
--with-etcdir=${PREFIX}/etc \
--with-gdlib=${PREFIX}/lib \
--with-gd=${PREFIX}/include/gd
CONFIGURE_ENV+= LDFLAGS="-L${PREFIX}/lib"
MAKE_ARGS+= CFLAGS="${CFLAGS}"
MAN1= ${PKGNAMEPREFIX}webalizer.1
DOC1= CHANGES COPYING Copyright INSTALL \
README README.FIRST DNS.README country-codes.txt
WRKSRC= ${WRKDIR}/${DISTNAME:S/-src$//}
PLIST_SUB+= PKGNAMEPREFIX=${PKGNAMEPREFIX}
SUPP_LANG= catalan chinese czech danish dutch english estonian \
finnish french german greek hungarian indonesian \
italian korean polish portuguese portuguese_brazil \
romanian russain slowak slovene spanish swedish turkish
.if defined(WEBALIZER_LANG)
CONFIGURE_ARGS+= --with-language=${WEBALIZER_LANG}
.endif
pre-configure:
@${PERL5} -pi -e "s=/etc=${PREFIX}/etc=" ${WRKSRC}/webalizer.1
@${PERL5} -pi -e "s=webalizer.conf=${PKGNAMEPREFIX}webalizer.conf=" \
${WRKSRC}/webalizer.c
.if !defined(WEBALIZER_LANG)
@${ECHO_MSG} "You can customize the language by typing"
@${ECHO_MSG} " make WEBALIZER_LANG=<lang>"
@${ECHO_MSG} "where <lang> is one of:"
@${ECHO_MSG} ${SUPP_LANG}
.endif
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/webalizer \
${PREFIX}/bin/${PKGNAMEPREFIX}webalizer
${LN} -sf ${PKGNAMEPREFIX}webalizer \
${PREFIX}/bin/${PKGNAMEPREFIX}webazolver
${INSTALL_DATA} ${WRKSRC}/sample.conf \
${PREFIX}/etc/${PKGNAMEPREFIX}webalizer.conf-dist ;
post-install:
.for i in ${MAN1}
${INSTALL_MAN} ${WRKSRC}/webalizer.1 ${PREFIX}/man/man1/${i}
.endfor
.if !defined(NOPORTDOCS)
${MKDIR} ${PREFIX}/share/doc/${PKGNAMEPREFIX}webalizer
.for i in ${DOC1}
@${INSTALL_DATA} ${WRKSRC}/${i} \
${PREFIX}/share/doc/${PKGNAMEPREFIX}webalizer/${i}
.endfor
${MKDIR} ${PREFIX}/share/examples/${PKGNAMEPREFIX}webalizer
.for i in msfree.png sample.conf webalizer.png
@${INSTALL_DATA} ${WRKSRC}/${i} \
${PREFIX}/share/examples/${PKGNAMEPREFIX}webalizer/${i}
.endfor
.endif
.include <bsd.port.post.mk>
|