diff options
author | rene <rene@FreeBSD.org> | 2010-10-31 22:21:16 +0800 |
---|---|---|
committer | rene <rene@FreeBSD.org> | 2010-10-31 22:21:16 +0800 |
commit | e52a086e43c16c84791910aac66544fd577a1492 (patch) | |
tree | f6c45b62d5951204e25246ee0f2fc5529d0d07e1 /www/squidguard | |
parent | b97187b3748d9da25b55692fb098b6def1965960 (diff) | |
download | freebsd-ports-gnome-e52a086e43c16c84791910aac66544fd577a1492.tar.gz freebsd-ports-gnome-e52a086e43c16c84791910aac66544fd577a1492.tar.zst freebsd-ports-gnome-e52a086e43c16c84791910aac66544fd577a1492.zip |
- Fix ldap support by helping the port's configure script find the ldap
libraries. [1]
- Prevent an ECHO_MSG from being displayed twice
- Bump PORTREVISION
PR: ports/151473
Submitted by: maintainer
Reported by: cyx on freebsd-ports@
Diffstat (limited to 'www/squidguard')
-rw-r--r-- | www/squidguard/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/www/squidguard/Makefile b/www/squidguard/Makefile index 848a1f037d9c..244408326be9 100644 --- a/www/squidguard/Makefile +++ b/www/squidguard/Makefile @@ -7,7 +7,7 @@ PORTNAME= squidGuard PORTVERSION= 1.4 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= www MASTER_SITES= http://www.squidguard.org/Downloads/ @@ -25,7 +25,7 @@ CONFIGURE_ARGS= --with-db-inc=${BDB_INCLUDE_DIR} \ --with-sg-logdir=${LOGDIR} \ --exec-prefix=${PREFIX} -CONFIGURE_ENV= CFLAGS="${CFLAGS} -I${PREFIX}/include" +CONFIGURE_ENV= CFLAGS="${CFLAGS} -I${PREFIX}/include" LDFLAGS="${LDFLAGS} -L${LOCALBASE}/lib" CFGINPUT= ${.CURDIR}/files/sgcfg.in @@ -156,7 +156,7 @@ pre-install: ${FIND} ${DATADIR} -type f -name *.db -exec ${CHMOD} 660 {} \; ; \ ${ECHO_MSG} " -> Blacklist databases installed in: ${DATADIR}" .else - ${ECHO_MSG} "===> Existing configuration file found - blacklist databases not created" + @${ECHO_MSG} "===> Existing configuration file found - blacklist databases not created" .endif post-install: |