From owner-svn-ports-head@freebsd.org Thu Oct 1 18:20:04 2015 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5740FA0C4B1; Thu, 1 Oct 2015 18:20:04 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.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 48AFA181A; Thu, 1 Oct 2015 18:20:04 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t91IK45Q027492; Thu, 1 Oct 2015 18:20:04 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t91IK44x027491; Thu, 1 Oct 2015 18:20:04 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201510011820.t91IK44x027491@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Thu, 1 Oct 2015 18:20:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398376 - head/devel/luajava/files 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.20 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: Thu, 01 Oct 2015 18:20:04 -0000 Author: swills Date: Thu Oct 1 18:20:03 2015 New Revision: 398376 URL: https://svnweb.freebsd.org/changeset/ports/398376 Log: devel/luajava: fix build with OpenJDK8 PR: 203061 Submitted by: glewis Approved by: maintainer timeout (sunghyuk@gmail.com, >2 weeks) Added: head/devel/luajava/files/patch-Makefile (contents, props changed) Added: head/devel/luajava/files/patch-Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/luajava/files/patch-Makefile Thu Oct 1 18:20:03 2015 (r398376) @@ -0,0 +1,18 @@ +--- Makefile.orig 2015-09-10 23:58:50.499075000 -0700 ++++ Makefile 2015-09-11 00:01:10.958396000 -0700 +@@ -55,7 +55,14 @@ + # Create the API Documentation + # + apidoc: +- $(JDK)/bin/javadoc -public -classpath src/java/ -quiet -d "doc/us/API" $(DOC_CLASSES) ++ case $(JDK) in \ ++ *openjdk8*) \ ++ $(JDK)/bin/javadoc -Xdoclint:none -public -classpath src/java/ -quiet -d "doc/us/API" $(DOC_CLASSES) \ ++ ;; \ ++ *) \ ++ $(JDK)/bin/javadoc -public -classpath src/java/ -quiet -d "doc/us/API" $(DOC_CLASSES) \ ++ ;; \ ++ esac + + # + # Build .c files.