the Fink project is an effort to port
popular Unix programs to Mac OS X
Package: tyrex
Version: 1.0.3
Revision: 1
BuildDepends: fink (>= 0.24.12)
Depends: jta-spec (>= 1.0.1-2), jca (>= 1.0-2), jaas (>= 1.0-1), log4j (>= 1.2.8-1), system-java (>= 1.4-1), xalan-j (>= 2.6.0-1), xerces-j (>= 2.6.2-1)
Source: mirror:sourceforge:%n/%n-%v.tgz
Source-MD5: f1c9b178bd1840094a6ba80310bfbcdd
SourceDirectory: %n-%v
PatchFile: %n.patch
PatchFile-MD5: 2c968092d70be5ef65042e55e2507e9d
PatchScript: sed 's:@PREFIX@:%p:g' <%{PatchFile} | patch -p1
CompileScript: echo "none needed"
JarFiles: %n.jar
InstallScript: <<
mv %n-%v.jar %n.jar
mkdir -p %i/share/doc/%n
( cd doc; tar -cf - . | (cd %i/share/doc/%n; tar -xf - ) )
mkdir -p %i/etc/profile.d
install -m 755 scripts/%n.sh %i/etc/profile.d/
install -m 755 scripts/%n.csh %i/etc/profile.d/
<<
Homepage: http://tyrex.exolab.org/
Maintainer: Benjamin Reed
Description: J2EE Service Provider
DescDetail: <<
Tyrex is the missing piece in the J2EE puzzle, a J2EE service provider
for both Servlet and EJB container, JMS providers and generic
connectors. It provides services for security and authentication,
local and distributed transactions, resource configuration and pooling,
and TP monitoring. Tyrex is presently integrated with Tomcat and
OpenEJB.
<<
DescPort: <<
The build (although not the runtime, it seems) requires J2EE, so this
is a re-packaging for the binary release.
<<
License: BSD
diff -uNr tyrex-1.0/scripts/tyrex.csh tyrex-1.0-new/scripts/tyrex.csh
--- tyrex-1.0/scripts/tyrex.csh Wed Dec 31 19:00:00 1969
+++ tyrex-1.0-new/scripts/tyrex.csh Sat Jan 5 20:31:09 2002
@@ -0,0 +1,8 @@
+#!/bin/csh
+set chemin = "@PREFIX@/share/java/tyrex/tyrex-1.0.jar"
+if ($?CLASSPATH) then
+ setenv CLASSPATH "${CLASSPATH}:$chemin"
+else
+ setenv CLASSPATH "$chemin"
+endif
+unset chemin
diff -uNr tyrex-1.0/scripts/tyrex.sh tyrex-1.0-new/scripts/tyrex.sh
--- tyrex-1.0/scripts/tyrex.sh Wed Dec 31 19:00:00 1969
+++ tyrex-1.0-new/scripts/tyrex.sh Sat Jan 5 20:30:41 2002
@@ -0,0 +1,9 @@
+#!/bin/sh
+chemin="@PREFIX@/share/java/tyrex/tyrex-1.0.jar"
+if (test "$CLASSPATH")
+then
+ export CLASSPATH="${CLASSPATH}:$chemin"
+else
+ export CLASSPATH="$chemin"
+fi
+