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
|
# New ports collection makefile for: goaccess
# Date created: 2010-11-17
# Whom: Sofian Brabez <sbrabez@gmail.com>
#
# $FreeBSD$
#
PORTNAME= goaccess
PORTVERSION= 0.3.3
CATEGORIES= sysutils
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}/${PORTVERSION}
MAINTAINER= sbrabez@gmail.com
COMMENT= Real-time Apache web log analyzer
LIB_DEPENDS= glib-2.0:${PORTSDIR}/devel/glib20 \
GeoIP.5:${PORTSDIR}/net/GeoIP
GNU_CONFIGURE= yes
USE_LDCONFIG= yes
CFLAGS+= -I${LOCALBASE}/include
CONFIGURE_ENV= LDFLAGS=-L${LOCALBASE}/lib
PLIST_FILES= bin/${PORTNAME}
.if !defined(NO_INSTALL_MANPAGES)
MAN1= ${PLIST_FILES:S,bin/,,:S,$,.1,}
.endif
PORTDOCS= AUTHORS COPYING ChangeLog NEWS README TODO
do-install:
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${DOCSDIR}
.endif
.if !defined(NO_INSTALL_MANPAGES)
${INSTALL_MAN} ${MAN1:S,^,${WRKSRC}/,} ${PREFIX}/man/man1
.endif
${INSTALL_SCRIPT} ${PORTNAME:S,^,${WRKSRC}/,} ${PREFIX}/bin
.include <bsd.port.mk>
|