diff options
author | Saleem Abdulrasool <compnerd@gentoo.org> | 2005-05-17 18:17:40 +0000 |
---|---|---|
committer | Saleem Abdulrasool <compnerd@gentoo.org> | 2005-05-17 18:17:40 +0000 |
commit | 02b4c696b2ec32fa5de712363f845b426bcc1645 (patch) | |
tree | b0ecad631b14e1a53bd2e7329fc13aa1bb7db9d9 /dev-util/netbeans/files | |
parent | Stable on ppc. (diff) | |
download | gentoo-2-02b4c696b2ec32fa5de712363f845b426bcc1645.tar.gz gentoo-2-02b4c696b2ec32fa5de712363f845b426bcc1645.tar.bz2 gentoo-2-02b4c696b2ec32fa5de712363f845b426bcc1645.zip |
Adding missing files, closing Bug #80877
(Portage version: 2.0.51.22)
Diffstat (limited to 'dev-util/netbeans/files')
-rw-r--r-- | dev-util/netbeans/files/antbuild.xml.patch | 14 | ||||
-rw-r--r-- | dev-util/netbeans/files/nbbuild.patch | 40 | ||||
-rw-r--r-- | dev-util/netbeans/files/startscript.sh | 21 |
3 files changed, 75 insertions, 0 deletions
diff --git a/dev-util/netbeans/files/antbuild.xml.patch b/dev-util/netbeans/files/antbuild.xml.patch new file mode 100644 index 000000000000..b4e704d3091f --- /dev/null +++ b/dev-util/netbeans/files/antbuild.xml.patch @@ -0,0 +1,14 @@ +--- build.xml.old 2005-03-20 22:39:56.064664753 +0200 ++++ build.xml 2005-03-20 22:40:28.277780414 +0200 +@@ -19,11 +19,8 @@ + <!-- LFI #2106 for all: --> + <binary clear="ant-api-1.6.2.zip" scrambled="ant-api-1.6.2.zip.scrambled" license="${extnl}/apache-license-2.0.txt"/> + <binary clear="ant-docs-1.6.2.zip" scrambled="ant-docs-1.6.2.zip.scrambled" license="${extnl}/apache-license-2.0.txt"/> +- <binary clear="ant-libs-1.6.2.zip" scrambled="ant-libs-1.6.2.zip.scrambled" license="${extnl}/apache-license-2.0.txt"/> + <binary clear="ant-misc-1.6.2.zip" scrambled="ant-misc-1.6.2.zip.scrambled" license="${extnl}/apache-license-2.0.txt"/> + </unscramble> +- <mkdir dir="lib"/> +- <unzip src="ant-libs-1.6.2.zip" dest="lib"/> + </target> + <target name="scramble"> + <taskdef name="scramble" classname="org.netbeans.nbbuild.Scramble" classpath="${extnl}/scrambler.jar"/> diff --git a/dev-util/netbeans/files/nbbuild.patch b/dev-util/netbeans/files/nbbuild.patch new file mode 100644 index 000000000000..4e08c6c8dd42 --- /dev/null +++ b/dev-util/netbeans/files/nbbuild.patch @@ -0,0 +1,40 @@ +diff -Naur nbbuildold/build.properties nbbuild/build.properties +--- nbbuildold/build.properties 2005-02-10 23:37:01.248593180 +0200 ++++ nbbuild/build.properties 2005-02-10 23:37:59.946697450 +0200 +@@ -56,7 +56,7 @@ + # a config.modules.XXX property, where XXX is the config name. + # Each is a list of module names, as subdirectories beneath the + # root of the source tree, separated by commas. +-moduleconfig=stable ++moduleconfig=stable-without-webapps + + # Dist directory for L10N kits + l10n.dist.dir=l10ndist +@@ -165,8 +165,6 @@ + web/core, \ + web/jspdebug, \ + web/examples, \ +- tomcatint/tomcat5, \ +- tomcatint/tomcat5/bundled, \ + monitor + + config.fixedmodules.platform=core, \ +diff -Naur nbbuildold/cluster.properties nbbuild/cluster.properties +--- nbbuildold/cluster.properties 2005-02-10 23:38:22.249317476 +0200 ++++ nbbuild/cluster.properties 2005-02-10 23:39:19.373660250 +0200 +@@ -150,7 +150,6 @@ + j2eeserver/j2eeapis, \ + j2eeserver/ant, \ + schema2beans/rt, \ +- tomcatint/tomcat5, \ + monitor, \ + httpserver, \ + httpserver/servletapi, \ +@@ -177,7 +176,6 @@ + ide/welcome, \ + ide/launcher/upgrade, \ + ide/applemenu, \ +- tomcatint/tomcat5/bundled, \ + web/examples + + nb.pkg.testtools.dir=testtools diff --git a/dev-util/netbeans/files/startscript.sh b/dev-util/netbeans/files/startscript.sh new file mode 100644 index 000000000000..8fe13cc00b01 --- /dev/null +++ b/dev-util/netbeans/files/startscript.sh @@ -0,0 +1,21 @@ +#!/bin/bash + +check_symlinks() { + for file in `find ${1} -type l` ; do + + if ! test -e ${file} ; then + echo "Broken symlink:" + echo "${file}" + fi + + done +} + +NBDIR="/usr/share/netbeans-4.0" + +check_symlinks ${NBDIR}/ide4/modules/ext +check_symlinks ${NBDIR}/ide4/modules/autoload/ext +check_symlinks ${NBDIR}/ide4/config/TagLibraries/JSTL11 +check_symlinks ${NBDIR}/platform4/modules/ext + +${NBDIR}/bin/netbeans |