85a72c9f82
it's on by default, no PORTREVISION bump is necessary - Use ETCDIR instead of complete path PR: ports/164706 Submitted by: Takefu <takefu@airport.fm>
69 lines
1.4 KiB
Makefile
69 lines
1.4 KiB
Makefile
# New ports collection makefile for: sarg
|
|
# Date created: 23.02.2003
|
|
# Whom: mt@primats.org.ua
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= sarg
|
|
PORTVERSION= 2.3.2
|
|
PORTREVISION= 3
|
|
CATEGORIES= www
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}
|
|
|
|
MAINTAINER= garga@FreeBSD.org
|
|
COMMENT= Squid log analyzer and HTML report generator
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
OPTIONS= GD "Enable GD support" on\
|
|
PHP "Install PHP for reporting generating" on
|
|
|
|
USE_AUTOTOOLS= autoconf aclocal
|
|
USE_GMAKE= yes
|
|
GNU_CONFIGURE= yes
|
|
MAKE_JOBS_SAFE= yes
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
CONFIGURE_ARGS= --sysconfdir="${ETCDIR}" \
|
|
--enable-fontdir="${ETCDIR}/fonts" \
|
|
--enable-imagedir="${ETCDIR}/images"
|
|
|
|
MAN1= sarg.1
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if defined(WITHOUT_NLS)
|
|
PLIST_SUB+= NLS="@comment "
|
|
CONFIGURE_ARGS+= --disable-nls
|
|
.else
|
|
PLIST_SUB+= NLS=""
|
|
USE_GETTEXT= yes
|
|
USE_ICONV= yes
|
|
.endif
|
|
|
|
.if !defined(WITHOUT_GD)
|
|
LIB_DEPENDS+= gd.4:${PORTSDIR}/graphics/gd
|
|
.endif
|
|
|
|
.if !defined(WITHOUT_PHP)
|
|
CONFIGURE_ARGS+= --enable-sargphp="${ETCDIR}"
|
|
PLIST_SUB+= PHP=""
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-sargphp
|
|
PLIST_SUB+= PHP="@comment "
|
|
.endif
|
|
|
|
post-extract:
|
|
@${FIND} ${WRKSRC} -type d -exec ${CHMOD} 0755 {} \;
|
|
@${CHMOD} 0755 ${WRKSRC}/configure
|
|
|
|
post-patch:
|
|
.if !defined(WITHOUT_NLS)
|
|
@${REINPLACE_CMD} -e '/^LIBS/ s/$$/ -lintl/' ${WRKSRC}/Makefile.in
|
|
.endif
|
|
|
|
pre-configure:
|
|
@(cd ${WRKSRC} && ${AUTORECONF})
|
|
|
|
.include <bsd.port.post.mk>
|