diff options
author | William Thomson <wltjr@gentoo.org> | 2006-11-15 04:18:29 +0000 |
---|---|---|
committer | William Thomson <wltjr@gentoo.org> | 2006-11-15 04:18:29 +0000 |
commit | 4254e8cf10f91079b54882f1ba0bda7126dd93da (patch) | |
tree | 6620b97f759ada036c03bf7e3e5b67b6a88324e2 /dev-java/commons-httpclient | |
parent | Revision bump, moved ebuild from overlay. (diff) | |
download | gentoo-2-4254e8cf10f91079b54882f1ba0bda7126dd93da.tar.gz gentoo-2-4254e8cf10f91079b54882f1ba0bda7126dd93da.tar.bz2 gentoo-2-4254e8cf10f91079b54882f1ba0bda7126dd93da.zip |
Forgot patch, oops
(Portage version: 2.1.2_rc1-r6)
Diffstat (limited to 'dev-java/commons-httpclient')
-rw-r--r-- | dev-java/commons-httpclient/ChangeLog | 6 | ||||
-rw-r--r-- | dev-java/commons-httpclient/files/commons-httpclient-3.0.1-gentoo.patch | 47 |
2 files changed, 52 insertions, 1 deletions
diff --git a/dev-java/commons-httpclient/ChangeLog b/dev-java/commons-httpclient/ChangeLog index df39124937d2..4e18651c4a55 100644 --- a/dev-java/commons-httpclient/ChangeLog +++ b/dev-java/commons-httpclient/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-java/commons-httpclient # Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-httpclient/ChangeLog,v 1.31 2006/11/15 04:10:15 wltjr Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-httpclient/ChangeLog,v 1.32 2006/11/15 04:18:29 wltjr Exp $ + + 15 Nov 2006; William L. Thomson Jr. <wltjr@gentoo.org> + +files/commons-httpclient-3.0.1-gentoo.patch: + Forgot patch, oops *commons-httpclient-3.0.1 (15 Nov 2006) diff --git a/dev-java/commons-httpclient/files/commons-httpclient-3.0.1-gentoo.patch b/dev-java/commons-httpclient/files/commons-httpclient-3.0.1-gentoo.patch new file mode 100644 index 000000000000..cfb5355f5e1a --- /dev/null +++ b/dev-java/commons-httpclient/files/commons-httpclient-3.0.1-gentoo.patch @@ -0,0 +1,47 @@ +--- build.xml.orig 2006-10-30 19:36:49.000000000 +0100 ++++ build.xml 2006-10-30 19:49:01.000000000 +0100 +@@ -127,6 +127,7 @@ + <mkdir dir="${build.home}/docs/api"/> + <mkdir dir="${build.home}/tests"/> + <mkdir dir="${build.home}/examples"/> ++ <mkdir dir="${build.home}/contrib"/> + </target> + + <target name="static" depends="prepare" +@@ -154,6 +155,13 @@ + <include name="LICENSE.txt"/> + </metainf> + </jar> ++ <jar jarfile ="${dist.home}/commons-${component.name}-contrib.jar" ++ basedir ="${build.home}/contrib" ++ manifest ="${build.home}/conf/MANIFEST.MF"> ++ <metainf dir="${dist.home}"> ++ <include name="LICENSE.txt"/> ++ </metainf> ++ </jar> + <mkdir dir="${dist.home}/src"/> + <copy todir="${dist.home}/src" filtering="on"> + <fileset dir="${source.home}"/> +@@ -193,6 +201,13 @@ + optimize ="${compile.optimize}"> + <classpath refid="compile.classpath"/> + </javac> ++ <javac srcdir ="${source.home}/contrib" ++ destdir ="${build.home}/contrib" ++ debug ="${compile.debug}" ++ deprecation ="${compile.deprecation}" ++ optimize ="${compile.optimize}"> ++ <classpath refid="compile.classpath"/> ++ </javac> + </target> + + <target name="compile.tests" depends="compile" +@@ -239,7 +254,7 @@ + <mkdir dir="${dist.home}"/> + <mkdir dir="${dist.home}/docs"/> + <mkdir dir="${dist.home}/docs/api"/> +- <javadoc sourcepath ="${source.home}/java" ++ <javadoc sourcepath ="${source.home}/java:${source.home}/contrib" + destdir ="${dist.home}/docs/api" + packagenames ="org.apache.commons.*" + author ="true" |