From owner-freebsd-java@FreeBSD.ORG Thu Nov 20 02:42:14 2014 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id ADAFE4B6 for ; Thu, 20 Nov 2014 02:42:14 +0000 (UTC) Received: from forward1m.mail.yandex.net (forward1m.mail.yandex.net [IPv6:2a02:6b8:0:2519::3:10]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "forwards.mail.yandex.net", Issuer "Certum Level IV CA" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5EFD7C9A for ; Thu, 20 Nov 2014 02:42:14 +0000 (UTC) Received: from web12m.yandex.ru (web12m.yandex.ru [37.140.138.103]) by forward1m.mail.yandex.net (Yandex) with ESMTP id 621BE1220202 for ; Thu, 20 Nov 2014 05:42:00 +0300 (MSK) Received: from 127.0.0.1 (localhost [127.0.0.1]) by web12m.yandex.ru (Yandex) with ESMTP id EECD01F21AC5; Thu, 20 Nov 2014 05:41:59 +0300 (MSK) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.com; s=mail; t=1416451320; bh=zxM5G5AnEwDX8/EC9jCVxi+AOz9CfU0TIH+R5FSd3eQ=; h=From:To:In-Reply-To:References:Subject:Date; b=hDhraF0B33jMixWqJvnpoePyZRogEWK7Sb/4qKkBVE3b3KXXAU2+KdMoC8CPYvGt3 y0KripfcIvMhje7gTPFHS+SmJYLcF2ZXnWH8l4WxBjesDkkxXJVlW3DhND1weBpxT8 Yuz3Tsb8ySTY/7EM5DWiaNpDx7qIkSD6+5UsMHYI= Received: from [190.113.215.103] ([190.113.215.103]) by web12m.yandex.ru with HTTP; Thu, 20 Nov 2014 05:41:59 +0300 From: Boniek San Envelope-From: desshi@yandex.ru To: "freebsd-java@freebsd.org" In-Reply-To: References: Subject: Re: freebsd-java Digest, Vol 595, Issue 2 MIME-Version: 1.0 Message-Id: <5690321416451319@web12m.yandex.ru> X-Mailer: Yamail [ http://yandex.ru ] 5.0 Date: Wed, 19 Nov 2014 21:41:59 -0500 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=koi8-r X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Nov 2014 02:42:14 -0000 install order succeful openJDK8 #cd /usr/ports/java/openjdk7 && make install clean #cd /usr/ports/java/openjdk8 && make install clean or: #pkg_install openjdk7 #pkg_install openjdk8 or in freeBSD-10 #pkg install openjdk7 #pkg install openjdk8 javaFX not support for Nvidia GT520MX or system hybrid battery (ACPI). 19.11.2014, 07:00, "freebsd-java-request@freebsd.org" : > Send freebsd-java mailing list submissions to > ššššššššfreebsd-java@freebsd.org > > To subscribe or unsubscribe via the World Wide Web, visit > ššššššššhttp://lists.freebsd.org/mailman/listinfo/freebsd-java > or, via email, send a message with subject or body 'help' to > ššššššššfreebsd-java-request@freebsd.org > > You can reach the person managing the list at > ššššššššfreebsd-java-owner@freebsd.org > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of freebsd-java digest..." > > Today's Topics: > > ššš1. opendjk-8 fails to extract (Mikhail T.) > > ---------------------------------------------------------------------- > > Message: 1 > Date: Tue, 18 Nov 2014 23:14:31 -0500 (EST) > From: "Mikhail T." > To: java@FreeBSD.org > Subject: opendjk-8 fails to extract > Message-ID: <201411190414.sAJ4EViH002181@narawntapu.narawntapu> > Content-Type: text/plain; charset=us-ascii > > Hello! > > I wanted to build java/opendjk8, but it kept failing to extract: unzip > was complaining about "invalid archive". > > That's probably because the port uses both .zip and .tar.gz files > -- and BOTH are fed to unzip. This breaks things -- at least, when > archivers/unzip is installed (and used) instead of the /usr/bin/unzip. > > Instead of guessing that, the below patch changes the Makefile so that > tar(1) is used for both files instead. Our tar will eat anything today. > > Yours, > > šššššššš-mi > > Index: Makefile > =================================================================== > --- Makefile (revision 372759) > +++ Makefile (working copy) > @@ -9,7 +9,7 @@ > šššššššššššššššššLOCAL/jkim:jdk,jtreg > šPKGNAMESUFFIX?= ${JDK_MAJOR_VERSION} > šDISTNAME= ${PORTNAME}-${JDK_MAJOR_VERSION}-src-b${DIST_BUILD_NUMBER}-03_mar_2014 > -DISTFILES= ${DISTNAME}${EXTRACT_SUFX}:jdk > +DISTFILES= ${DISTNAME}.zip:jdk > > šMAINTAINER= java@FreeBSD.org > šCOMMENT?= Java Development Kit ${JDK_MAJOR_VERSION} > @@ -26,7 +26,7 @@ > šRUN_DEPENDS= javavm:${PORTSDIR}/java/javavmwrapper \ > ššššššššššššššššš${LOCALBASE}/lib/X11/fonts/dejavu:${PORTSDIR}/x11-fonts/dejavu > > -USES= compiler:features dos2unix gmake iconv pkgconfig shebangfix zip > +USES= compiler:features dos2unix gmake iconv pkgconfig shebangfix > šUSE_AUTOTOOLS= autoconf > šUSE_XORG= x11 xext xi xrender xt xtst > > ------------------------------ > > Subject: Digest Footer > > _______________________________________________ > freebsd-java@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-java > To unsubscribe, send any mail to "freebsd-java-unsubscribe@freebsd.org" > > ------------------------------ > > End of freebsd-java Digest, Vol 595, Issue 2 > ******************************************** -- compartir es vivir, vive el verde y siente la libertad. free software...