From owner-svn-ports-all@FreeBSD.ORG Sat Jun 7 09:25:59 2014 Return-Path: Delivered-To: svn-ports-all@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 875DBD2; Sat, 7 Jun 2014 09:25:59 +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)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 746562D4E; Sat, 7 Jun 2014 09:25:59 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s579Px5a010499; Sat, 7 Jun 2014 09:25:59 GMT (envelope-from danfe@svn.freebsd.org) Received: (from danfe@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s579PxOf010498; Sat, 7 Jun 2014 09:25:59 GMT (envelope-from danfe@svn.freebsd.org) Message-Id: <201406070925.s579PxOf010498@svn.freebsd.org> From: Alexey Dokuchaev Date: Sat, 7 Jun 2014 09:25:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r356887 - head/devel/poco X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 Jun 2014 09:25:59 -0000 Author: danfe Date: Sat Jun 7 09:25:58 2014 New Revision: 356887 URL: http://svnweb.freebsd.org/changeset/ports/356887 QAT: https://qat.redports.org/buildarchive/r356887/ Log: Stagify; cleanup Makefile; define LICENSE (BSL); utilize OPTIONS helpers. NB: New version 1.4.6p4 is available Modified: head/devel/poco/Makefile Modified: head/devel/poco/Makefile ============================================================================== --- head/devel/poco/Makefile Sat Jun 7 08:43:31 2014 (r356886) +++ head/devel/poco/Makefile Sat Jun 7 09:25:58 2014 (r356887) @@ -1,7 +1,8 @@ -# Created by: wes@FreeBSD.org +# Created by: Wes Peters # $FreeBSD$ PORTNAME= poco +# New version 1.4.6p4 is available; please use DISTVERSION upon updating PORTVERSION= 1.4.3 CATEGORIES= devel net MASTER_SITES= SF/${PORTNAME}/sources/${PORTNAME}-${PORTVERSION} @@ -10,30 +11,22 @@ DISTNAME= ${PORTNAME}-${PORTVERSION}p1 MAINTAINER= wes@FreeBSD.org COMMENT= C++ Portable Components library +LICENSE= BSL + CONFLICTS= poco-ssl-[0-9]* +USES= gmake tar:bzip2 +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --config=FreeBSD +USE_LDCONFIG= yes + OPTIONS_DEFINE= TEST SAMPLES SAMPLES_DESC= Build sample programs -CONFIGURE_ARGS= --config=FreeBSD -USES= gmake - -NO_STAGE= yes -.include - -.if ! ${PORT_OPTIONS:MTEST} -CONFIGURE_ARGS+= --no-tests -.endif - -.if ! ${PORT_OPTIONS:MSAMPLES} -CONFIGURE_ARGS+= --no-samples -.endif - -GNU_CONFIGURE= yes -USE_BZIP2= yes -USE_LDCONFIG= yes +TEST_CONFIGURE_OFF= --no-tests +SAMPLES_CONFIGURE_OFF= --no-samples post-patch: - @${REINPLACE_CMD} -e "s/ =/ ?=/g" ${WRKSRC}/build/config/FreeBSD + @${REINPLACE_CMD} -e 's/ =/ ?=/' ${WRKSRC}/build/config/FreeBSD .include