From owner-svn-ports-all@FreeBSD.ORG Fri Jun 6 00:27:32 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 DB6F0DE6; Fri, 6 Jun 2014 00:27:32 +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 C87362C32; Fri, 6 Jun 2014 00:27:32 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s560RWTr078454; Fri, 6 Jun 2014 00:27:32 GMT (envelope-from jkim@svn.freebsd.org) Received: (from jkim@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s560RWPv078453; Fri, 6 Jun 2014 00:27:32 GMT (envelope-from jkim@svn.freebsd.org) Message-Id: <201406060027.s560RWPv078453@svn.freebsd.org> From: Jung-uk Kim Date: Fri, 6 Jun 2014 00:27:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r356725 - head/www/jericho-html 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: Fri, 06 Jun 2014 00:27:32 -0000 Author: jkim Date: Fri Jun 6 00:27:32 2014 New Revision: 356725 URL: http://svnweb.freebsd.org/changeset/ports/356725 QAT: https://qat.redports.org/buildarchive/r356725/ Log: Fix build with JDK7 and later. Reported by: exp-run (PR190511) Modified: head/www/jericho-html/Makefile Modified: head/www/jericho-html/Makefile ============================================================================== --- head/www/jericho-html/Makefile Fri Jun 6 00:17:52 2014 (r356724) +++ head/www/jericho-html/Makefile Fri Jun 6 00:27:32 2014 (r356725) @@ -10,7 +10,7 @@ MAINTAINER= saper@saper.info COMMENT= Java library to analyse and manipulate HTML USES= zip -USE_JAVA= 1.6+ +USE_JAVA= yes INTERFACES:= "compile-time-dependencies/slf4j-api-1.6.1.jar:\ compile-time-dependencies/commons-logging-api-1.1.1.jar:\ @@ -20,7 +20,8 @@ PORTDOCS= * PLIST_FILES+= %%JAVAJARDIR%%/${PORTNAME}.jar do-build: - (cd ${WRKSRC} && ${RM} -rf classes/* && ${JAVAC} \ + (cd ${WRKSRC} && ${RM} -rf classes/* && ${SETENV} \ + LANG=en_US.ISO8859-1 ${JAVAC} \ -classpath ${INTERFACES:S, ,,g} \ -d classes src/java/net/htmlparser/jericho/*.java \ src/java/net/htmlparser/jericho/nodoc/*.java)