svn commit: r349957 - in head/net: freeradius2 freeradius3

Ryan Steinmetz zi at FreeBSD.org
Wed Apr 2 22:19:51 UTC 2014


Author: zi
Date: Wed Apr  2 22:19:50 2014
New Revision: 349957
URL: http://svnweb.freebsd.org/changeset/ports/349957
QAT: https://qat.redports.org/buildarchive/r349957/

Log:
  - Fix build when devel/libexecinfo is present
  - Bump PORTREVISION
  
  PR:		ports/188089
  Submitted by:	Lawrence "The Dreamer" Chen <beastie at tardisi.com>, feld@, Konstantin Belousov <kostikbel at gmail.com>

Modified:
  head/net/freeradius2/Makefile
  head/net/freeradius3/Makefile

Modified: head/net/freeradius2/Makefile
==============================================================================
--- head/net/freeradius2/Makefile	Wed Apr  2 21:21:21 2014	(r349956)
+++ head/net/freeradius2/Makefile	Wed Apr  2 22:19:50 2014	(r349957)
@@ -3,6 +3,7 @@
 
 PORTNAME=	freeradius
 DISTVERSION=	2.2.4
+PORTREVISION=	1
 CATEGORIES=	net
 MASTER_SITES=	ftp://ftp.freeradius.org/pub/freeradius/%SUBDIR%/ \
 		ftp://ftp.ntua.gr/pub/net/radius/freeradius/%SUBDIR%/ \
@@ -331,6 +332,9 @@ MAN8=		radiusd.8 radmin.8 raddebug.8 rad
 SUB_LIST+=	REQUIRE="${_REQUIRE}"
 
 post-patch:
+# never try to find execinfo.h (needed until we can enable/disable backtrace
+	@${REINPLACE_CMD} -e '/execinfo.h/d' ${WRKSRC}/configure \
+		${WRKSRC}/configure.in
 # Patch Makefile / Makefile.in throughout the source tree to install raddb
 # contents in ${EXAMPLESDIR}/raddb rather than the raddbdir from configure
 	@${FIND} -E ${WRKSRC} -regex '.*/Makefile(\.in)?$$' -exec \

Modified: head/net/freeradius3/Makefile
==============================================================================
--- head/net/freeradius3/Makefile	Wed Apr  2 21:21:21 2014	(r349956)
+++ head/net/freeradius3/Makefile	Wed Apr  2 22:19:50 2014	(r349957)
@@ -3,6 +3,7 @@
 
 PORTNAME=	freeradius
 DISTVERSION=	3.0.2
+PORTREVISION=	1
 CATEGORIES=	net
 MASTER_SITES=	ftp://ftp.freeradius.org/pub/freeradius/%SUBDIR%/ \
 		ftp://ftp.ntua.gr/pub/net/radius/freeradius/%SUBDIR%/ \
@@ -358,6 +359,9 @@ MAN8=		radiusd.8 radmin.8 raddebug.8 rad
 SUB_LIST+=	REQUIRE="${_REQUIRE}"
 
 post-patch:
+# never try to find execinfo.h (needed until we can enable/disable backtrace
+	@${REINPLACE_CMD} -e '/execinfo.h/d' ${WRKSRC}/configure \
+		${WRKSRC}/configure.in
 	@${REINPLACE_CMD} -Ee "s:tests/all.mk ::" ${WRKSRC}/src/all.mk
 	@${CP} ${WRKSRC}/m4/ax_with_prog.m4 ${WRKSRC}
 	@${REINPLACE_CMD} -Ee "s:^make:${GMAKE}:" \


More information about the svn-ports-all mailing list