diff options
author | Petteri Räty <betelgeuse@gentoo.org> | 2008-04-05 00:57:03 +0000 |
---|---|---|
committer | Petteri Räty <betelgeuse@gentoo.org> | 2008-04-05 00:57:03 +0000 |
commit | b38211de6ede36de3579e95ee584e7cd4ba984ad (patch) | |
tree | ddd508e364eb737947f03e569497c584d2cccc93 /dev-java/commons-validator/files | |
parent | Delete old ebuild. (diff) | |
download | gentoo-2-b38211de6ede36de3579e95ee584e7cd4ba984ad.tar.gz gentoo-2-b38211de6ede36de3579e95ee584e7cd4ba984ad.tar.bz2 gentoo-2-b38211de6ede36de3579e95ee584e7cd4ba984ad.zip |
Version bump. Fixes bug #152269.
(Portage version: 2.1.4.4)
Diffstat (limited to 'dev-java/commons-validator/files')
-rw-r--r-- | dev-java/commons-validator/files/validator-1.3.build.xml.patch | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/dev-java/commons-validator/files/validator-1.3.build.xml.patch b/dev-java/commons-validator/files/validator-1.3.build.xml.patch new file mode 100644 index 000000000000..98d048e0b6ce --- /dev/null +++ b/dev-java/commons-validator/files/validator-1.3.build.xml.patch @@ -0,0 +1,38 @@ +--- build.xml.o 2006-10-21 18:12:49.000000000 +0200 ++++ build.xml 2006-10-21 18:29:18.000000000 +0200 +@@ -122,11 +122,12 @@ +
+ <!-- Construct compile classpath -->
+ <path id="compile.classpath">
+- <pathelement location="${build.home}/classes"/>
+- <pathelement location="${commons-beanutils.jar}"/>
+- <pathelement location="${commons-digester.jar}"/>
+- <pathelement location="${commons-logging.jar}"/>
+- <pathelement location="${oro.jar}"/>
++ <pathelement path="${build.home}/classes"/>
++ <pathelement path="${commons-beanutils.jar}"/>
++ <pathelement path="${commons-digester.jar}"/>
++ <pathelement path="${commons-logging.jar}"/>
++ <pathelement path="${commons-collections.jar}"/>
++ <pathelement path="${oro.jar}"/>
+ <path refid="downloaded.lib.classpath"/>
+ </path>
+
+@@ -204,7 +205,7 @@ + </target>
+
+
+- <target name="compile" depends="static"
++ <target name="compile" depends="prepare"
+ description="Compile shareable components">
+ <javac srcdir="${source.home}"
+ destdir="${build.home}/classes"
+@@ -278,7 +279,7 @@ + </exec>
+ </target>
+
+- <target name="javadoc" depends="compile, javadoc.js"
++ <target name="javadoc" depends="compile"
+ description="Create component Javadoc documentation">
+ <javadoc sourcepath="${source.home}"
+ destdir="${dist.home}/docs/apidocs"
|