openbsd-ports/java/tanukiwrapper/patches/patch-build-tests_xml
jasper 5ba9fa2ae6 import tanukiwrapper, based on svn rev 1780
The Java Service Wrapper is an application which has evolved out of a
desire to solve a number of problems common to many Java applications:

  - Run as a Windows Service or Unix Daemon
  - Application Reliability
  - Standard, Out of the Box Scripting
  - On Demand Restarts
  - Flexible Configuration
  - Ease Application Installations
  - Logging

ok aja@
2013-07-10 14:40:29 +00:00

24 lines
1.1 KiB
Plaintext

$OpenBSD: patch-build-tests_xml,v 1.1.1.1 2013/07/10 14:40:29 jasper Exp $
Correctly recognize and handle OpenBSD.
--- build-tests.xml.orig Tue Jul 2 14:27:15 2013
+++ build-tests.xml Tue Jul 2 14:30:42 2013
@@ -85,11 +85,15 @@
<property name="is.Unix" value="true"/>
<property name="is.shell.sh" value="true"/>
</target>
+ <target name="init-openbsd" if="is.OpenBSD">
+ <property name="is.Unix" value="true"/>
+ <property name="is.shell.sh" value="true"/>
+ </target>
<!-- =================================================================== -->
<!-- Initialize build. -->
<!-- =================================================================== -->
- <target name="init" depends="init-windows, init-linux, init-solaris, init-aix, init-hpux, init-macosx, init-osf1, init-freebsd, init-irix">
+ <target name="init" depends="init-windows, init-linux, init-solaris, init-aix, init-hpux, init-macosx, init-osf1, init-freebsd, init-irix, init-openbsd">
</target>
<!-- =================================================================== -->