From owner-svn-ports-head@FreeBSD.ORG Sat Nov 23 18:41:41 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3ABFCEFA; Sat, 23 Nov 2013 18:41:41 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 28A262537; Sat, 23 Nov 2013 18:41:41 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rANIffq7017049; Sat, 23 Nov 2013 18:41:41 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id rANIfeT8017045; Sat, 23 Nov 2013 18:41:40 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201311231841.rANIfeT8017045@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Sat, 23 Nov 2013 18:41:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r334693 - in head: audio/gmpc-mserver multimedia/xbmc www/libmicrohttpd X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.16 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 23 Nov 2013 18:41:41 -0000 Author: sunpoet Date: Sat Nov 23 18:41:39 2013 New Revision: 334693 URL: http://svnweb.freebsd.org/changeset/ports/334693 Log: - Update to 0.9.31 - Bump PORTREVISION for www/libmicrohttpd shlib change - While I'm here: - Use GNU micro - Convert to new LIB_DEPENDS format - Convert to new options helper - Strip shared library - Sort PLIST - Support STAGEDIR PR: ports/184199 Submitted by: Hung-Yi Chen (maintainer) Modified: head/audio/gmpc-mserver/Makefile head/multimedia/xbmc/Makefile head/www/libmicrohttpd/Makefile head/www/libmicrohttpd/distinfo Modified: head/audio/gmpc-mserver/Makefile ============================================================================== --- head/audio/gmpc-mserver/Makefile Sat Nov 23 18:35:32 2013 (r334692) +++ head/audio/gmpc-mserver/Makefile Sat Nov 23 18:41:39 2013 (r334693) @@ -3,7 +3,7 @@ PORTNAME= gmpc-mserver PORTVERSION= 0.20.0 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= audio MASTER_SITES= http://download.sarine.nl/Programs/gmpc/${PORTVERSION}/ \ http://freebsd.unixfreunde.de/sources/ Modified: head/multimedia/xbmc/Makefile ============================================================================== --- head/multimedia/xbmc/Makefile Sat Nov 23 18:35:32 2013 (r334692) +++ head/multimedia/xbmc/Makefile Sat Nov 23 18:41:39 2013 (r334693) @@ -2,7 +2,7 @@ PORTNAME= xbmc DISTVERSION= 12.2 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= multimedia MASTER_SITES= http://mirrors.xbmc.org/releases/source/ Modified: head/www/libmicrohttpd/Makefile ============================================================================== --- head/www/libmicrohttpd/Makefile Sat Nov 23 18:35:32 2013 (r334692) +++ head/www/libmicrohttpd/Makefile Sat Nov 23 18:41:39 2013 (r334693) @@ -2,10 +2,9 @@ # $FreeBSD$ PORTNAME= libmicrohttpd -PORTVERSION= 0.9.27 +PORTVERSION= 0.9.31 CATEGORIES= www -MASTER_SITES= ${MASTER_SITE_GNU} -MASTER_SITE_SUBDIR= ${PORTNAME} +MASTER_SITES= GNU MAINTAINER= gaod@hychen.org COMMENT= C library for embedding HTTP server functionality @@ -14,27 +13,25 @@ LICENSE= LGPL21 OPTIONS_DEFINE= GNUTLS -NO_STAGE= yes -.include - -.if ${PORT_OPTIONS:MGNUTLS} -LIB_DEPENDS+= gcrypt:${PORTSDIR}/security/libgcrypt \ - gnutls:${PORTSDIR}/security/gnutls -CONFIGURE_ARGS+=--with-gnutls=${LOCALBASE} --enable-https -.endif - -USE_LDCONFIG= yes GNU_CONFIGURE= yes MAKE_ARGS+= pkgconfigdir=${PREFIX}/libdata/pkgconfig +USE_LDCONFIG= yes + +GNUTLS_LIB_DEPENDS= libgcrypt.so:${PORTSDIR}/security/libgcrypt \ + libgnutls.so:${PORTSDIR}/security/gnutls +GNUTLS_CONFIGURE_ARGS= --with-gnutls=${LOCALBASE} --enable-https -MAN3= libmicrohttpd.3 INFO= libmicrohttpd libmicrohttpd-tutorial -PLIST_FILES= lib/libmicrohttpd.so.27 \ +PLIST_FILES= include/microhttpd.h \ + lib/libmicrohttpd.a \ lib/libmicrohttpd.la \ lib/libmicrohttpd.so \ - lib/libmicrohttpd.a \ + lib/libmicrohttpd.so.30 \ libdata/pkgconfig/libmicrohttpd.pc \ - include/microhttpd.h + man/man3/libmicrohttpd.3.gz + +post-build: + @${STRIP_CMD} ${WRKSRC}/src/microhttpd/.libs/libmicrohttpd.so.30 .include Modified: head/www/libmicrohttpd/distinfo ============================================================================== --- head/www/libmicrohttpd/distinfo Sat Nov 23 18:35:32 2013 (r334692) +++ head/www/libmicrohttpd/distinfo Sat Nov 23 18:41:39 2013 (r334693) @@ -1,2 +1,2 @@ -SHA256 (libmicrohttpd-0.9.27.tar.gz) = d532edf64c3a9da472114c2d10fc94606e3b31f21b883ec2e796ab8478f7e9cb -SIZE (libmicrohttpd-0.9.27.tar.gz) = 879531 +SHA256 (libmicrohttpd-0.9.31.tar.gz) = cac177d1081ae23e97713972499c24e13a0fa13d112a30132a249d4055ec5d1b +SIZE (libmicrohttpd-0.9.31.tar.gz) = 1118373