From owner-freebsd-java@FreeBSD.ORG Mon Sep 5 04:23:41 2005 Return-Path: X-Original-To: freebsd-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 265D216A41F for ; Mon, 5 Sep 2005 04:23:41 +0000 (GMT) (envelope-from brent@svalin.rcfile.org) Received: from ms-smtp-04-eri0.southeast.rr.com (ms-smtp-04-lbl.southeast.rr.com [24.25.9.103]) by mx1.FreeBSD.org (Postfix) with ESMTP id A038443D45 for ; Mon, 5 Sep 2005 04:23:39 +0000 (GMT) (envelope-from brent@svalin.rcfile.org) Received: from svalin.rcfile.org (cpe-069-134-146-135.nc.res.rr.com [69.134.146.135]) by ms-smtp-04-eri0.southeast.rr.com (8.12.10/8.12.7) with ESMTP id j854NX1u025563 for ; Mon, 5 Sep 2005 00:23:34 -0400 (EDT) Received: from svalin.rcfile.org (localhost [127.0.0.1]) by svalin.rcfile.org (8.13.3/8.13.1) with ESMTP id j854NZTm052813 for ; Mon, 5 Sep 2005 00:23:35 -0400 (EDT) (envelope-from brent@svalin.rcfile.org) Received: (from brent@localhost) by svalin.rcfile.org (8.13.3/8.13.1/Submit) id j854NZ3x052812 for freebsd-java@freebsd.org; Mon, 5 Sep 2005 00:23:35 -0400 (EDT) (envelope-from brent) Date: Mon, 5 Sep 2005 00:23:35 -0400 From: Brent Verner To: freebsd-java@freebsd.org Message-ID: <20050905042335.GB48708@rcfile.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="lrZ03NoBR/3+SXJZ" Content-Disposition: inline X-muttrc: $Id: .muttrc,v 1.10 2003/02/08 08:35:24 brent Exp $ X-uname: FreeBSD 5.4-STABLE #18: Thu Aug 11 20:47:55 EDT 2005 root@svalin.rcfile.org:/usr/obj/usr/src/sys/MINI User-Agent: Mutt/1.5.6i X-Spam-Status: No, score=-2.8 required=5.0 tests=ALL_TRUSTED autolearn=failed version=3.0.4 X-Spam-Checker-Version: SpamAssassin 3.0.4 (2005-06-05) on svalin.rcfile.org X-Virus-Scanned: Symantec AntiVirus Scan Engine Subject: interest in OpenNMS 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, 05 Sep 2005 04:23:41 -0000 --lrZ03NoBR/3+SXJZ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hi, I recently installed ONMS on FBSD (5.4) using the native 1.4.2 jdk. It required a minor patch to ONMS, for which I've submitted a patch to the ONMS developers. I'm hoping there are some other users out there interested in running ONMS so we can get a bit better test coverage. Specifically, I'd like to know if the patch works with the linux-jdks (I don't have a linux-jdk to test). Also, is there a port committer/maintainer interested in working with me to get ONMS added to ports? Quick Instructions (I don't have the bandwidth to write a full how-to at the moment, but I'll try to help out with any specific issues you might have in following their instructions): 1) Apply the attached patch (fbsd.diff) to ONMS (1.2.4) source. 2) Put the attached build.properties in your source directory. NB: You might want to change the install.dir property unless you've created an opennms user (and home dir). 3) Follow the instructions on the www.opennms.org site :-) thanks. Brent --lrZ03NoBR/3+SXJZ Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="fbsd.diff" ? fbsd.diff Index: build.xml =================================================================== RCS file: /cvsroot/opennms/opennms/build.xml,v retrieving revision 1.148 diff -u -r1.148 build.xml --- build.xml 23 Aug 2005 22:48:30 -0000 1.148 +++ build.xml 5 Sep 2005 04:03:15 -0000 @@ -1327,6 +1327,7 @@ + Index: src/services/org/opennms/protocols/icmp/IcmpSocket.c =================================================================== RCS file: /cvsroot/opennms/opennms/src/services/org/opennms/protocols/icmp/IcmpSocket.c,v retrieving revision 1.22 diff -u -r1.22 IcmpSocket.c --- src/services/org/opennms/protocols/icmp/IcmpSocket.c 29 Mar 2005 23:16:18 -0000 1.22 +++ src/services/org/opennms/protocols/icmp/IcmpSocket.c 5 Sep 2005 04:03:20 -0000 @@ -70,6 +70,7 @@ #include #if defined(__FreeBSD__) +#include "byteswap.h" #include #endif --lrZ03NoBR/3+SXJZ Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="build.properties" install.dir: /home/opennms build.postgresql.include.dir: /usr/local/include/postgresql/server install.postgresql.dir: /home/opennms/lib/postgresql build.rrdtool.include.dir: /usr/local/include build.rrdtool.lib.dir: /usr/local/lib build.rrdtool.bin: /usr/local/bin/rrdtool --lrZ03NoBR/3+SXJZ--