1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-03 06:04:53 +00:00
freebsd-ports/www/sarg/Makefile
Wesley Shields e83284438c - Update to 2.3.1
Submitted by:	Ryan Steinmetz <rpsfa@rit.edu>
Approved by:	garga (maintainer)
2011-06-14 11:42:01 +00:00

56 lines
1.2 KiB
Makefile

# New ports collection makefile for: sarg
# Date created: 23.02.2003
# Whom: mt@primats.org.ua
#
# $FreeBSD$
#
PORTNAME= sarg
PORTVERSION= 2.3.1
CATEGORIES= www
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}
MAINTAINER= garga@FreeBSD.org
COMMENT= Squid log analyzer and HTML report generator
OPTIONS= GD "Enable GD support" on
USE_GCC= 4.2+
USE_ICONV= yes
USE_GMAKE= yes
USE_GETTEXT= yes
GNU_CONFIGURE= yes
MAKE_JOBS_SAFE= yes
CFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
CONFIGURE_ENV= CC="${CC}" LDFLAGS="${LDFLAGS}"
CONFIGURE_ARGS= --sysconfdir="${PREFIX}/etc/${PORTNAME}" \
--enable-sargphp="${PREFIX}/etc/${PORTNAME}" \
--enable-fontdir="${PREFIX}/etc/${PORTNAME}/fonts" \
--enable-imagedir="${PREFIX}/etc/${PORTNAME}/images"
MAN1= sarg.1
LICENSE= GPLv2
LICENSE_FILE= ${WRKSRC}/LICENSE
.include <bsd.port.pre.mk>
.if ${CC} == "cc"
CC= gcc
.endif
.if !defined(WITHOUT_GD)
LIB_DEPENDS+= gd.4:${PORTSDIR}/graphics/gd
.endif
pre-install:
${STRIP_CMD} ${WRKSRC}/sarg
post-install:
@${RM} ${WRKSRC}/languages/.new
@${MKDIR} ${PREFIX}/etc/${PORTNAME}/languages
${INSTALL_DATA} ${WRKSRC}/languages/* ${PREFIX}/etc/${PORTNAME}/languages
.include <bsd.port.post.mk>