Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 1 Sep 2014 10:25:48 +0000 (UTC)
From:      Tijl Coosemans <tijl@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r366859 - in head: audio/gmpc-mserver multimedia/plexhometheater multimedia/xbmc net-p2p/gnunet www/libmicrohttpd www/libmicrohttpd/files
Message-ID:  <201409011025.s81APm1T044992@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: tijl
Date: Mon Sep  1 10:25:48 2014
New Revision: 366859
URL: http://svnweb.freebsd.org/changeset/ports/366859
QAT: https://qat.redports.org/buildarchive/r366859/

Log:
  www/libmicrohttpd:
  - Update to version 0.9.37
  - Add USES=libtool and bump dependent ports
  - Add INSTALL_TARGET=install-strip
  - Use option helpers
  - Fix package listing when recent OpenSSL is available
  
  Approved by:	portmgr (implicit, bump unstaged port)

Deleted:
  head/www/libmicrohttpd/files/
Modified:
  head/audio/gmpc-mserver/Makefile
  head/multimedia/plexhometheater/Makefile
  head/multimedia/xbmc/Makefile
  head/net-p2p/gnunet/Makefile
  head/www/libmicrohttpd/Makefile
  head/www/libmicrohttpd/distinfo

Modified: head/audio/gmpc-mserver/Makefile
==============================================================================
--- head/audio/gmpc-mserver/Makefile	Mon Sep  1 10:23:56 2014	(r366858)
+++ head/audio/gmpc-mserver/Makefile	Mon Sep  1 10:25:48 2014	(r366859)
@@ -3,7 +3,7 @@
 
 PORTNAME=	gmpc-mserver
 PORTVERSION=	0.20.0
-PORTREVISION=	11
+PORTREVISION=	12
 CATEGORIES=	audio
 MASTER_SITES=	http://download.sarine.nl/Programs/gmpc/${PORTVERSION}/ \
 		http://freebsd.unixfreunde.de/sources/

Modified: head/multimedia/plexhometheater/Makefile
==============================================================================
--- head/multimedia/plexhometheater/Makefile	Mon Sep  1 10:23:56 2014	(r366858)
+++ head/multimedia/plexhometheater/Makefile	Mon Sep  1 10:25:48 2014	(r366859)
@@ -2,7 +2,7 @@
 
 PORTNAME=	plexhometheater
 PORTVERSION=	1.2.1
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	multimedia
 
 MAINTAINER=	woodsb02@gmail.com

Modified: head/multimedia/xbmc/Makefile
==============================================================================
--- head/multimedia/xbmc/Makefile	Mon Sep  1 10:23:56 2014	(r366858)
+++ head/multimedia/xbmc/Makefile	Mon Sep  1 10:25:48 2014	(r366859)
@@ -2,7 +2,7 @@
 
 PORTNAME=	xbmc
 DISTVERSION=	13.2
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	multimedia
 MASTER_SITES=	http://mirrors.xbmc.org/releases/source/
 

Modified: head/net-p2p/gnunet/Makefile
==============================================================================
--- head/net-p2p/gnunet/Makefile	Mon Sep  1 10:23:56 2014	(r366858)
+++ head/net-p2p/gnunet/Makefile	Mon Sep  1 10:25:48 2014	(r366859)
@@ -3,7 +3,7 @@
 
 PORTNAME=	gnunet
 DISTVERSION=	0.9.3
-PORTREVISION=	10
+PORTREVISION=	11
 CATEGORIES=	net-p2p ipv6 security
 MASTER_SITES=	GNU
 

Modified: head/www/libmicrohttpd/Makefile
==============================================================================
--- head/www/libmicrohttpd/Makefile	Mon Sep  1 10:23:56 2014	(r366858)
+++ head/www/libmicrohttpd/Makefile	Mon Sep  1 10:25:48 2014	(r366859)
@@ -2,8 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	libmicrohttpd
-PORTVERSION=	0.9.33
-PORTREVISION=	2
+PORTVERSION=	0.9.37
 CATEGORIES=	www
 MASTER_SITES=	GNU
 
