svn commit: r494409 - in head: . net net/pen

Danilo Egea Gondolfo danilo at FreeBSD.org
Sat Mar 2 15:43:29 UTC 2019


Author: danilo
Date: Sat Mar  2 15:43:27 2019
New Revision: 494409
URL: https://svnweb.freebsd.org/changeset/ports/494409

Log:
  - Re-add net/pen
  
  This is pen, a load balancer for UDP and TCP based protocols such as
  DNS, HTTP or SMTP. It allows several servers to appear as one to the
  outside and automatically detects servers that are down and distributes
  clients among the available servers. This gives high availability and
  scalable performance.
  
  PR:		236048
  Submitted by:	Ronald Klop

Added:
  head/net/pen/
     - copied from r493021, head/net/pen/
Modified:
  head/MOVED
  head/net/Makefile
  head/net/pen/Makefile

Modified: head/MOVED
==============================================================================
--- head/MOVED	Sat Mar  2 15:32:45 2019	(r494408)
+++ head/MOVED	Sat Mar  2 15:43:27 2019	(r494409)
@@ -11597,7 +11597,6 @@ ftp/proftpd-mod_geoip||2019-02-16|Has expired: Uses le
 net/go-geoip||2019-02-16|Has expired: Uses legacy GeoIP 1 format which no longer works; switch to GeoIP 2 where possible
 net/py-GeoIP|net/py-GeoIP2|2019-02-16|Has expired: Uses legacy GeoIP 1 format which no longer works; switch to GeoIP 2 where possible
 net/pecl-geoip||2019-02-16|Has expired: Uses legacy GeoIP 1 format which no longer works; switch to GeoIP 2 where possible
-net/pen||2019-02-16|Has expired: Uses legacy GeoIP 1 format which no longer works; switch to GeoIP 2 where possible
 net/subnetcalc||2019-02-16|Has expired: Uses legacy GeoIP 1 format which no longer works; switch to GeoIP 2 where possible
 net/p5-Geo-IP||2019-02-16|Has expired: Uses legacy GeoIP 1 format which no longer works; switch to GeoIP 2 where possible
 net/rubygem-geoip||2019-02-16|Has expired: Uses legacy GeoIP 1 format which no longer works; switch to GeoIP 2 where possible

Modified: head/net/Makefile
==============================================================================
--- head/net/Makefile	Sat Mar  2 15:32:45 2019	(r494408)
+++ head/net/Makefile	Sat Mar  2 15:43:27 2019	(r494409)
@@ -968,6 +968,7 @@
     SUBDIR += pecl-smbclient
     SUBDIR += pecl-yaz
     SUBDIR += pecl-zmq
+    SUBDIR += pen
     SUBDIR += pfinger
     SUBDIR += phamm
     SUBDIR += php71-ldap

Modified: head/net/pen/Makefile
==============================================================================
--- head/net/pen/Makefile	Fri Feb 15 23:53:32 2019	(r493021)
+++ head/net/pen/Makefile	Sat Mar  2 15:43:27 2019	(r494409)
@@ -11,15 +11,11 @@ COMMENT=	Load balancer for UDP and TCP based protocols
 
 LICENSE=	GPLv2
 
-LIB_DEPENDS=	libGeoIP.so:net/GeoIP
+USES=		ssl
 
-DEPRECATED=     Uses legacy GeoIP 1 format which no longer works; switch to GeoIP 2 where possible
-EXPIRATION_DATE=2019-02-15
-
 GNU_CONFIGURE=	yes
-USES=		ssl
 USE_RC_SUBR=	pen
-CONFIGURE_ARGS=	--with-daemon --with-docdir=${DOCSDIR} --with-geoip \
+CONFIGURE_ARGS=	--with-daemon --with-docdir=${DOCSDIR} --without-geoip \
 		--with-ssl=${OPENSSLBASE}
 CPPFLAGS+=	-I${LOCALBASE}/include
 LIBS+=		-L${LOCALBASE}/lib


More information about the svn-ports-all mailing list