From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:56450) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hMXpH-0006Ye-UE for guix-patches@gnu.org; Fri, 03 May 2019 09:02:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hMXpG-0000iT-R6 for guix-patches@gnu.org; Fri, 03 May 2019 09:02:07 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:34529) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hMXpG-0000iM-O7 for guix-patches@gnu.org; Fri, 03 May 2019 09:02:06 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hMXpG-0005tm-LJ for guix-patches@gnu.org; Fri, 03 May 2019 09:02:06 -0400 Subject: [bug#35545] [PATCH 09/17] gnu: Add java-openjfx-graphics. Resent-Message-ID: From: Julien Lepiller Date: Fri, 3 May 2019 15:01:26 +0200 Message-Id: <20190503130134.24788-9-julien@lepiller.eu> In-Reply-To: <20190503130134.24788-1-julien@lepiller.eu> References: <20190503145820.606f37db@sybil.lepiller.eu> <20190503130134.24788-1-julien@lepiller.eu> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 35545@debbugs.gnu.org * gnu/packages/java.scm (java-openjfx-graphics): New variable. --- gnu/packages/java.scm | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm index 9d2019ddc5..2f9b0374f8 100644 --- a/gnu/packages/java.scm +++ b/gnu/packages/java.scm @@ -2288,6 +2288,23 @@ is to produce a modern, efficient, and fully featured toolkit for developing rich client applications. This package contains base classes for the OpenJFX distribution."))) +(define-public java-openjfx-graphics + (package (inherit java-openjfx-build) + (name "java-openjfx-graphics") + (arguments + `(#:jar-name "java-openjfx-graphics.jar" + #:source-dir "modules/graphics/src/main/java" + #:tests? #f; require X + #:test-dir "modules/graphics/src/test")) + (propagated-inputs + `(("java-openjfx-base" ,java-openjfx-base) + ("java-swt" ,java-swt))) + (description "OpenJFX is a free, next generation client application +platform for desktop, mobile and embedded systems built on Java. Its goal +is to produce a modern, efficient, and fully featured toolkit for developing +rich client applications. This package contains graphics-related classes for +the OpenJFX distribution."))) + (define-public javacc-4 (package (name "javacc") -- 2.21.0