From owner-svn-ports-all@FreeBSD.ORG Fri Jan 17 21:55:19 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4623C17E; Fri, 17 Jan 2014 21:55:19 +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 1786C1F31; Fri, 17 Jan 2014 21:55:19 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0HLtIgo001686; Fri, 17 Jan 2014 21:55:18 GMT (envelope-from rakuco@svn.freebsd.org) Received: (from rakuco@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0HLtIdW001684; Fri, 17 Jan 2014 21:55:18 GMT (envelope-from rakuco@svn.freebsd.org) Message-Id: <201401172155.s0HLtIdW001684@svn.freebsd.org> From: Raphael Kubo da Costa Date: Fri, 17 Jan 2014 21:55:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r340123 - in branches/2014Q1/textproc/p5-SGML-Parser-OpenSP: . files X-SVN-Group: ports-branches 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.17 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: Fri, 17 Jan 2014 21:55:19 -0000 Author: rakuco Date: Fri Jan 17 21:55:18 2014 New Revision: 340123 URL: http://svnweb.freebsd.org/changeset/ports/340123 QAT: https://qat.redports.org/buildarchive/r340123/ Log: MFH: r340100 - Fix the build when GCC is not present. [1] - Set LICENSE. - USE_DOS2UNIX -> USES=dos2unix PR: ports/183267 [1] Submitted by: Yasuhiro KIMURA Approved by: Naram Qashat (maintainer) Approved by: portmgr (erwin, antoine) Modified: branches/2014Q1/textproc/p5-SGML-Parser-OpenSP/Makefile branches/2014Q1/textproc/p5-SGML-Parser-OpenSP/files/patch-Makefile.PL Directory Properties: branches/2014Q1/ (props changed) Modified: branches/2014Q1/textproc/p5-SGML-Parser-OpenSP/Makefile ============================================================================== --- branches/2014Q1/textproc/p5-SGML-Parser-OpenSP/Makefile Fri Jan 17 21:53:13 2014 (r340122) +++ branches/2014Q1/textproc/p5-SGML-Parser-OpenSP/Makefile Fri Jan 17 21:55:18 2014 (r340123) @@ -11,13 +11,17 @@ PKGNAMEPREFIX= p5- MAINTAINER= cyberbotx@cyberbotx.com COMMENT= Parse SGML documents using OpenSP +# The port's README says the port "is licensed under the same terms as Perl +# itself". +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + BUILD_DEPENDS= onsgmls:${PORTSDIR}/textproc/opensp \ p5-Class-Accessor>=0:${PORTSDIR}/devel/p5-Class-Accessor \ p5-Test-Exception>=0:${PORTSDIR}/devel/p5-Test-Exception RUN_DEPENDS:= ${BUILD_DEPENDS} -USE_DOS2UNIX= yes -USES= perl5 +USES= dos2unix perl5 USE_PERL5= configure CC= ${CXX} CONFIGURE_ARGS+="INC=-I${LOCALBASE}/include" Modified: branches/2014Q1/textproc/p5-SGML-Parser-OpenSP/files/patch-Makefile.PL ============================================================================== --- branches/2014Q1/textproc/p5-SGML-Parser-OpenSP/files/patch-Makefile.PL Fri Jan 17 21:53:13 2014 (r340122) +++ branches/2014Q1/textproc/p5-SGML-Parser-OpenSP/files/patch-Makefile.PL Fri Jan 17 21:55:18 2014 (r340123) @@ -1,14 +1,17 @@ ---- Makefile.PL.orig 2010-02-07 23:33:39.000000000 +0900 -+++ Makefile.PL 2010-02-07 23:34:03.000000000 +0900 -@@ -15,7 +15,7 @@ +--- Makefile.PL.orig 2013-10-24 16:00:49.000000000 +0900 ++++ Makefile.PL 2013-10-24 16:08:32.000000000 +0900 +@@ -13,9 +13,9 @@ + else + { # assume some compatible Linux - $options{LD} = "g++"; - $options{CC} = "g++"; +- $options{LD} = "g++"; +- $options{CC} = "g++"; - $options{LIBS} = "-lstdc++ -losp"; ++ $options{LD} = "c++"; ++ $options{CC} = "c++"; + $options{LIBS} = "-L%%LOCALBASE%%/lib -lstdc++ -losp"; } - - WriteMakefile( + WriteMakefile( @@ -26,6 +26,10 @@ Test::Exception => 0, File::Temp => 0,