From owner-freebsd-java@FreeBSD.ORG Wed Sep 21 23:02:57 2005 Return-Path: X-Original-To: java@FreeBSD.org Delivered-To: freebsd-java@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 26D8216A420; Wed, 21 Sep 2005 23:02:57 +0000 (GMT) (envelope-from stoerte@dreamwarrior.net) Received: from moutng.kundenserver.de (moutng.kundenserver.de [212.227.126.177]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8FE2A43D46; Wed, 21 Sep 2005 23:02:56 +0000 (GMT) (envelope-from stoerte@dreamwarrior.net) Received: from reverse-82-141-58-1.dialin.kamp-dsl.de [82.141.58.1] (helo=sisyphos.foobar.ath.cx) by mrelayeu.kundenserver.de with ESMTP (Nemesis), id 0MKwtQ-1EIDc63MIw-000758; Thu, 22 Sep 2005 01:02:54 +0200 Received: from stoerte by sisyphos.foobar.ath.cx with local (Exim 4.52 (FreeBSD)) id 1EIDc6-0003no-6a; Thu, 22 Sep 2005 01:02:54 +0200 To: FreeBSD-gnats-submit@freebsd.org From: Frank Ruell X-send-pr-version: 3.113 X-GNATS-Notify: Message-Id: Date: Thu, 22 Sep 2005 01:02:54 +0200 X-Provags-ID: kundenserver.de abuse@kundenserver.de login:97c0264cb82c2bc8c92e9f809e6eb40d Cc: java@FreeBSD.org Subject: [patch] java/linux-sun-jdk15 - unpack forgotten deploy.jar X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Frank Ruell List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Sep 2005 23:02:57 -0000 >Submitter-Id: current-users >Originator: Frank Ruell >Organization: >Confidential: no >Synopsis: [patch] java/linux-sun-jdk15 - unpack forgotten deploy.jar >Severity: non-critical >Priority: low >Category: ports >Class: update >Release: FreeBSD 6.0-BETA4 i386 >Environment: System: FreeBSD sisyphos.foobar.ath.cx 6.0-BETA4 FreeBSD 6.0-BETA4 #0: Wed Sep 7 21:29:03 CEST 2005 root@sisyphos.foobar.ath.cx:/usr/obj/usr/src/sys/SISYPHOS i386 >Description: There's a "jre/lib/deploy.pack", which should have gotten unpacked, too. Haven't changed the port version, cause the port is ATM forbidden anyway. [FWIW: the included plugin works fine with linux-opera.] >Fix: --- java_linux_jdk15.patch begins here --- --- Makefile~ Thu Sep 22 00:43:02 2005 +++ Makefile Thu Sep 22 00:43:02 2005 @@ -38,7 +38,7 @@ DOWNLOAD_URL?= http://java.sun.com/j2se/1.5.0/download.jsp PORTTITLE= Java 2 Development Kit ${DL_JDK_VERSION} for Linux APP_HOME= ${PREFIX}/${PKGNAMEPREFIX}${PORTNAME}${JDK_VERSION} -PACKED_JARS= lib/tools.jar jre/lib/rt.jar jre/lib/jsse.jar jre/lib/charsets.jar jre/lib/ext/localedata.jar jre/lib/plugin.jar jre/javaws/javaws.jar +PACKED_JARS= lib/tools.jar jre/lib/rt.jar jre/lib/jsse.jar jre/lib/charsets.jar jre/lib/deploy.jar jre/lib/ext/localedata.jar jre/lib/plugin.jar jre/javaws/javaws.jar UNPACK_CMD= ${APP_HOME}/bin/unpack200 .include --- java_linux_jdk15.patch ends here ---