diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2009-06-21 05:21:26 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2009-06-21 05:21:26 +0000 |
commit | 666534715792143e79c380278b0e1fb30ae9c66a (patch) | |
tree | fdd081a5092c7d59a4582e9a78f570b397fa90b3 /dev-java/istack-commons-buildtools/files | |
parent | Fix installing I broke when switching to EAPI=2. (diff) | |
download | gentoo-2-666534715792143e79c380278b0e1fb30ae9c66a.tar.gz gentoo-2-666534715792143e79c380278b0e1fb30ae9c66a.tar.bz2 gentoo-2-666534715792143e79c380278b0e1fb30ae9c66a.zip |
Part of new istack-commons (upstream pom.xml tag is 1.1-SNAPSHOT) in a new slot, needed for jersey. buildtools portion was not packaged before.
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'dev-java/istack-commons-buildtools/files')
-rw-r--r-- | dev-java/istack-commons-buildtools/files/istack-commons-20090620-less-maven.patch | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/dev-java/istack-commons-buildtools/files/istack-commons-20090620-less-maven.patch b/dev-java/istack-commons-buildtools/files/istack-commons-20090620-less-maven.patch new file mode 100644 index 000000000000..5213c41d21c0 --- /dev/null +++ b/dev-java/istack-commons-buildtools/files/istack-commons-20090620-less-maven.patch @@ -0,0 +1,25 @@ +The shipped build.xml is completely bogus in trying to bring in maven. +We just bring in ant-core, codemodel and istack-commons-runtime-1.1 ourselves, +and it compiles perfectly. + +Signed-off-by: Robin H. Johnson <robbat2@gentoo.org> + +diff -Nuar istack-commons-20090620.orig/buildtools/build.xml istack-commons-20090620/buildtools/build.xml +--- istack-commons-20090620.orig/buildtools/build.xml 2009-03-30 19:28:53.000000000 -0700 ++++ istack-commons-20090620/buildtools/build.xml 2009-06-20 22:15:09.194598087 -0700 +@@ -1,6 +1,8 @@ + <?xml version="1.0"?> + <project name="istack-commons-buildtools" basedir="." default="dist" xmlns:artifact="urn:maven-artifact-ant"> ++ <property name="name" value="istack-commons-buildtools" /> + <import file="../build-common.xml"/> ++ <!-- + <property name="maven.ant.file" value="maven-ant-tasks-2.0.9.jar"/> + <property name="src" value="src"/> + <property name="lib.dir" value="lib"/> +@@ -79,5 +81,6 @@ + <fileset dir="${src}"/> + </jar> + </target> ++ --> + + </project> |