diff options
author | Michael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com> | 2016-07-19 19:29:57 +0200 |
---|---|---|
committer | Patrice Clement <monsieurp@gentoo.org> | 2016-07-30 08:46:41 +0200 |
commit | 3e85c8c4859384b2e7860512dee265c8d18ec370 (patch) | |
tree | 7651bef4ad238b7146bfcac02f06ae99e39c6046 /dev-db/henplus | |
parent | x11-terms/xfce4-terminal: Bump to 0.6.90, early GTK+3 release (diff) | |
download | gentoo-3e85c8c4859384b2e7860512dee265c8d18ec370.tar.gz gentoo-3e85c8c4859384b2e7860512dee265c8d18ec370.tar.bz2 gentoo-3e85c8c4859384b2e7860512dee265c8d18ec370.zip |
dev-db/*: remove unused patches.
Squash all commit messages into a single one.
Closes: https://github.com/gentoo/gentoo/pull/1936
Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
Diffstat (limited to 'dev-db/henplus')
-rw-r--r-- | dev-db/henplus/files/henplus-0.9.7-build.xml.patch | 34 | ||||
-rw-r--r-- | dev-db/henplus/files/henplus.patch | 42 |
2 files changed, 0 insertions, 76 deletions
diff --git a/dev-db/henplus/files/henplus-0.9.7-build.xml.patch b/dev-db/henplus/files/henplus-0.9.7-build.xml.patch deleted file mode 100644 index 2e4a43a039e3..000000000000 --- a/dev-db/henplus/files/henplus-0.9.7-build.xml.patch +++ /dev/null @@ -1,34 +0,0 @@ ---- build.xml.orig 2006-10-17 22:25:57.000000000 +0200 -+++ build.xml 2006-10-17 22:27:34.000000000 +0200 -@@ -21,26 +21,26 @@ - <property name="libreadline-java" value="libreadline-java-0.8.0.jar"/> - - <path id="compile.classpath"> -- <fileset dir="${lib}"> -- <include name="${libreadline-java}"/> -- <include name="${commons-cli}"/> -- </fileset> -+ <fileset dir="${lib}" includes="**/*.jar"/> - </path> - - <path id="run.classpath"> - <path refid="compile.classpath" /> - <pathelement path="${classes}" /> - </path> -- -+ -+ <!-- - <taskdef name="ant-server" classname="net.sweetohm.ant.server.ServerTask"> - <classpath> - <pathelement location="${lib}/build/sat-0.7.jar" /> - </classpath> - </taskdef> -+ - - <target name="server"> - <ant-server/> - </target> -+ --> - - <target name="prepare"> - <tstamp> diff --git a/dev-db/henplus/files/henplus.patch b/dev-db/henplus/files/henplus.patch deleted file mode 100644 index abc92d364d70..000000000000 --- a/dev-db/henplus/files/henplus.patch +++ /dev/null @@ -1,42 +0,0 @@ ---- a/bin/henplus 2004-02-02 14:53:28.000000000 +0100 -+++ b/bin/henplus 2004-07-23 11:21:11.518166136 +0200 -@@ -2,6 +2,7 @@ - # $Id$ - ## - -+echo $(dirname $0) - # additional flags you might want to pass to the java interpreter - # like -Dfile.encoding=ISO-8859-1 - JAVA_FLAGS= -@@ -13,20 +14,8 @@ - JAVA=$JAVA_HOME/bin/java - fi - --##------------------ --THISDIR=`dirname $0` --HENPLUSDIR=$THISDIR/../share/henplus -- --# not yet installed ? Then look in the build directory --if [ ! -d "$HENPLUSDIR" ] ; then -- HENPLUSDIR=$THISDIR/../build --fi -- --# location of the readline lib. --# Modify this, if you installation stores this at a different --# position. --LD_LIBRARY_PATH=$THISDIR/../lib:/usr/lib/jni:$LD_LIBRARY_PATH --CLASSPATH=$CLASSPATH:$THISDIR/../share/java/libreadline-java.jar -+HENPLUSDIR=$(dirname $(java-config -p henplus)) -+CLASSPATH=$CLASSPATH:$(java-config -p libreadline-java) - - # you may just throw your own jar files in this dir. - # (like additional JDBC-drivers, that are not in default -@@ -65,7 +54,4 @@ - CLASSPATH=$CLASSPATH:$f - fi - done -- --export CLASSPATH LD_LIBRARY_PATH -- --exec $JAVA $JAVA_FLAGS henplus.HenPlus "$@" -+LD_LIBRARY_PATH="$(java-config -i libreadline-java):$LD_LIBRARY_PATH" exec $JAVA -cp $CLASSPATH $JAVA_FLAGS henplus.HenPlus "$@" |