svn commit: r382012 - head/www/varnish4
Mark Felder
feld at FreeBSD.org
Mon Mar 23 16:11:54 UTC 2015
Author: feld
Date: Mon Mar 23 16:11:53 2015
New Revision: 382012
URL: https://svnweb.freebsd.org/changeset/ports/382012
QAT: https://qat.redports.org/buildarchive/r382012/
Log:
Varnish was failing to build if devel/libedit was installed.
Add libedit as a dependency with correct CFLAGS so it builds
successfuly.
Modified:
head/www/varnish4/Makefile
Modified: head/www/varnish4/Makefile
==============================================================================
--- head/www/varnish4/Makefile Mon Mar 23 15:46:23 2015 (r382011)
+++ head/www/varnish4/Makefile Mon Mar 23 16:11:53 2015 (r382012)
@@ -2,7 +2,7 @@
PORTNAME= varnish
PORTVERSION= 4.0.3
-PORTREVISION= 1
+PORTREVISION= 2
CATEGORIES= www
MASTER_SITES= http://repo.varnish-cache.org/source/
PKGNAMESUFFIX= 4
@@ -12,11 +12,13 @@ COMMENT= High-performance HTTP accelerat
LICENSE= BSD2CLAUSE
-LIB_DEPENDS= libpcre.so:${PORTSDIR}/devel/pcre
+LIB_DEPENDS= libpcre.so:${PORTSDIR}/devel/pcre \
+ libedit.so.0:${PORTSDIR}/devel/libedit
CONFLICTS= varnish-2.* varnish-3.*
USES= autoreconf gmake libtool readline pkgconfig python:build
+CFLAGS+= -I${LOCALBASE}/include
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --localstatedir=${PREFIX} --enable-tests
CONFIGURE_ENV= RST2MAN=true
More information about the svn-ports-all
mailing list