From owner-freebsd-java@FreeBSD.ORG Sun May 15 09:31:39 2011 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A9875106566C for ; Sun, 15 May 2011 09:31:39 +0000 (UTC) (envelope-from guru@unixarea.de) Received: from ms16-1.1blu.de (ms16-1.1blu.de [89.202.0.34]) by mx1.freebsd.org (Postfix) with ESMTP id 69B038FC08 for ; Sun, 15 May 2011 09:31:39 +0000 (UTC) Received: from [93.104.73.151] (helo=localhost.my.domain) by ms16-1.1blu.de with esmtpsa (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.69) (envelope-from ) id 1QLWtM-0001ZP-70 for freebsd-java@freebsd.org; Sun, 15 May 2011 10:41:36 +0200 Received: from localhost.my.domain (localhost [127.0.0.1]) by localhost.my.domain (8.14.4/8.14.3) with ESMTP id p4F8fZVo006067 for ; Sun, 15 May 2011 10:41:35 +0200 (CEST) (envelope-from guru@unixarea.de) Received: (from guru@localhost) by localhost.my.domain (8.14.4/8.14.3/Submit) id p4F8fY8R006066 for freebsd-java@freebsd.org; Sun, 15 May 2011 10:41:34 +0200 (CEST) (envelope-from guru@unixarea.de) X-Authentication-Warning: localhost.my.domain: guru set sender to guru@unixarea.de using -f Date: Sun, 15 May 2011 10:41:34 +0200 From: Matthias Apitz To: freebsd-java@freebsd.org Message-ID: <20110515084133.GA6052@tinyCurrent> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline X-Operating-System: FreeBSD 8.0-CURRENT (i386) User-Agent: Mutt/1.5.21 (2010-09-15) X-Con-Id: 51246 X-Originating-IP: 93.104.73.151 Subject: printing Unicode from Java with POS printers (TM-T88IVM) X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Matthias Apitz List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 May 2011 09:31:39 -0000 Hello, We do printing from our Java apps to POS printers (like the Epson TM-T88IV) in ISO 8859-1 (Latin1) charset. Is there anybody out here to share some information or pointers to print UTF-8 code to the multilingual model TM-T88IVM (or other POS printers), especially which fonts must be used, etc. Thanks in advance matthias -- Matthias Apitz t +49-89-61308 351 - f +49-89-61308 399 - m +49-170-4527211 e - w http://www.unixarea.de/ From owner-freebsd-java@FreeBSD.ORG Mon May 16 07:31:48 2011 Return-Path: Delivered-To: java@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5D5FF106564A; Mon, 16 May 2011 07:31:48 +0000 (UTC) (envelope-from avg@FreeBSD.org) Received: from citadel.icyb.net.ua (citadel.icyb.net.ua [212.40.38.140]) by mx1.freebsd.org (Postfix) with ESMTP id 759E78FC0A; Mon, 16 May 2011 07:31:46 +0000 (UTC) Received: from porto.topspin.kiev.ua (porto-e.starpoint.kiev.ua [212.40.38.100]) by citadel.icyb.net.ua (8.8.8p3/ICyb-2.3exp) with ESMTP id KAA24049; Mon, 16 May 2011 10:18:27 +0300 (EEST) (envelope-from avg@FreeBSD.org) Received: from localhost.topspin.kiev.ua ([127.0.0.1]) by porto.topspin.kiev.ua with esmtp (Exim 4.34 (FreeBSD)) id 1QLs4R-0003RG-4o; Mon, 16 May 2011 10:18:27 +0300 Message-ID: <4DD0CFC2.3080804@FreeBSD.org> Date: Mon, 16 May 2011 10:18:26 +0300 From: Andriy Gapon User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; en-US; rv:1.9.2.17) Gecko/20110503 Lightning/1.0b2 Thunderbird/3.1.10 MIME-Version: 1.0 To: java@FreeBSD.org X-Enigmail-Version: 1.1.2 Content-Type: text/plain; charset=X-VIET-VPS Content-Transfer-Encoding: 7bit Cc: Jung-uk Kim Subject: icedtea-web plugin as a separate port X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 May 2011 07:31:48 -0000 I wonder why we build icedtea-web plugin as a part of java/openjdk* the way we do now. I think that perhaps it would be nicer to build it a separate port. post-build WITH_WEB looks really non-transparent. Here's what I did to build the latest version icedtea-web from hg: - hg clone http://icedtea.classpath.org/hg/icedtea-web - env INSTALL=ginstall MAKE=gmake ./configure --with-jdk-home=/usr/local/openjdk6 --prefix=/usr/local/openjdk6/jre --with-rhino=/usr/local/share/java/rhino/rhino.jar --with-junit=/usr/local/share/java/classes/junit.jar [junit, rhino (lang/rhino) and openjdk ports have to be installed obviously] - gmake - gmake install It worked/works for me. P.S. I think that rhino port should install its jar into ${PREFIX}/share/java/classes as other ports do. -- Andriy Gapon From owner-freebsd-java@FreeBSD.ORG Mon May 16 11:07:08 2011 Return-Path: Delivered-To: freebsd-java@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B035B106566B for ; Mon, 16 May 2011 11:07:08 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 83E108FC14 for ; Mon, 16 May 2011 11:07:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p4GB78qF071262 for ; Mon, 16 May 2011 11:07:08 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p4GB77DY071260 for freebsd-java@FreeBSD.org; Mon, 16 May 2011 11:07:07 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 16 May 2011 11:07:07 GMT Message-Id: <201105161107.p4GB77DY071260@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: freebsd-java@FreeBSD.org Cc: Subject: Current problem reports assigned to freebsd-java@FreeBSD.org X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 May 2011 11:07:08 -0000 Note: to view an individual PR, use: http://www.freebsd.org/cgi/query-pr.cgi?pr=(number). The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/156674 java [PATCH] java/openjdk6: make x11-fonts/dejavu a build d o ports/156319 java [patch] java/openjdk6 does not compile with previous l o ports/155967 java [bsd.java.mk] [patch] javavm wrapper insists on diablo o ports/155657 java java/openjdk6: missing symlink for include/freebsd/* o java/155107 java [patch] port java/diablo-jdk16 small cosmetic fix for o ports/154884 java java/openjdk6: Every NetBeans version on FreeBSD 8.1 c o ports/151923 java [patch] java/openjdk6: free and native openjdk bootstr o ports/151042 java [patch] java/openjdk6 Respect CC o ports/150142 java Not installed java/openjdk6 on file system zfs /usr/lo o java/147512 java Crash of RXTX-2.1-7 on AMD64 system o java/138729 java java/jdk16: setting 'export AWT_TOOLKIT=MToolkit' caus o java/138728 java java/jdk16: SIGSEGV in java runtime o java/128948 java java/jdk16 built from source can't bind a socket, but o java/128809 java JVM aborted when GNU RXTX write to serial port. o java/123555 java linux-sun-jdk15, linux-sun-jdk16 produce a coredump o java/122513 java native JDKs unbuildable with Linux ones f java/121692 java java/jdk16: Java 1.5 1.5.0.14p8 crashes in RMI TCP Con o ports/120372 java java/linux-sun-jdk16: linux-sun-jre1.6.0 plugin doesn' o java/120146 java java/jdk15: netbeans 6.0 causes java core dump on amd6 o ports/119732 java java/linux-sun-jre16: linux-sun-jre16 plugin doesn't w o java/119063 java An unexpected error has been detected by Java Runtime o java/118956 java eclipse and netbeans break on diablo-jdk15 o java/116667 java linux-sun-javac1.4 hangs on SMP o ports/116082 java java/linux-sun-jdk16 jconsole is unable to connect to o java/114644 java tomcat goes out of PermSpace, jvm crashes o ports/113751 java java/linux-sun-jdk15: linux-sun-jdk-1.5.0.12,2 - java f ports/113467 java Multiple "missing return value" errors building JDK on f java/112595 java Java appletviewer frequently hangs (kse_release loop) s java/62837 java linux-sun-jdk14 executables hang with COMPAT_LINUX in 29 problems total. From owner-freebsd-java@FreeBSD.ORG Mon May 16 15:29:25 2011 Return-Path: Delivered-To: java@freebsd.org Received: from [127.0.0.1] (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by hub.freebsd.org (Postfix) with ESMTP id E5BA3106564A; Mon, 16 May 2011 15:29:24 +0000 (UTC) (envelope-from jkim@FreeBSD.org) From: Jung-uk Kim To: Andriy Gapon Date: Mon, 16 May 2011 11:29:05 -0400 User-Agent: KMail/1.6.2 References: <4DD0CFC2.3080804@FreeBSD.org> In-Reply-To: <4DD0CFC2.3080804@FreeBSD.org> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <201105161129.09417.jkim@FreeBSD.org> Cc: java@freebsd.org Subject: Re: icedtea-web plugin as a separate port X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 May 2011 15:29:25 -0000 On Monday 16 May 2011 03:18 am, Andriy Gapon wrote: > I wonder why we build icedtea-web plugin as a part of java/openjdk* > the way we do now. I think that perhaps it would be nicer to build > it a separate port. post-build WITH_WEB looks really > non-transparent. That's because it was not possible in the past, i.e., IcedTea-Web heavily relied on IcedTea. The situation will improve when IcedTea-Web 1.1 is released. Please see below. > Here's what I did to build the latest version icedtea-web from hg: > - hg clone http://icedtea.classpath.org/hg/icedtea-web > - env INSTALL=ginstall MAKE=gmake ./configure > --with-jdk-home=/usr/local/openjdk6 > --prefix=/usr/local/openjdk6/jre > --with-rhino=/usr/local/share/java/rhino/rhino.jar > --with-junit=/usr/local/share/java/classes/junit.jar > [junit, rhino (lang/rhino) and openjdk ports have to be installed > obviously] - gmake > - gmake install > > It worked/works for me. The tip is IcedTea-Web 1.1-ish now, which is already behind its release schedule, BTW. ;-) Although the IcedTea dependency problem was improved, there still exists one IcedTea-specific patch. This class is tested by configure script and it fails if OpenJDK6 wasn't patched first: http://icedtea.classpath.org/hg/icedtea-web/file/0e6b12424423/configure.ac#l80 http://icedtea.classpath.org/hg/icedtea-web/file/0e6b12424423/acinclude.m4#l682 Jung-uk Kim > P.S. I think that rhino port should install its jar into > ${PREFIX}/share/java/classes as other ports do. From owner-freebsd-java@FreeBSD.ORG Fri May 20 08:51:59 2011 Return-Path: Delivered-To: java@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E75EB1065679 for ; Fri, 20 May 2011 08:51:59 +0000 (UTC) (envelope-from m_r_t107@yahoo.co.jp) Received: from web4311.mail.ogk.yahoo.co.jp (web4311.mail.ogk.yahoo.co.jp [124.83.212.91]) by mx1.freebsd.org (Postfix) with SMTP id 64DBD8FC20 for ; Fri, 20 May 2011 08:51:59 +0000 (UTC) Received: (qmail 2642 invoked by uid 60001); 20 May 2011 08:22:32 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=yj20050223; d=yahoo.co.jp; h=Message-ID:Received:X-RocketDSI:Date:From:Reply-To:Subject:To:MIME-Version:Content-Type; b=KQI2IKr2fuSiMu/bu+7fTptp1HeK7rRFbBfJNx5wYEF4oAoAoimZLKFJMB/fbQ8vj/5nThe4FIZuijlyLR0+MrJJDs5sgvWRNjEuwgo5w7Fg9ER/KwAPaNTAEnHgwY6P ; Message-ID: <20110520082232.2640.qmail@web4311.mail.ogk.yahoo.co.jp> Received: from [41.202.95.17] by web4311.mail.ogk.yahoo.co.jp via HTTP; Fri, 20 May 2011 17:22:32 JST X-RocketDSI: i=124.83.212.91;s=w Date: Fri, 20 May 2011 17:22:32 +0900 (JST) From: Mrs Ukadi To: java@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=iso-2022-jp X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Divine call reply for more information. X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: m_r_t120@yahoo.co.jp List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 May 2011 08:52:00 -0000 新しいメールアドレスをお知らせします新しいメールアドレス: m_r_t107@yahoo.co.jp Greetings in name of our Lord.I am Mrs Ukadi,69years old widow & a Christian, suffering from long time cancer of the blood.I have the sum($5.1m)USD in COTE D'IVOIRE i want to donate it for you to use it to help the poor.Contact me for more information on how you will get my charity donation. - Mrs Ukadi