c4c8523eac
technology-based applications ("Java applications") first-class citizens of current desktop platforms without sacrificing platform independence. JDIC provides Java applications with access to facilities provided by the native desktop such as the mailer, the browser, and registered document viewing applications. Additionally it provides the mechanisms by which Java applications can integrate into the native desktop such as registering Java applications as document viewers on the desktop, creating tray icons on the desktop and creating installer packages. JDIC consists of a collection of Java packages (JDIC API), all with the package name prefix org.jdesktop.jdic, and a JNLP application packaging tool (JDIC Packager). Note: only the tray icon API is built at the moment. WWW: https://jdic.dev.java.net/
36 lines
1.3 KiB
XML
36 lines
1.3 KiB
XML
--- ./jdic/build.xml.orig Tue Oct 31 17:33:06 2006
|
|
+++ ./jdic/build.xml Tue Dec 26 22:07:34 2006
|
|
@@ -543,6 +543,10 @@
|
|
<target name="buildtray" depends="clean"
|
|
description="build a distribution for the current platform.">
|
|
<!-- Set the platform-dependent buildall target -->
|
|
+ <condition property="platform.target" value="buildfreebsd_tray">
|
|
+ <os name="freebsd"/>
|
|
+ </condition>
|
|
+
|
|
<condition property="platform.target" value="buildwin32_tray">
|
|
<os family="windows" />
|
|
</condition>
|
|
@@ -563,6 +567,13 @@
|
|
</target>
|
|
|
|
<!--
|
|
+ - FreeBSD DISTRIBUTION
|
|
+ -->
|
|
+ <target name="buildfreebsd_tray" depends="buildunixjar_tray, buildunixjni_tray"
|
|
+ description="build java and native source code for FreeBSD platform" >
|
|
+ </target>
|
|
+
|
|
+ <!--
|
|
- WIN32 DISTRIBUTION
|
|
-->
|
|
<target name="buildwin32_tray" depends="buildwin32jar_tray, buildwin32jni_tray"
|
|
@@ -644,7 +655,7 @@
|
|
<!-- *** Build Unix native JNI code *** -->
|
|
<target name="buildunixjni_tray" depends="init"
|
|
description="build native jni libraries." >
|
|
- <exec dir="${unix.native.jni.dir}" executable="make" failonerror="yes" >
|
|
+ <exec dir="${unix.native.jni.dir}" executable="gmake" failonerror="yes" >
|
|
<arg line="tray"/>
|
|
</exec>
|
|
|