diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 13:49:04 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 17:38:18 -0700 |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /dev-java/mg4j/files | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.xz |
proj/gentoo: Initial commit
This commit represents a new era for Gentoo:
Storing the gentoo-x86 tree in Git, as converted from CVS.
This commit is the start of the NEW history.
Any historical data is intended to be grafted onto this point.
Creation process:
1. Take final CVS checkout snapshot
2. Remove ALL ChangeLog* files
3. Transform all Manifests to thin
4. Remove empty Manifests
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
5.1. Do not touch files with -kb/-ko keyword flags.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'dev-java/mg4j/files')
-rw-r--r-- | dev-java/mg4j/files/mg4j-build.patch | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/dev-java/mg4j/files/mg4j-build.patch b/dev-java/mg4j/files/mg4j-build.patch new file mode 100644 index 00000000000..eef1c4878cb --- /dev/null +++ b/dev-java/mg4j/files/mg4j-build.patch @@ -0,0 +1,56 @@ +diff -uprN mg4j-0.9.orig/build.xml mg4j-0.9/build.xml +--- mg4j-0.9.orig/build.xml 2004-09-01 12:04:18.000000000 +0200 ++++ mg4j-0.9/build.xml 2004-11-17 00:30:41.879119728 +0100 +@@ -39,25 +39,34 @@ + includes="it/unimi/dsi/mg4j/query/parser/**" + nowarn="on" + debug="on" +- optimize="on" ++ optimize="on" + destdir="${build}" +- source="1.4" +- /> ++ source="1.4" ++ target="1.4"> ++ ++ <classpath> ++ <pathelement path="lib/jal.jar;lib/fastutil.jar;lib/gnu.getopt.jar;lib/libreadline-java.jar;lib/colt.jar" /> ++ </classpath> ++ </javac> + </target> + + <target name="compile" depends="init,compile-parser"> + <javac srcdir="${src}" + debug="on" +- optimize="on" ++ optimize="on" + destdir="${build}" +- source="1.4" +- /> ++ source="1.4" ++ target="1.4"> ++ ++ <classpath> ++ <pathelement path="lib/jal.jar;lib/fastutil.jar;lib/gnu.getopt.jar;lib/libreadline-java.jar;lib/colt.jar" /> ++ </classpath> ++ </javac> + </target> + + <target name="jar" depends="compile"> + <jar jarfile="mg4j-${version}.jar" +- basedir="${build}" +- /> ++ basedir="${build}" /> + </target> + + +@@ -69,8 +78,7 @@ + sourcepath="${src}" + private="off" + source="1.4" +- windowtitle="MG4J ${version}" +- > ++ windowtitle="MG4J ${version}"> + <link href="${j2se.apiurl}"/> + <link href="${fastutil.apiurl}"/> + <link href="${colt.apiurl}"/> |