Update of /cvsroot/fink/experimental/rangerrick/finkinfo/libs
In directory sc8-pr-cvs1:/tmp/cvs-serv27430/libs
Modified Files:
commons-beanutils-1.5-1.info commons-beanutils-1.5-1.patch
commons-collections-2.1-1.info commons-logging-1.0.2-1.info
commons-logging-1.0.2-1.patch
Added Files:
commons-cli-1.0-1.info commons-cli-1.0-1.patch
commons-daemon-0.1-20021219.1.info
commons-daemon-0.1-20021219.1.patch commons-dbcp-1.0-1.info
commons-dbcp-1.0-1.patch commons-digester-1.3-1.info
commons-digester-1.3-1.patch commons-modeler-1.0-1.info
commons-modeler-1.0-1.patch commons-pool-1.0.1-1.info
commons-pool-1.0.1-1.patch jakarta-regexp-1.2-1.info
jakarta-regexp-1.2-1.patch
jakarta-servletapi-4.1.9.20021219-1.info
jakarta-servletapi-4.1.9.20021219-1.patch
jdbc-optional-2.0-1.info jdbc-optional-2.0-1.patch
mx4j-1.1.1-1.info mx4j-1.1.1-1.patch xalan-j-2.4.1-1.info
xerces-j-2.2.1-1.info
Removed Files:
jakarta-servletapi-4.1.9.20020901-1.info
jakarta-servletapi-4.1.9.20020901-1.patch
Log Message:
almost got tomcat 4.1.18 building
--- NEW FILE: commons-cli-1.0-1.info ---
Package: commons-cli
Version: 1.0
Revision: 1
Source:
http://jakarta.apache.org/builds/jakarta-commons/release/%n/v%v/%n-%v-src.tar.gz
SourceDirectory: %n-%v-src/cli
PatchScript: sed 's:@PREFIX@:%p:g' <%a/%f.patch | patch -p1
CompileScript: /usr/bin/true
JarFiles: lib/*.jar
InstallScript: <<
mkdir -p %i/share/doc/%n
cp -R index.html doc/* %i/share/doc/%n/
find %i/share/doc/%n -type d -exec chmod 755 {} \;
find %i/share/doc/%n -type f -exec chmod 644 {} \;
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/
<<
DocFiles: LICENSE.txt PROPOSAL.html RELEASE-NOTES.txt STATUS.html
Homepage: http://jakarta.apache.org/commons/cli/
Maintainer: Benjamin Reed <[EMAIL PROTECTED]>
Description: Jakarta Commons - Command-line Arguments
DescDetail: <<
CLI provides a simple API for working with Comamnd Line arguments, options,
option groups, mandatory options and so forth.
<<
License: BSD
--- NEW FILE: commons-cli-1.0-1.patch ---
diff -uNrb commons-collections-old/scripts/commons-collections.csh
commons-collections/scripts/commons-collections.csh
--- commons-collections-old/scripts/commons-collections.csh Wed Dec 31 19:00:00
1969
+++ commons-collections/scripts/commons-collections.csh Sat Jan 5 18:46:09 2002
@@ -0,0 +1,8 @@
+#!/bin/csh
+set chemin = "@PREFIX@/share/java/commons-collections/commons-collections.jar"
+if ($?CLASSPATH) then
+ setenv CLASSPATH "${CLASSPATH}:$chemin"
+else
+ setenv CLASSPATH "$chemin"
+endif
+unset chemin
diff -uNrb commons-collections-old/scripts/commons-collections.sh
commons-collections/scripts/commons-collections.sh
--- commons-collections-old/scripts/commons-collections.sh Wed Dec 31 19:00:00
1969
+++ commons-collections/scripts/commons-collections.sh Sat Jan 5 18:46:20 2002
@@ -0,0 +1,9 @@
+#!/bin/sh
+chemin="@PREFIX@/share/java/commons-collections/commons-collections.jar"
+if (test "$CLASSPATH")
+then
+ export CLASSPATH="${CLASSPATH}:$chemin"
+else
+ export CLASSPATH="$chemin"
+fi
+
--- NEW FILE: commons-daemon-0.1-20021219.1.info ---
Package: commons-daemon
Version: 0.1
Revision: 20021219.1
CustomMirror: <<
nam-US: http://ranger.befunk.com/fink
nam-CA: http://www.southofheaven.net/befunk
<<
Source: mirror:custom:%n-src-20021219.tar.gz
SourceDirectory: %n
PatchScript: <<
sed 's:@PREFIX@:%p:g' <%a/%f.patch | patch -p1
cp LICENSE.txt ../LICENSE
<<
CompileScript: ant dist
BuildDepends: ant
JarFiles: dist/*.jar
InstallScript: <<
mkdir -p %i/share/doc/%n
(cd dist/docs; gnutar -cf - .) | (cd %i/share/doc/%n; gnutar -xf -)
find %i/share/doc/%n -type d -exec chmod 755 {} \;
find %i/share/doc/%n -type f -exec chmod 644 {} \;
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/
<<
DocFiles: LICENSE README LICENSE.txt RELEASE-NOTES.txt PROPOSAL.html STATUS.html
Homepage: http://jakarta.apache.org/commons/daemon/
Maintainer: Benjamin Reed <[EMAIL PROTECTED]>
Description: Jakarta Commons - Daemon
DescDetail: <<
Java-based daemons or services.
<<
License: BSD
--- NEW FILE: commons-daemon-0.1-20021219.1.patch ---
diff -uNrb commons-daemon-old/scripts/commons-daemon.csh
commons-daemon/scripts/commons-daemon.csh
--- commons-daemon-old/scripts/commons-daemon.csh Wed Dec 31 19:00:00 1969
+++ commons-daemon/scripts/commons-daemon.csh Sat Jan 5 18:46:09 2002
@@ -0,0 +1,8 @@
+#!/bin/csh
+set chemin = "@PREFIX@/share/java/commons-daemon/commons-daemon.jar"
+if ($?CLASSPATH) then
+ setenv CLASSPATH "${CLASSPATH}:$chemin"
+else
+ setenv CLASSPATH "$chemin"
+endif
+unset chemin
diff -uNrb commons-daemon-old/scripts/commons-daemon.sh
commons-daemon/scripts/commons-daemon.sh
--- commons-daemon-old/scripts/commons-daemon.sh Wed Dec 31 19:00:00 1969
+++ commons-daemon/scripts/commons-daemon.sh Sat Jan 5 18:46:20 2002
@@ -0,0 +1,9 @@
+#!/bin/sh
+chemin="@PREFIX@/share/java/commons-daemon/commons-daemon.jar"
+if (test "$CLASSPATH")
+then
+ export CLASSPATH="${CLASSPATH}:$chemin"
+else
+ export CLASSPATH="$chemin"
+fi
+
--- NEW FILE: commons-dbcp-1.0-1.info ---
Package: commons-dbcp
Version: 1.0
Revision: 1
Source:
http://jakarta.apache.org/builds/jakarta-commons/release/%n/v%v/%n-%v-src.tar.gz
SourceDirectory: %n-%v-src
BuildDepends: ant, commons-pool
Depends: commons-pool
PatchScript: <<
sed 's:@PREFIX@:%p:g' <%a/%f.patch | patch -p1
cp LICENSE.txt ../LICENSE
<<
CompileScript: ant dist
JarFiles: dist/*.jar
InstallScript: <<
mkdir -p %i/share/doc/%n
(cd dist/docs; gnutar -cf - .) | (cd %i/share/doc/%n; gnutar -xf -)
find %i/share/doc/%n -type d -exec chmod 755 {} \;
find %i/share/doc/%n -type f -exec chmod 644 {} \;
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/
<<
DocFiles: LICENSE.txt PROPOSAL.html STATUS.html
Homepage: http://jakarta.apache.org/commons/dbcp/
Maintainer: Benjamin Reed <[EMAIL PROTECTED]>
Description: Jakarta Commons - DBCP
DescDetail: <<
Commons-DBCP provides database connection pooling services.
<<
License: BSD
--- NEW FILE: commons-dbcp-1.0-1.patch ---
diff -uNrb commons-dbcp-old/scripts/commons-dbcp.csh
commons-dbcp/scripts/commons-dbcp.csh
--- commons-dbcp-old/scripts/commons-dbcp.csh Wed Dec 31 19:00:00 1969
+++ commons-dbcp/scripts/commons-dbcp.csh Sat Jan 5 18:46:09 2002
@@ -0,0 +1,8 @@
+#!/bin/csh
+set chemin = "@PREFIX@/share/java/commons-dbcp/commons-dbcp.jar"
+if ($?CLASSPATH) then
+ setenv CLASSPATH "${CLASSPATH}:$chemin"
+else
+ setenv CLASSPATH "$chemin"
+endif
+unset chemin
diff -uNrb commons-dbcp-old/scripts/commons-dbcp.sh
commons-dbcp/scripts/commons-dbcp.sh
--- commons-dbcp-old/scripts/commons-dbcp.sh Wed Dec 31 19:00:00 1969
+++ commons-dbcp/scripts/commons-dbcp.sh Sat Jan 5 18:46:20 2002
@@ -0,0 +1,9 @@
+#!/bin/sh
+chemin="@PREFIX@/share/java/commons-dbcp/commons-dbcp.jar"
+if (test "$CLASSPATH")
+then
+ export CLASSPATH="${CLASSPATH}:$chemin"
+else
+ export CLASSPATH="$chemin"
+fi
+
--- NEW FILE: commons-digester-1.3-1.info ---
Package: commons-digester
Version: 1.3
Revision: 1
CustomMirror: <<
nam-US: http://ranger.befunk.com/fink
nam-CA: http://www.southofheaven.net/befunk
<<
Source: mirror:custom:%n-%v-src.tar.gz
SourceDirectory: %n-%v-src/digester
PatchScript: <<
sed 's:@PREFIX@:%p:g' <%a/%f.patch | patch -p1
cp LICENSE.txt ../LICENSE
<<
CompileScript: ant dist
BuildDepends: ant, commons-logging, commons-collections, commons-beanutils
Depends: commons-logging, commons-collections, commons-beanutils
JarFiles: dist/*.jar
InstallScript: <<
mkdir -p %i/share/doc/%n
(cd dist/docs; gnutar -cf - .) | (cd %i/share/doc/%n; gnutar -xf -)
find %i/share/doc/%n -type d -exec chmod 755 {} \;
find %i/share/doc/%n -type f -exec chmod 644 {} \;
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/
<<
DocFiles: LICENSE.txt PROPOSAL.html RELEASE-NOTES.txt STATUS.html
Homepage: http://jakarta.apache.org/commons/digester/
Maintainer: Benjamin Reed <[EMAIL PROTECTED]>
Description: Jakarta Commons - Digester
DescDetail: <<
Commons-Digester is an XML-to-Java-object mapping utility commonly used
for parsing XML configuration files.
<<
License: BSD
--- NEW FILE: commons-digester-1.3-1.patch ---
diff -uNrb commons-digester-old/scripts/commons-digester.csh
commons-digester/scripts/commons-digester.csh
--- commons-digester-old/scripts/commons-digester.csh Wed Dec 31 19:00:00 1969
+++ commons-digester/scripts/commons-digester.csh Sat Jan 5 18:46:09 2002
@@ -0,0 +1,8 @@
+#!/bin/csh
+set chemin = "@PREFIX@/share/java/commons-digester/commons-digester.jar"
+if ($?CLASSPATH) then
+ setenv CLASSPATH "${CLASSPATH}:$chemin"
+else
+ setenv CLASSPATH "$chemin"
+endif
+unset chemin
diff -uNrb commons-digester-old/scripts/commons-digester.sh
commons-digester/scripts/commons-digester.sh
--- commons-digester-old/scripts/commons-digester.sh Wed Dec 31 19:00:00 1969
+++ commons-digester/scripts/commons-digester.sh Sat Jan 5 18:46:20 2002
@@ -0,0 +1,9 @@
+#!/bin/sh
+chemin="@PREFIX@/share/java/commons-digester/commons-digester.jar"
+if (test "$CLASSPATH")
+then
+ export CLASSPATH="${CLASSPATH}:$chemin"
+else
+ export CLASSPATH="$chemin"
+fi
+
--- NEW FILE: commons-modeler-1.0-1.info ---
Package: commons-modeler
Version: 1.0
Revision: 1
Source:
http://jakarta.apache.org/builds/jakarta-commons/release/%n/v%v/%n-%v-src.tar.gz
SourceDirectory: %n-%v-src
BuildDepends: ant, commons-digester, mx4j
Depends: commons-digester, mx4j
PatchScript: <<
sed 's:@PREFIX@:%p:g' <%a/%f.patch | patch -p1
touch ../LICENSE
<<
CompileScript: ant dist
JarFiles: dist/*.jar
InstallScript: <<
mkdir -p %i/share/doc/%n
(cd dist/docs; gnutar -cf - .) | (cd %i/share/doc/%n; gnutar -xf -)
find %i/share/doc/%n -type d -exec chmod 755 {} \;
find %i/share/doc/%n -type f -exec chmod 644 {} \;
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/
<<
DocFiles: PROPOSAL.html RELEASE-NOTES.txt STATUS.html
Homepage: http://jakarta.apache.org/commons/modeler.html
Maintainer: Benjamin Reed <[EMAIL PROTECTED]>
Description: Jakarta Commons - Modeler
DescDetail: <<
Commons-Modeler provides mechanisms to create Model MBeans compatible
with the Java Management Extensions (JMX) specification.
<<
License: BSD
--- NEW FILE: commons-modeler-1.0-1.patch ---
diff -uNrb commons-modeler-old/scripts/commons-modeler.csh
commons-modeler/scripts/commons-modeler.csh
--- commons-modeler-old/scripts/commons-modeler.csh Wed Dec 31 19:00:00 1969
+++ commons-modeler/scripts/commons-modeler.csh Sat Jan 5 18:46:09 2002
@@ -0,0 +1,8 @@
+#!/bin/csh
+set chemin = "@PREFIX@/share/java/commons-modeler/commons-modeler.jar"
+if ($?CLASSPATH) then
+ setenv CLASSPATH "${CLASSPATH}:$chemin"
+else
+ setenv CLASSPATH "$chemin"
+endif
+unset chemin
diff -uNrb commons-modeler-old/scripts/commons-modeler.sh
commons-modeler/scripts/commons-modeler.sh
--- commons-modeler-old/scripts/commons-modeler.sh Wed Dec 31 19:00:00 1969
+++ commons-modeler/scripts/commons-modeler.sh Sat Jan 5 18:46:20 2002
@@ -0,0 +1,9 @@
+#!/bin/sh
+chemin="@PREFIX@/share/java/commons-modeler/commons-modeler.jar"
+if (test "$CLASSPATH")
+then
+ export CLASSPATH="${CLASSPATH}:$chemin"
+else
+ export CLASSPATH="$chemin"
+fi
+
--- NEW FILE: commons-pool-1.0.1-1.info ---
Package: commons-pool
Version: 1.0.1
Revision: 1
Source:
http://jakarta.apache.org/builds/jakarta-commons/release/%n/v%v/%n-%v-src.tar.gz
SourceDirectory: %n-%v-src
BuildDepends: ant, commons-collections
Depends: commons-collections
PatchScript: <<
sed 's:@PREFIX@:%p:g' <%a/%f.patch | patch -p1
<<
CompileScript: ant dist
JarFiles: dist/*.jar
InstallScript: <<
mkdir -p %i/share/doc/%n
(cd dist/docs; gnutar -cf - .) | (cd %i/share/doc/%n; gnutar -xf -)
find %i/share/doc/%n -type d -exec chmod 755 {} \;
find %i/share/doc/%n -type f -exec chmod 644 {} \;
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/
<<
DocFiles: LICENSE.txt PROPOSAL.html README.txt STATUS.html
Homepage: http://jakarta.apache.org/commons/pool/
Maintainer: Benjamin Reed <[EMAIL PROTECTED]>
Description: Jakarta Commons - Pool
DescDetail: <<
Commons-Pool provides a generic object pooling interface, a toolkit for
creating modular object pools, and several general purpose pool
implementations.
<<
License: BSD
--- NEW FILE: commons-pool-1.0.1-1.patch ---
diff -uNrb commons-pool-old/scripts/commons-pool.csh
commons-pool/scripts/commons-pool.csh
--- commons-pool-old/scripts/commons-pool.csh Wed Dec 31 19:00:00 1969
+++ commons-pool/scripts/commons-pool.csh Sat Jan 5 18:46:09 2002
@@ -0,0 +1,8 @@
+#!/bin/csh
+set chemin = "@PREFIX@/share/java/commons-pool/commons-pool.jar"
+if ($?CLASSPATH) then
+ setenv CLASSPATH "${CLASSPATH}:$chemin"
+else
+ setenv CLASSPATH "$chemin"
+endif
+unset chemin
diff -uNrb commons-pool-old/scripts/commons-pool.sh
commons-pool/scripts/commons-pool.sh
--- commons-pool-old/scripts/commons-pool.sh Wed Dec 31 19:00:00 1969
+++ commons-pool/scripts/commons-pool.sh Sat Jan 5 18:46:20 2002
@@ -0,0 +1,9 @@
+#!/bin/sh
+chemin="@PREFIX@/share/java/commons-pool/commons-pool.jar"
+if (test "$CLASSPATH")
+then
+ export CLASSPATH="${CLASSPATH}:$chemin"
+else
+ export CLASSPATH="$chemin"
+fi
+
--- NEW FILE: jakarta-regexp-1.2-1.info ---
Package: jakarta-regexp
Version: 1.2
Revision: 1
Source: http://www.apache.org/dist/jakarta/regexp/source/%n-%v.tar.gz
SourceDirectory: %n-%v
PatchScript: <<
sed 's:@PREFIX@:%p:g' <%a/%f.patch | patch -p1
<<
CompileScript: <<
#!/bin/sh
pushd build
sh build-regexp.sh
popd
mv bin/%n-%v.jar bin/%n.jar
<<
JarFiles: bin/*.jar
InstallScript: <<
#!/bin/sh
mkdir -p %i/share/doc/%n
pushd docs
cp -R * %i/share/doc/%n/
find %i/share/doc/%n -type d -exec chmod 755 {} \;
find %i/share/doc/%n -type f -exec chmod 644 {} \;
popd
# shell init scripts
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/
<<
DocFiles: LICENSE
Homepage: http://jakarta.apache.org/regexp/
Maintainer: Benjamin Reed <[EMAIL PROTECTED]>
Description: Java Regular Expression Parsing
DescDetail: <<
Regexp is a 100% Pure Java Regular Expression package that was graciously
donated to the Apache Software Foundation by Jonathan Locke. He originally
wrote this software back in 1996 and it has stood up quite well to the
test of time. It includes complete Javadoc documentation as well as a
simple Applet for visual debugging and testing suite for compatibility.
<<
License: BSD
--- NEW FILE: jakarta-regexp-1.2-1.patch ---
diff -uNrb jakarta-regexp-old/scripts/jakarta-regexp.csh
jakarta-regexp/scripts/jakarta-regexp.csh
--- jakarta-regexp-old/scripts/jakarta-regexp.csh Wed Dec 31 19:00:00 1969
+++ jakarta-regexp/scripts/jakarta-regexp.csh Sat Jan 5 18:46:09 2002
@@ -0,0 +1,8 @@
+#!/bin/csh
+set chemin = "@PREFIX@/share/java/jakarta-regexp/jakarta-regexp.jar"
+if ($?CLASSPATH) then
+ setenv CLASSPATH "${CLASSPATH}:$chemin"
+else
+ setenv CLASSPATH "$chemin"
+endif
+unset chemin
diff -uNrb jakarta-regexp-old/scripts/jakarta-regexp.sh
jakarta-regexp/scripts/jakarta-regexp.sh
--- jakarta-regexp-old/scripts/jakarta-regexp.sh Wed Dec 31 19:00:00 1969
+++ jakarta-regexp/scripts/jakarta-regexp.sh Sat Jan 5 18:46:20 2002
@@ -0,0 +1,9 @@
+#!/bin/sh
+chemin="@PREFIX@/share/java/jakarta-regexp/jakarta-regexp.jar"
+if (test "$CLASSPATH")
+then
+ export CLASSPATH="${CLASSPATH}:$chemin"
+else
+ export CLASSPATH="$chemin"
+fi
+
--- NEW FILE: jakarta-servletapi-4.1.9.20021219-1.info ---
Package: jakarta-servletapi
Version: 4.1.9.20021219
Revision: 1
CustomMirror: <<
nam-US: http://ranger.befunk.com/fink
nam-CA: http://www.southofheaven.net/befunk
<<
Source: mirror:custom:%n-4-src-20021219.tar.gz
SourceDirectory: %n-4
BuildDepends: ant, xalan-j (>= 2.2), xerces-j (>= 2.0)
Depends: xalan-j (>= 2.2), xerces-j (>= 2.0)
PatchScript: sed 's:@PREFIX@:%p:g' <%a/%f.patch | patch -p1
CompileScript: <<
ant dist
<<
JarFiles: dist/lib/*.jar
InstallScript: <<
mkdir -p %i/share/doc/%n
cp -R dist/docs/api %i/share/doc/%n/
find %i/share/doc/%n -type d -exec chmod 755 {} \;
find %i/share/doc/%n -type f -exec chmod 644 {} \;
mkdir -p %i/etc/profile.d
install -m 755 src/scripts/%n.sh %i/etc/profile.d/
install -m 755 src/scripts/%n.csh %i/etc/profile.d/
<<
DocFiles: BUILDING.txt LICENSE README.txt
Homepage: http://jakarta.apache.org/builds/jakarta-servletapi-4/
Maintainer: Benjamin Reed <[EMAIL PROTECTED]>
Description: Java Servlet and JSP API Classes
DescDetail: <<
This subproject contains the compiled code for the implementation classes of
the Java Servlet and JSP APIs (packages javax.servlet, javax.servlet.http,
javax.servlet.jsp, and javax.servlet.jsp.tagext). They are needed for servlet
development and the Tomcat servlet container.
<<
DescPort: <<
Builds just fine out of the box, all I had to do was create the profile
scripts and copy the files into their final locations.
<<
License: BSD
--- NEW FILE: jakarta-servletapi-4.1.9.20021219-1.patch ---
diff -uNbr jakarta-servletapi-4/src/scripts/jakarta-servletapi.csh
jakarta-servletapi-4-new/src/scripts/jakarta-servletapi.csh
--- jakarta-servletapi-4/src/scripts/jakarta-servletapi.csh Wed Dec 31 19:00:00
1969
+++ jakarta-servletapi-4-new/src/scripts/jakarta-servletapi.csh Sat Jan 5 15:43:25
+2002
@@ -0,0 +1,8 @@
+#!/bin/csh
+set chemin = "@PREFIX@/share/java/jakarta-servletapi/servlet.jar"
+if ($?CLASSPATH) then
+ setenv CLASSPATH "${CLASSPATH}:$chemin"
+else
+ setenv CLASSPATH "$chemin"
+endif
+unset chemin
diff -uNbr jakarta-servletapi-4/src/scripts/jakarta-servletapi.sh
jakarta-servletapi-4-new/src/scripts/jakarta-servletapi.sh
--- jakarta-servletapi-4/src/scripts/jakarta-servletapi.sh Wed Dec 31 19:00:00
1969
+++ jakarta-servletapi-4-new/src/scripts/jakarta-servletapi.sh Sat Jan 5 15:43:17
+2002
@@ -0,0 +1,9 @@
+#!/bin/sh
+chemin="@PREFIX@/share/java/jakarta-servletapi/servlet.jar"
+if (test "$CLASSPATH")
+then
+ export CLASSPATH="${CLASSPATH}:$chemin"
+else
+ export CLASSPATH="$chemin"
+fi
+
--- NEW FILE: jdbc-optional-2.0-1.info ---
Package: jdbc-optional
Version: 2.0
Revision: 1
BuildDepends: jta-spec
Depends: jta-spec
Source: ftp://ftp.java.sun.com/pub/jdbc/67583/jdbc2_0-stdext-src.zip
SourceDirectory: .
PatchScript: sed 's:@PREFIX@:%p:g' <%a/%f.patch | patch -p1
CompileScript: <<
#!/bin/sh
javac -classpath %p/share/java/jta-spec/*.jar javax/sql/*.java
mkdir -p api
javadoc -classpath %p/share/java/jta-spec/*.jar -sourcepath . -d api javax.sql
<<
InstallScript: <<
#!/bin/sh
mkdir -p %i/share/java/%n
jar -cvf %i/share/java/%n/jdbc2_0-stdext.jar javax/sql/*.class
chmod ugo+r %i/share/java/%n/*.jar
mkdir -p %i/share/doc/%n
cp -R api %i/share/doc/%n/
find %i/share/doc/%n -type d -exec chmod 755 {} \;
find %i/share/doc/%n -type f -exec chmod 644 {} \;
# shell init scripts
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://jakarta.apache.org/builds/jakarta-servletapi-4/
Maintainer: Benjamin Reed <[EMAIL PROTECTED]>
DocFiles: LICENSE
Description: JDBC Data Access API Addon
DescDetail: <<
JDBC technology is an API that lets you access virtually any tabular data
source from the Java programming language. It provides cross-DBMS
connectivity to a wide range of SQL databases, and now, with the new JDBC
API, it also provides access to other tabular data sources, such as
spreadsheets or flat files.
This package contains additional classes not provided with the Java2
platform. It is necessary for any JDBC application that uses a DataSource
object to make a connection, uses connection pooling, or uses distributed
transactions.
<<
DescPort: <<
Builds just fine out of the box, all I had to do was create the profile
scripts and jar the compiled classes up. I also manually ran javadoc to
create API documentation.
Note that no LICENSE file was provided with the source zip file, it has
been added with the patch; it was cut-and-pasted from the Sun download
page.
<<
License: Restrictive
--- NEW FILE: jdbc-optional-2.0-1.patch ---
diff -uNbr old/LICENSE new/LICENSE
--- old/LICENSE Wed Dec 31 19:00:00 1969
+++ new/LICENSE Sat Jan 5 18:14:08 2002
@@ -0,0 +1,193 @@
+Sun Microsystems, Inc.
+Binary Code License Agreement
+
+READ THE TERMS OF THIS AGREEMENT AND ANY PROVIDED
+SUPPLEMENTAL LICENSE TERMS (COLLECTIVELY
+"AGREEMENT") CAREFULLY BEFORE OPENING THE SOFTWARE
+MEDIA PACKAGE. BY OPENING THE SOFTWARE MEDIA
+PACKAGE, YOU AGREE TO THE TERMS OF THIS AGREEMENT.
+IF YOU ARE ACCESSING THE SOFTWARE ELECTRONICALLY,
+INDICATE YOUR ACCEPTANCE OF THESE TERMS BY
+SELECTING THE "ACCEPT" BUTTON AT THE END OF THIS
+AGREEMENT. IF YOU DO NOT AGREE TO ALL THESE
+TERMS, PROMPTLY RETURN THE UNUSED SOFTWARE TO YOUR
+PLACE OF PURCHASE FOR A REFUND OR, IF THE SOFTWARE
+IS ACCESSED ELECTRONICALLY, SELECT THE "DECLINE"
+BUTTON AT THE END OF THIS AGREEMENT.
+
+1. LICENSE TO USE. Sun grants you a
+non-exclusive and non-transferable license for the
+internal use only of the accompanying software and
+documentation and any error corrections provided
+by Sun (collectively "Software"), by the number of
+users and the class of computer hardware for which
+the corresponding fee has been paid.
+
+2. RESTRICTIONS Software is confidential and
+copyrighted. Title to Software and all associated
+intellectual property rights is retained by Sun
+and/or its licensors. Except as specifically
+authorized in any Supplemental License Terms, you
+may not make copies of Software, other than a
+single copy of Software for archival purposes.
+Unless enforcement is prohibited by applicable
+law, you may not modify, decompile, or reverse
+engineer Software. Software is not designed or
+licensed for use in on-line control of aircraft,
+air traffic, aircraft navigation or aircraft
+communications; or in the design, construction,
+operation or maintenance of any nuclear facility.
+No right, title or interest in or to any
+trademark, service mark, logo or trade name of Sun
+or its licensors is granted under this Agreement.
+
+3. LIMITED WARRANTY. Sun warrants to you that for
+a period of ninety (90) days from the date of
+purchase, as evidenced by a copy of the receipt,
+the media on which Software is furnished (if any)
+will be free of defects in materials and
+workmanship under normal use. Except for the
+foregoing, Software is provided "AS IS". Your
+exclusive remedy and Sun's entire liability under
+this limited warranty will be at Sun's option to
+replace Software media or refund the fee paid for
+Software.
+
+4. DISCLAIMER OF WARRANTY. UNLESS SPECIFIED IN
+THIS AGREEMENT, ALL EXPRESS OR IMPLIED CONDITIONS,
+REPRESENTATIONS AND WARRANTIES, INCLUDING ANY
+IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A
+PARTICULAR PURPOSE OR NON-INFRINGEMENT ARE
+DISCLAIMED, EXCEPT TO THE EXTENT THAT THESE
+DISCLAIMERS ARE HELD TO BE LEGALLY INVALID.
+
+5. LIMITATION OF LIABILITY. TO THE EXTENT NOT
+PROHIBITED BY LAW, IN NO EVENT WILL SUN OR ITS
+LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT
+OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL,
+INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED
+REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT
+OF OR RELATED TO THE USE OF OR INABILITY TO USE
+SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE
+POSSIBILITY OF SUCH DAMAGES. In no event will
+Sun's liability to you, whether in contract, tort
+(including negligence), or otherwise, exceed the
+amount paid by you for Software under this
+Agreement. The foregoing limitations will apply
+even if the above stated warranty fails of its
+essential purpose.
+
+6. Termination. This Agreement is effective
+until terminated. You may terminate this
+Agreement at any time by destroying all copies of
+Software. This Agreement will terminate
+immediately without notice from Sun if you fail to
+comply with any provision of this Agreement. Upon
+Termination, you must destroy all copies of
+Software.
+
+7. Export Regulations. All Software and
+technical data delivered under this Agreement are
+subject to US export control laws and may be
+subject to export or import regulations in other
+countries. You agree to comply strictly with all
+such laws and regulations and acknowledge that you
+have the responsibility to obtain such licenses to
+export, re-export, or import as may be required
+after delivery to you.
+
+8. U.S. Government Restricted Rights. If
+Software is being acquired by or on behalf of the
+U.S. Government or by a U.S. Government prime
+contractor or subcontractor (at any tier), then
+the Government's rights in Software and
+accompanying documentation will be only as set
+forth in this Agreement; this is in accordance
+with 48 CFR 227.7201 through 227.7202-4 (for
+Department of Defense (DOD) acquisitions) and with
+48 CFR 2.101 and 12.212 (for non-DOD
+acquisitions).
+
+9. Governing Law. Any action related to this
+Agreement will be governed by California law and
+controlling U.S. federal law. No choice of law
+rules of any jurisdiction will apply.
+
+10. Severability. If any provision of this
+Agreement is held to be unenforceable, this
+Agreement will remain in effect with the provision
+omitted, unless omission would frustrate the
+intent of the parties, in which case this
+Agreement will immediately terminate.
+
+11. Integration. This Agreement is the entire
+agreement between you and Sun relating to its
+subject matter. It supersedes all prior or
+contemporaneous oral or written communications,
+proposals, representations and warranties and
+prevails over any conflicting or additional terms
+of any quote, order, acknowledgment, or other
+communication between the parties relating to its
+subject matter during the term of this Agreement.
+No modification of this Agreement will be binding,
+unless in writing and signed by an authorized
+representative of each party.
+
+For inquiries please contact: Sun Microsystems,
+Inc. 901 San Antonio Road, Palo Alto, California
+94303
+
+
+SUPPLEMENTAL LICENSE TERMS
+JDBCTM 2.0 INTERFACE CLASSES
+
+These supplemental license terms ("Supplement")
+add to or modify the terms of the Binary Code
+License Agreement (collectively, the
+"Agreement"). Capitalized terms not defined in
+this Supplement shall have the same meanings
+ascribed to them in the Agreement. These
+Supplement terms shall supersede any inconsistent
+or conflicting terms in the Agreement, or in any
+license contained within the Software.
+
+1. License to Distribute. Sun grants you a
+non-exclusive, non-transferable, limited license
+to reproduce and distribute the binary and/or
+source code form of the Software to third party
+end users through multiple tiers of distribution,
+provided that you: (i) distribute the Software
+complete and unmodified in its original Java
+Archive file, and only bundled as a part of your
+program that incorporates the Software
+("Program"); (ii) do not distribute additional
+software intended to replace any component(s) of
+the Software; (iii) agree to incorporate the most
+current version of the Software that was available
+from Sun no later than 180 days prior to each
+production release of the Program; (iv) do not
+remove or alter any proprietary legends or notices
+contained in or on the Software; (v) only
+distribute the Program pursuant to a license
+agreement that protects Sun's interest consistent
+with the terms contained in the Agreement; (vi)
+may not create, or authorize your licensees to cr!
+eate additional classes, interfaces, or
+subpackages that are contained in the "java"
+"javax" or "sun" packages or similar as specified
+by Sun in any class file naming convention; and
+(vii) agree to defend and indemnify Sun and its
+licensors from and against any damages, costs,
+liabilities, settlement amounts and/or expenses
+(including attorneys' fees) incurred in connection
+with any claim, lawsuit or action by any third
+party that arises or results from the use or
+distribution of any and all Programs.
+
+2. Trademarks and Logos. You acknowledge as
+between you and Sun that Sun owns the Java
+trademark and all Java-related trademarks, logos
+and icons including the Coffee Cup and Duke ("Java
+Marks") and agree to comply with the Java
+Trademark Guidelines at
+http://java.sun.com/trademarks.html.
diff -uNbr old/scripts/jdbc-optional.csh new/scripts/jdbc-optional.csh
--- old/scripts/jdbc-optional.csh Wed Dec 31 19:00:00 1969
+++ new/scripts/jdbc-optional.csh Sat Jan 5 18:04:44 2002
@@ -0,0 +1,8 @@
+#!/bin/csh
+set chemin = "@PREFIX@/lib/jdbc-optional/jdbc2_0-stdext.jar"
+if ($?CLASSPATH) then
+ setenv CLASSPATH "${CLASSPATH}:$chemin"
+else
+ setenv CLASSPATH "$chemin"
+endif
+unset chemin
diff -uNbr old/scripts/jdbc-optional.sh new/scripts/jdbc-optional.sh
--- old/scripts/jdbc-optional.sh Wed Dec 31 19:00:00 1969
+++ new/scripts/jdbc-optional.sh Sat Jan 5 18:05:00 2002
@@ -0,0 +1,9 @@
+#!/bin/sh
+chemin="@PREFIX@/lib/jdbc-optional/jdbc2_0-stdext.jar"
+if (test "$CLASSPATH")
+then
+ export CLASSPATH="${CLASSPATH}:$chemin"
+else
+ export CLASSPATH="$chemin"
+fi
+
--- NEW FILE: mx4j-1.1.1-1.info ---
Package: mx4j
Version: 1.1.1
Revision: 1
Source: mirror:sourceforge:%n/%n-%v.tar.gz
PatchScript: sed 's:@PREFIX@:%p:g' <%a/%f.patch | patch -p1
CompileScript: true
JarFiles: lib/*.jar
InstallScript: <<
mkdir -p %i/share/doc/%n
cp -R docs/* %i/share/doc/%n/
cp -R examples %i/share/doc/%n/
find %i/share/doc/%n -type d -exec chmod 755 {} \;
find %i/share/doc/%n -type f -exec chmod 644 {} \;
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/
<<
DocFiles: BCEL-LICENSE Jython-LICENSE LICENSE Log4J-LICENSE README XDoclet-LICENSE
Homepage: http://mx4j.sf.net/
Maintainer: Benjamin Reed <[EMAIL PROTECTED]>
Description: Java Management Extensions
DescDetail: <<
MX4J is an initiative to build an Open Source implementation for the
JMX technology specification version 1.1, and to build related tools.
<<
License: Restrictive
--- NEW FILE: mx4j-1.1.1-1.patch ---
diff -uNrb mx4j-old/scripts/mx4j.csh mx4j/scripts/mx4j.csh
--- mx4j-old/scripts/mx4j.csh Wed Dec 31 19:00:00 1969
+++ mx4j/scripts/mx4j.csh Sat Jan 5 18:46:09 2002
@@ -0,0 +1,8 @@
+#!/bin/csh
+set chemin =
+"@PREFIX@/share/java/mx4j/mx4j-jmx.jar:@PREFIX@/share/java/mx4j/mx4j-tools.jar"
+if ($?CLASSPATH) then
+ setenv CLASSPATH "${CLASSPATH}:$chemin"
+else
+ setenv CLASSPATH "$chemin"
+endif
+unset chemin
diff -uNrb mx4j-old/scripts/mx4j.sh mx4j/scripts/mx4j.sh
--- mx4j-old/scripts/mx4j.sh Wed Dec 31 19:00:00 1969
+++ mx4j/scripts/mx4j.sh Sat Jan 5 18:46:20 2002
@@ -0,0 +1,9 @@
+#!/bin/sh
+chemin="@PREFIX@/share/java/mx4j/mx4j-jmx.jar:@PREFIX@/share/java/mx4j/mx4j-tools.jar"
+if (test "$CLASSPATH")
+then
+ export CLASSPATH="${CLASSPATH}:$chemin"
+else
+ export CLASSPATH="$chemin"
+fi
+
--- NEW FILE: xalan-j-2.4.1-1.info ---
Package: xalan-j
Version: 2.4.1
Revision: 1
Maintainer: Sylvain Cuaz <[EMAIL PROTECTED]>
#
Depends: xerces-j
Source: http://xml.apache.org/dist/xalan-j/xalan-j_2_4_1-src.tar.gz
Source-MD5: 099c829fde4191d59120e91d4a821875
SourceDirectory: %n_2_4_1
PatchScript: <<
mv build.sh build.sh.orig
sed 's/.$//' < build.sh.orig > build.sh
chmod 755 build.sh
<<
CompileScript: <<
./build.sh jar compat.jar docs
<<
InstallScript: <<
mkdir -p %i/share/doc/%n
cp -r build/docs %i/share/doc/%n/html
<<
DocFiles: License
JarFiles: build/*.jar bin/xml-apis.jar
Description: Java XSLT processor
DescDetail: <<
Xalan is an XSLT processor for transforming XML documents into HTML,
text, or other XML document types. It implements the W3C Recommendations
for XSL Transformations (XSLT) and the XML Path Language (XPath).
It can be used from the command line, in an applet or a servlet,
or as a module in other program.
<<
DescPort: <<
build.sh is a dos file and darwin doesn't handle it
so I've patched it to remove all those line endings (^M)
<<
DescPackaging: <<
- avoid the lengthy build of javadocs (install xalan-j-javadocs if you want that)
- build compat.jar because otherwise some packages break (tomcat for example)
ATM the install target is not supported :
- copy the documentation in share/doc
<<
Homepage: http://xml.apache.org/xalan-j/index.html
License: BSD
--- NEW FILE: xerces-j-2.2.1-1.info ---
Package: xerces-j
Version: 2.2.1
Revision: 1
Maintainer: Sylvain Cuaz <[EMAIL PROTECTED]>
#
BuildDepends: ant
Source: http://xml.apache.org/dist/xerces-j/Xerces-J-src.%v.tar.gz
Source-MD5: 8ee4b6ac170a1f19fc609144eae68d60
SourceDirectory: xerces-2_2_1
Source2: http://xml.apache.org/dist/xerces-j/Xerces-J-tools.%v.tar.gz
Source2ExtractDir: xerces-2_2_1
Source2-MD5: a05250638692c9b9e24819214944e4bf
PatchScript: <<
perl -pi -e 's|:./tools/junit.jar||' build.xml
chmod 755 build.sh
<<
CompileScript: <<
./build.sh jars docs
<<
InstallScript: <<
mkdir -p %i/share/doc/%n
cp -R build/docs %i/share/doc/%n/html
<<
DocFiles: ISSUES LICENSE README Readme.html STATUS TODO
JarFiles: build/*.jar
Description: XML parser in Java
DescDetail: <<
The rich generating and validating capabilities allow the Xerces-J Parser to be used
for:
- Building XML-savvy Web servers.
- The next generation of vertical applications which will use XML as their data
format.
- On-the-fly validation for creating XML editors.
- Ensuring the integrity of e-business data expressed in XML.
- Building truly internationalized XML applications.
<<
DescPackaging: <<
- download the tools to build documentation
- cp the docs to share/doc/%n
- avoid the lengthy build of javadocs (install xerces-j-javadocs if you want that)
- junit is only used for the tests, so we don't use it
<<
License: BSD
Homepage: http://xml.apache.org/xerces-j/index.html
Index: commons-beanutils-1.5-1.info
===================================================================
RCS file:
/cvsroot/fink/experimental/rangerrick/finkinfo/libs/commons-beanutils-1.5-1.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- commons-beanutils-1.5-1.info 20 Dec 2002 01:17:21 -0000 1.1
+++ commons-beanutils-1.5-1.info 20 Dec 2002 05:48:47 -0000 1.2
@@ -3,31 +3,29 @@
Revision: 1
Source:
http://jakarta.apache.org/builds/jakarta-commons/release/%n/v%v/%n-%v-src.tar.gz
SourceDirectory: %n-%v-src/beanutils
-PatchScript: sed 's:@PREFIX@:%p:g' <%a/%f.patch | patch -p1
-CompileScript: /usr/bin/true
-JarFiles: lib/*.jar
+PatchScript: <<
+ sed 's:@PREFIX@:%p:g' <%a/%f.patch | patch -p1
+ cp LICENSE.txt ../LICENSE
+<<
+CompileScript: ant compile jar javadoc
+BuildDepends: ant, commons-logging, commons-collections, log4j
+Depends: commons-logging, commons-collections, log4j
+JarFiles: dist/*.jar
InstallScript: <<
mkdir -p %i/share/doc/%n
- cp -R index.html doc/* %i/share/doc/%n/
+ (cd dist/docs; gnutar -cf - .) | (cd %i/share/doc/%n; gnutar -xf -)
find %i/share/doc/%n -type d -exec chmod 755 {} \;
find %i/share/doc/%n -type f -exec chmod 644 {} \;
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/
<<
-DocFiles: LICENSE
-Homepage: http://java.sun.com/products/JavaManagement/
+DocFiles: LICENSE.txt PROPOSAL.html RELEASE-NOTES.txt STATUS.html
+Homepage: http://jakarta.apache.org/commons/beanutils.html
Maintainer: Benjamin Reed <[EMAIL PROTECTED]>
-Description: Java Management Extensions
+Description: Jakarta Commons - BeanUtils
DescDetail: <<
-Java Management Extensions (JMX) represent a universal, open technology for
-management, ready to be deployed across all industries, wherever management
-is or will be needed. By design, this new standard is suitable for adapting
-legacy systems, implementing new management solutions and plugging into those
-of the future.
-<<
-DescPort: <<
-Parts of the JMX distribution are from the Java2 Enterprise Edition and are not
-available in source form.
+Commons-BeanUtils provides easy-to-use wrappers around the Java
+reflection and introspection APIs.
<<
-License: Restrictive
+License: BSD
Index: commons-beanutils-1.5-1.patch
===================================================================
RCS file:
/cvsroot/fink/experimental/rangerrick/finkinfo/libs/commons-beanutils-1.5-1.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- commons-beanutils-1.5-1.patch 20 Dec 2002 01:17:21 -0000 1.1
+++ commons-beanutils-1.5-1.patch 20 Dec 2002 05:48:47 -0000 1.2
@@ -1,21 +1,21 @@
-diff -uNrb commons-collections-old/scripts/commons-collections.csh
commons-collections/scripts/commons-collections.csh
---- commons-collections-old/scripts/commons-collections.csh Wed Dec 31 19:00:00
1969
-+++ commons-collections/scripts/commons-collections.csh Sat Jan 5 18:46:09
2002
+diff -uNrb commons-beanutils-old/scripts/commons-beanutils.csh
+commons-beanutils/scripts/commons-beanutils.csh
+--- commons-beanutils-old/scripts/commons-beanutils.csh Wed Dec 31 19:00:00
+1969
++++ commons-beanutils/scripts/commons-beanutils.csh Sat Jan 5 18:46:09 2002
@@ -0,0 +1,8 @@
+#!/bin/csh
-+set chemin = "@PREFIX@/share/java/commons-collections/commons-collections.jar"
++set chemin = "@PREFIX@/share/java/commons-beanutils/commons-beanutils.jar"
+if ($?CLASSPATH) then
+ setenv CLASSPATH "${CLASSPATH}:$chemin"
+else
+ setenv CLASSPATH "$chemin"
+endif
+unset chemin
-diff -uNrb commons-collections-old/scripts/commons-collections.sh
commons-collections/scripts/commons-collections.sh
---- commons-collections-old/scripts/commons-collections.sh Wed Dec 31 19:00:00
1969
-+++ commons-collections/scripts/commons-collections.sh Sat Jan 5 18:46:20 2002
+diff -uNrb commons-beanutils-old/scripts/commons-beanutils.sh
+commons-beanutils/scripts/commons-beanutils.sh
+--- commons-beanutils-old/scripts/commons-beanutils.sh Wed Dec 31 19:00:00 1969
++++ commons-beanutils/scripts/commons-beanutils.sh Sat Jan 5 18:46:20 2002
@@ -0,0 +1,9 @@
+#!/bin/sh
-+chemin="@PREFIX@/share/java/commons-collections/commons-collections.jar"
++chemin="@PREFIX@/share/java/commons-beanutils/commons-beanutils.jar"
+if (test "$CLASSPATH")
+then
+ export CLASSPATH="${CLASSPATH}:$chemin"
Index: commons-collections-2.1-1.info
===================================================================
RCS file:
/cvsroot/fink/experimental/rangerrick/finkinfo/libs/commons-collections-2.1-1.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- commons-collections-2.1-1.info 20 Dec 2002 01:17:21 -0000 1.1
+++ commons-collections-2.1-1.info 20 Dec 2002 05:48:47 -0000 1.2
@@ -16,10 +16,10 @@
install -m 755 scripts/%n.sh %i/etc/profile.d/
install -m 755 scripts/%n.csh %i/etc/profile.d/
<<
-DocFiles: LICENSE PROPOSAL.html README.txt RELEASE-NOTES-2.0.html STATUS.html
-Homepage:
+DocFiles: DEVELOPERS-GUIDE.html RELEASE-NOTES-2.0.html LICENSE.txt
+RELEASE-NOTES-2.1.html PROPOSAL.html STATUS.html README.txt
+Homepage: http://jakarta.apache.org/commons/collections.html
Maintainer: Benjamin Reed <[EMAIL PROTECTED]>
-Description: Java Collections From The Apache Jakarta Project
+Description: Jakarta Commons - Collections
DescDetail: <<
The introduction of the Collections API by Sun in JDK 1.2 has been a boon
to quick and effective Java programming. Ready access to powerful data
Index: commons-logging-1.0.2-1.info
===================================================================
RCS file:
/cvsroot/fink/experimental/rangerrick/finkinfo/libs/commons-logging-1.0.2-1.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- commons-logging-1.0.2-1.info 20 Dec 2002 01:17:21 -0000 1.1
+++ commons-logging-1.0.2-1.info 20 Dec 2002 05:48:47 -0000 1.2
@@ -1,12 +1,12 @@
Package: commons-logging
Version: 1.0.2
Revision: 1
-BuildDepends: ant
+BuildDepends: ant, log4j
Source:
http://jakarta.apache.org/builds/jakarta-commons/release/%n/v%v/%n-%v-src.tar.gz
SourceDirectory: %n-%v-src/logging
PatchScript: sed 's:@PREFIX@:%p:g' <%a/%f.patch | patch -p1
-CompileScript: ant dist
-JarFiles: dist/*.jar
+CompileScript: ant compile javadoc
+JarFiles: target/*.jar
InstallScript: <<
mkdir -p %i/share/doc/%n
( cd dist/docs; tar -cf - . | (cd %i/share/doc/%n; tar -xf -) )
@@ -19,7 +19,7 @@
DocFiles: LICENSE.txt PROPOSAL.html RELEASE-NOTES.txt STATUS.html
Homepage: http://jakarta.apache.org/commons/logging.html
Maintainer: Benjamin Reed <[EMAIL PROTECTED]>
-Description: Java Logging From The Apache Jakarta Project
+Description: Jakarta Commons - Logging
DescDetail: <<
There is a great need for debugging and logging information inside of
Commons components such as HTTPClient and DBCP. However, there are
Index: commons-logging-1.0.2-1.patch
===================================================================
RCS file:
/cvsroot/fink/experimental/rangerrick/finkinfo/libs/commons-logging-1.0.2-1.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- commons-logging-1.0.2-1.patch 20 Dec 2002 01:17:21 -0000 1.1
+++ commons-logging-1.0.2-1.patch 20 Dec 2002 05:48:47 -0000 1.2
@@ -1,21 +1,21 @@
-diff -uNrb commons-collections-old/scripts/commons-collections.csh
commons-collections/scripts/commons-collections.csh
---- commons-collections-old/scripts/commons-collections.csh Wed Dec 31 19:00:00
1969
-+++ commons-collections/scripts/commons-collections.csh Sat Jan 5 18:46:09
2002
+diff -uNrb commons-logging-old/scripts/commons-logging.csh
+commons-logging/scripts/commons-logging.csh
+--- commons-logging-old/scripts/commons-logging.csh Wed Dec 31 19:00:00 1969
++++ commons-logging/scripts/commons-logging.csh Sat Jan 5 18:46:09 2002
@@ -0,0 +1,8 @@
+#!/bin/csh
-+set chemin = "@PREFIX@/share/java/commons-collections/commons-collections.jar"
++set chemin =
+"@PREFIX@/share/java/commons-logging/commons-logging.jar:@PREFIX@/share/java/commons-logging/commons-logging-api.jar"
+if ($?CLASSPATH) then
+ setenv CLASSPATH "${CLASSPATH}:$chemin"
+else
+ setenv CLASSPATH "$chemin"
+endif
+unset chemin
-diff -uNrb commons-collections-old/scripts/commons-collections.sh
commons-collections/scripts/commons-collections.sh
---- commons-collections-old/scripts/commons-collections.sh Wed Dec 31 19:00:00
1969
-+++ commons-collections/scripts/commons-collections.sh Sat Jan 5 18:46:20 2002
+diff -uNrb commons-logging-old/scripts/commons-logging.sh
+commons-logging/scripts/commons-logging.sh
+--- commons-logging-old/scripts/commons-logging.sh Wed Dec 31 19:00:00 1969
++++ commons-logging/scripts/commons-logging.sh Sat Jan 5 18:46:20 2002
@@ -0,0 +1,9 @@
+#!/bin/sh
-+chemin="@PREFIX@/share/java/commons-collections/commons-collections.jar"
++chemin="@PREFIX@/share/java/commons-logging/commons-logging.jar:@PREFIX@/share/java/commons-logging/commons-logging-api.jar"
+if (test "$CLASSPATH")
+then
+ export CLASSPATH="${CLASSPATH}:$chemin"
--- jakarta-servletapi-4.1.9.20020901-1.info DELETED ---
--- jakarta-servletapi-4.1.9.20020901-1.patch DELETED ---
-------------------------------------------------------
This SF.NET email is sponsored by: Geek Gift Procrastinating?
Get the perfect geek gift now! Before the Holidays pass you by.
T H I N K G E E K . C O M http://www.thinkgeek.com/sf/
_______________________________________________
Fink-commits mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/fink-commits