21a283f3be
UNIQUENAME was never unique, it was only used by USE_LDCONFIG and now, we won't have conflicts there. Use PKGBASE instead of LATEST_LINK in PKGLATESTFILE, the *only* consumer is pkg-devel, and it works just fine without LATEST_LINK as pkg-devel has the correct PKGNAME anyway. Now that UNIQUENAME is gone, OPTIONSFILE is too. (it's been called OPTIONS_FILE now.) Reviewed by: antoine, bapt Exp-run by: antoine Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D3336
98 lines
3.3 KiB
Makefile
98 lines
3.3 KiB
Makefile
# Created by: Alexander Moisseev <moiseev@mezonplus.ru>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= free-sa
|
|
PORTVERSION= 2.0.0b6.7
|
|
CATEGORIES= www
|
|
MASTER_SITES= SF/free-sa/free-sa-dev/2.0.0b6p7
|
|
PKGNAMESUFFIX= -devel
|
|
DISTNAME= free-sa-2.0.0b6p7
|
|
|
|
MAINTAINER= moiseev@mezonplus.ru
|
|
COMMENT= Statistic analyzer for daemons log files similar to SARG
|
|
|
|
LICENSE= GPLv3
|
|
|
|
CONFLICTS= free-sa-[0-9]*
|
|
|
|
WWWDIR?= ${PREFIX}/www/${PORTNAME}
|
|
DOCSDIR= ${PREFIX}/share/doc/${PORTNAME}-${DISTVERSION}
|
|
|
|
SUB_FILES= pkg-deinstall
|
|
SUB_LIST= CACHEDIR="/var/cache/free-sa"
|
|
|
|
USE_CSTD= gnu89
|
|
|
|
MAKE_ARGS+= PREFIX="${PREFIX}" \
|
|
ETCDIR="${ETCDIR}" \
|
|
WWWDIR="${WWWDIR}" \
|
|
CACHEDIR="/var/cache/free-sa" \
|
|
LOCDIR="${DATADIR}" \
|
|
DOCDIR="${DOCSDIR}" \
|
|
LOGFILE=/var/log/squid/access.log \
|
|
CC="${CC}" \
|
|
SORT=/usr/bin/sort \
|
|
INSTALL=/usr/bin/install \
|
|
LARGEFILE=yes \
|
|
SATSEP="'" \
|
|
HAVE_STRL="1" \
|
|
MANDIR="${MANPREFIX}/man" \
|
|
STAGEDIR="${STAGEDIR}"
|
|
|
|
OPTIONS_DEFINE= OPTIMIZED_CFLAGS SA_DEBUG DOCS
|
|
OPTIMIZED_CFLAGS_DESC= Build with distribution-recommended CFLAGS
|
|
SA_DEBUG_DESC= Enable Free-SA debugging (level 1)
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
pre-everything::
|
|
.if empty(PORT_OPTIONS:MOPTIMIZED_CFLAGS)
|
|
@${ECHO_MSG} "============================================================================="
|
|
@${ECHO_MSG} " This software is computationally demanding, and users are"
|
|
@${ECHO_MSG} " advised to employ compiler optimizations when building it."
|
|
@${ECHO_MSG} " Author of this software have used such flags as"
|
|
@${ECHO_MSG} " 'CFLAGS= -O4 -pipe -march=native' and 'CC= gcc' to advantage."
|
|
@${ECHO_MSG} " You can set them in make.conf, but they depends on your system and compiler."
|
|
@${ECHO_MSG} " In addition, you can enable extra flags by defining WITH_OPTIMIZED_CFLAGS"
|
|
@${ECHO_MSG} " For example, 'make WITH_OPTIMIZED_CFLAGS=yes'"
|
|
@${ECHO_MSG} "============================================================================="
|
|
.endif
|
|
.if empty(PORT_OPTIONS:MSA_DEBUG) &! (SA_DEBUG_LEVEL)
|
|
@${ECHO_MSG} "============================================================================="
|
|
@${ECHO_MSG} " You can enable Free-SA debugging (level 1) by defining WITH_SA_DEBUG"
|
|
@${ECHO_MSG} " For example, 'make WITH_SA_DEBUG=yes'"
|
|
@${ECHO_MSG} " Or for specific level (0-7) you can use SA_DEBUG_LEVEL"
|
|
@${ECHO_MSG} " For example, 'make SA_DEBUG_LEVEL=4'"
|
|
@${ECHO_MSG} " Note that SA_DEBUG_LEVEL overrides WITH_SA_DEBUG"
|
|
@${ECHO_MSG} "============================================================================="
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MSA_DEBUG}
|
|
SA_DEBUG_LEVEL?= 1
|
|
.else
|
|
SA_DEBUG_LEVEL?= 0
|
|
.endif
|
|
|
|
post-patch:
|
|
@cd ${WRKSRC} && \
|
|
${REINPLACE_CMD} \
|
|
-e 's,^DEBUG = .*,DEBUG = ${SA_DEBUG_LEVEL},' \
|
|
-e 's,^include .(GMKPATH)/configs/.(OSTYPE)\.mk,,' \
|
|
global.mk && \
|
|
${REINPLACE_CMD} -E \
|
|
-e '/#define/!s,\$$\((PREFIX|WWWDIR|CACHEDIR|DOCDIR|ETCDIR|MANDIR|LOCDIR)\),$$(STAGEDIR)&,' \
|
|
Makefile themes/Makefile src/Makefile etc/Makefile man/Makefile share/Makefile
|
|
|
|
.if ${PORT_OPTIONS:MOPTIMIZED_CFLAGS}
|
|
MAKE_ARGS+= ADDCFLAGS="${CFLAGS} \
|
|
-fomit-frame-pointer \
|
|
-std=c99 \
|
|
-W -Wall -Wextra -Wredundant-decls -Wnested-externs -Wstrict-prototypes \
|
|
-Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual \
|
|
-Wreturn-type -Wswitch -Wshadow -Wcast-align -Wuninitialized \
|
|
-Wchar-subscripts -Wuninitialized -Wbad-function-cast -Wwrite-strings"
|
|
.else
|
|
MAKE_ARGS+= ADDCFLAGS="${CFLAGS}"
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|