@@ -11,35 +10,44 @@ MAINTAINER=	gaod@hychen.org
 COMMENT=	C library for embedding HTTP server functionality
 
 LICENSE=	LGPL21
-
-OPTIONS_DEFINE=	GNUTLS
+LICENSE_FILE=	${WRKSRC}/COPYING
 
 GNU_CONFIGURE=	yes
-MAKE_ARGS+=	pkgconfigdir=${PREFIX}/libdata/pkgconfig
+INSTALL_TARGET=	install-strip
+USES=		libtool pathfix
 USE_LDCONFIG=	yes
+USE_OPENSSL=	yes
 
-.include <bsd.port.options.mk>
+OPTIONS_DEFINE=	GNUTLS
 
-.if ${PORT_OPTIONS:MGNUTLS}
-LIB_DEPENDS+=	libgcrypt.so:${PORTSDIR}/security/libgcrypt \
+GNUTLS_LIB_DEPENDS=	libgcrypt.so:${PORTSDIR}/security/libgcrypt \
 			libgnutls.so:${PORTSDIR}/security/gnutls
-CONFIGURE_ARGS+=	--with-libgcrypt-prefix=${LOCALBASE} --with-gnutls=${LOCALBASE} --enable-https=yes
-.endif
+GNUTLS_CONFIGURE_WITH=	libgcrypt-prefix=${LOCALBASE} gnutls=${LOCALBASE}
+GNUTLS_CONFIGURE_ENABLE=https
 
 INFO=		libmicrohttpd libmicrohttpd-tutorial
 
 PLIST_FILES=	include/microhttpd.h \
 		lib/libmicrohttpd.a \
-		lib/libmicrohttpd.la \
 		lib/libmicrohttpd.so \
-		lib/libmicrohttpd.so.32 \
+		lib/libmicrohttpd.so.10 \
+		lib/libmicrohttpd.so.10.27.0 \
 		libdata/pkgconfig/libmicrohttpd.pc \
+		libdata/pkgconfig/libmicrospdy.pc \
 		man/man3/libmicrohttpd.3.gz
 
-post-patch:
-	@${REINPLACE_CMD} -e 's|-ldl|-lc|' ${WRKSRC}/src/examples/Makefile.in
+.include <bsd.port.pre.mk>
+
+.if !(defined(WITH_OPENSSL_BASE) && ${OPSYS} == FreeBSD && ${OSVERSION} < 1000015)
+PLIST_FILES+=	include/microspdy.h \
+		lib/libmicrospdy.a \
+		lib/libmicrospdy.so \
+		lib/libmicrospdy.so.0 \
+		lib/libmicrospdy.so.0.0.0
+.endif
 
-post-build:
-	@${STRIP_CMD} ${WRKSRC}/src/microhttpd/.libs/libmicrohttpd.so.32
+post-patch:
+	@${REINPLACE_CMD} -e 's|bin_PROGRAMS =|noinst_PROGRAMS +=|' \
+		${WRKSRC}/src/examples/Makefile.in
 
-.include <bsd.port.mk>
+.include <bsd.port.post.mk>

Modified: head/www/libmicrohttpd/distinfo
==============================================================================
--- head/www/libmicrohttpd/distinfo	Mon Sep  1 10:23:56 2014	(r366858)
+++ head/www/libmicrohttpd/distinfo	Mon Sep  1 10:25:48 2014	(r366859)
@@ -1,2 +1,2 @@
-SHA256 (libmicrohttpd-0.9.33.tar.gz) = d9587e8497548f820650cd607daf3615ea3272435779378983032c570f1cd559
-SIZE (libmicrohttpd-0.9.33.tar.gz) = 1104292
+SHA256 (libmicrohttpd-0.9.37.tar.gz) = a78cbcc050fb50f4ef4cf02709a3f8dd498e9230271b445fc3dbec4132b47cdc
+SIZE (libmicrohttpd-0.9.37.tar.gz) = 1168410



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201409011025.s81APm1T044992>