mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-22 04:17:44 +00:00
3561a46f28
- new MASTER_SITES - add security patch PR: 210913 Submitted by: Piotr Kubaj MFH: 2016Q3 Security: CVE-2015-8874 Security: CVE-2016-3074 Security: http://www.openwall.com/lists/oss-security/2016/07/12/4
63 lines
1.7 KiB
Makefile
63 lines
1.7 KiB
Makefile
# Created by: Chadwick Sorrell chad@wickdev.com
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= awffull
|
|
PORTVERSION= 3.10.2
|
|
PORTREVISION= 16
|
|
CATEGORIES?= www
|
|
MASTER_SITES= https://launchpadlibrarian.net/20395993/
|
|
|
|
MAINTAINER?= ports@FreeBSD.org
|
|
COMMENT= Webserver log analysis tool forked from Webalizer
|
|
|
|
LICENSE= GPLv3
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/share/fonts/bitstream-vera/Vera.ttf:x11-fonts/bitstream-vera
|
|
LIB_DEPENDS= libgd.so:graphics/gd \
|
|
libpng.so:graphics/png \
|
|
libpcre.so:devel/pcre
|
|
RUN_DEPENDS:= ${BUILD_DEPENDS}
|
|
|
|
CONFLICTS?= ja-awffull-[0-9]*
|
|
|
|
FONTDEFAULT?= ${LOCALBASE}/share/fonts/bitstream-vera/VeraBd.ttf
|
|
FONTLABEL?= ${LOCALBASE}/share/fonts/bitstream-vera/Vera.ttf
|
|
|
|
OPTIONS_DEFINE= GEOIP DOCS EXAMPLES NLS
|
|
OPTIONS_SUB= yes
|
|
|
|
USES= gettext iconv localbase shebangfix
|
|
SHEBANG_FILES= contrib/awffull_history_regen.pl \
|
|
contrib/awffull_history_regen_german.pl
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+=--with-font-default=${FONTDEFAULT} \
|
|
--with-font-label=${FONTLABEL} \
|
|
--with-etcdir=${PREFIX}/etc
|
|
|
|
GEOIP_LIB_DEPENDS= libGeoIP.so:net/GeoIP
|
|
GEOIP_CONFIGURE_ENABLE= geoip
|
|
|
|
NLS_CONFIGURE_ENABLE= nls
|
|
|
|
PORTDOCS= *
|
|
PORTEXAMPLES= *
|
|
|
|
post-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
(cd ${WRKSRC} && ${INSTALL_DATA} \
|
|
ChangeLog DNS.README PERFORMANCE_TIPS.txt \
|
|
README* TODO country-codes.txt \
|
|
${STAGEDIR}${DOCSDIR})
|
|
|
|
post-install-EXAMPLES-on:
|
|
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/sample* ${STAGEDIR}${EXAMPLESDIR}
|
|
${INSTALL_SCRIPT} ${WRKSRC}/contrib/*.pl ${STAGEDIR}${EXAMPLESDIR}
|
|
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/flags
|
|
${INSTALL_DATA} ${WRKSRC}/flags/README ${WRKSRC}/flags/*.png \
|
|
${STAGEDIR}${EXAMPLESDIR}/flags
|
|
|
|
.include <bsd.port.mk>
|