svn commit: r312972 - in head/java/netbeans: . files
Pietro Cerutti
gahr at FreeBSD.org
Tue Feb 26 11:02:28 UTC 2013
Author: gahr
Date: Tue Feb 26 11:02:27 2013
New Revision: 312972
URL: http://svnweb.freebsd.org/changeset/ports/312972
Log:
- Update to 7.3
Release notes: http://netbeans.org/community/releases/73/relnotes.html
Modified:
head/java/netbeans/Makefile
head/java/netbeans/distinfo
head/java/netbeans/files/patch-platform-lib_nbexec (contents, props changed)
head/java/netbeans/pkg-plist
Modified: head/java/netbeans/Makefile
==============================================================================
--- head/java/netbeans/Makefile Tue Feb 26 11:00:09 2013 (r312971)
+++ head/java/netbeans/Makefile Tue Feb 26 11:02:27 2013 (r312972)
@@ -1,18 +1,12 @@
-# ex:ts=8
-# New ports collection makefile for: netbeans
-# Date Created: 2 Jun 2003
-# Whom: olgeni at FreeBSD.org
-#
+# Created by: olgeni at FreeBSD.org
# $FreeBSD$
-#
PORTNAME= netbeans
-PORTVERSION= 7.2.1
-PORTREVISION= 1
+PORTVERSION= 7.3
CATEGORIES= java devel
MASTER_SITES= http://download.netbeans.org/netbeans/${PORTVERSION}/final/zip/ \
http://dlc.sun.com.edgesuite.net/netbeans/${PORTVERSION}/final/zip/
-DISTNAME= netbeans-${PORTVERSION}-201210100934-ml
+DISTNAME= netbeans-${PORTVERSION}-201302132200
MAINTAINER= gahr at FreeBSD.org
COMMENT= A full-featured integrated environment for Java
@@ -35,10 +29,10 @@ DESKTOP_ENTRIES="NetBeans" \
${FALSE}
post-patch:
- @${REINPLACE_CMD} -i "" -e '19s|#||;19s|/path/to/jdk|${JAVA_HOME}|' \
+ @${REINPLACE_CMD} -i "" -e '57s|#||;57s|/path/to/jdk|${JAVA_HOME}|' \
${WRKSRC}/etc/netbeans.conf
@${REINPLACE_CMD} -i "" -e 's|%%GCONFTOOL2%%|${LOCALBASE}/bin/gconftool-2|g; \
- s|%%GREP%%|${GREP}|g;s|%%SED%%|${SED}|g;s|%%FGREP%%|`which fgrep`|g;s|%%AWK%%|${AWK}|g' \
+ s|%%GREP%%|${GREP}|g;s|%%SED%%|${SED}|g;s|%%AWK%%|${AWK}|g' \
${WRKSRC}/platform/lib/nbexec
@${FIND} ${WRKSRC} -name "*.orig" -delete
Modified: head/java/netbeans/distinfo
==============================================================================
--- head/java/netbeans/distinfo Tue Feb 26 11:00:09 2013 (r312971)
+++ head/java/netbeans/distinfo Tue Feb 26 11:02:27 2013 (r312972)
@@ -1,2 +1,2 @@
-SHA256 (netbeans-7.2.1-201210100934-ml.zip) = 2c798e8ebc5b9f6a73bfe06b5d7d6ce190343c7121f5cd60e98efb23044fb28f
-SIZE (netbeans-7.2.1-201210100934-ml.zip) = 271606944
+SHA256 (netbeans-7.3-201302132200.zip) = 0c1fbb318086ecb1cda8393f8f501e887a46af1c492776353e1e162bfd3f0559
+SIZE (netbeans-7.3-201302132200.zip) = 281722325
Modified: head/java/netbeans/files/patch-platform-lib_nbexec
==============================================================================
--- head/java/netbeans/files/patch-platform-lib_nbexec Tue Feb 26 11:00:09 2013 (r312971)
+++ head/java/netbeans/files/patch-platform-lib_nbexec Tue Feb 26 11:02:27 2013 (r312972)
@@ -1,99 +1,603 @@
---- platform/lib/nbexec.orig 2011-05-25 09:06:02.000000000 +0200
-+++ platform/lib/nbexec 2011-05-25 09:11:16.000000000 +0200
-@@ -182,7 +182,7 @@
- # if heap dump on OOME is supported enable it
- if "${jdkhome}/bin/java" -XX:+HeapDumpOnOutOfMemoryError > /dev/null 2>&1 ; then
- jargs="$jargs -XX:+HeapDumpOnOutOfMemoryError"
-- if echo $jargs | grep -v -- "-XX:HeapDumpPath=" > /dev/null ; then
-+ if echo $jargs | %%GREP%% -v -- "-XX:HeapDumpPath=" > /dev/null ; then
- jargs="$jargs -XX:HeapDumpPath=\"${userdir}/var/log/heapdump.hprof\""
- fi
- fi
-@@ -201,7 +201,7 @@
- if [ "`echo "${dir}"/*.$ex`" != "${dir}/*.$ex" ] ; then
- for x in "${dir}"/*.$ex ; do
- subx=`basename "$x"`
-- if echo "$paths" | fgrep -v "$subpath$subx" > /dev/null ; then
-+ if echo "$paths" | %%GREP%% -v "$subpath$subx" > /dev/null ; then
- if [ ! -z "$cp" ] ; then cp="$cp:" ; fi
- cp="$cp$x"
- if [ ! -z "$paths" ] ; then paths="$paths:" ; fi
-@@ -345,7 +345,7 @@
- }
-
- detect_gnome_proxy () {
-- gconftool=/usr/bin/gconftool-2
+--- platform/lib/nbexec.orig 1970-01-01 01:00:00.000000000 +0100
++++ platform/lib/nbexec 2013-02-26 10:40:18.000000000 +0100
+@@ -0,0 +1,600 @@
++#!/bin/sh
++# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
++#
++# Copyright 1997-2012 Oracle and/or its affiliates. All rights reserved.
++#
++# Oracle and Java are registered trademarks of Oracle and/or its affiliates.
++# Other names may be trademarks of their respective owners.
++#
++# The contents of this file are subject to the terms of either the GNU
++# General Public License Version 2 only ("GPL") or the Common
++# Development and Distribution License("CDDL") (collectively, the
++# "License"). You may not use this file except in compliance with the
++# License. You can obtain a copy of the License at
++# http://www.netbeans.org/cddl-gplv2.html
++# or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
++# specific language governing permissions and limitations under the
++# License. When distributing the software, include this License Header
++# Notice in each file and include the License file at
++# nbbuild/licenses/CDDL-GPL-2-CP. Oracle designates this
++# particular file as subject to the "Classpath" exception as provided
++# by Oracle in the GPL Version 2 section of the License file that
++# accompanied this code. If applicable, add the following below the
++# License Header, with the fields enclosed by brackets [] replaced by
++# your own identifying information:
++# "Portions Copyrighted [year] [name of copyright owner]"
++#
++# Contributor(s):
++#
++# The Original Software is NetBeans. The Initial Developer of the Original
++# Software is Sun Microsystems, Inc. Portions Copyright 1997-2011 Sun
++# Microsystems, Inc. All Rights Reserved.
++#
++# If you wish your version of this file to be governed by only the CDDL
++# or only the GPL Version 2, indicate your decision by adding
++# "[Contributor] elects to include this software in this distribution
++# under the [CDDL or GPL Version 2] license." If you do not indicate a
++# single choice of license, a recipient has the option to distribute
++# your version of this file under either the CDDL, the GPL Version 2 or
++# to extend the choice of license to its licensees as provided above.
++# However, if you add GPL Version 2 code and therefore, elected the GPL
++# Version 2 license, then the option applies only if the new code is
++# made subject to such option by the copyright holder.
++
++
++PRG=$0
++
++
++resolve_symlink () {
++ file="$1"
++ while [ -h "$file" ]; do
++ ls=`ls -ld "$file"`
++ link=`expr "$ls" : '^.*-> \(.*\)$' 2>/dev/null`
++ if expr "$link" : '^/' 2> /dev/null >/dev/null; then
++ file="$link"
++ else
++ file=`dirname "$1"`"/$link"
++ fi
++ done
++ echo "$file"
++}
++
++absolutize_path () {
++ oldpwd=`pwd`
++ cd "$1"
++ abspath=`pwd`
++ cd "${oldpwd}"
++ echo "$abspath"
++}
++
++PRG=`resolve_symlink "$PRG"`
++progdir=`dirname "$PRG"`
++plathome=`absolutize_path "$progdir/.."`
++
++jargs=${jreflags}
++jargs="$jargs -Dnetbeans.home=\"$plathome\""
++
++args=""
++
++prefixcp=""
++postfixcp=""
++
++updater_class=org.netbeans.updater.UpdaterFrame
++
++#
++# parse arguments
++#
++
++parse_args() {
++while [ $# -gt 0 ] ; do
++ case "$1" in
++ -h|-\?|-help|--help) cat >&2 <<EOF
++Usage: $0 {options} arguments
++
++General options:
++ --help show this help
++ --jdkhome <path> path to Java(TM) 2 SDK, Standard Edition
++ -J<jvm_option> pass <jvm_option> to JVM
++
++ --cp:p <classpath> prepend <classpath> to classpath
++ --cp:a <classpath> append <classpath> to classpath
++EOF
++ # go on and print IDE options as well
++ args="$args --help"
++ ;;
++ --jdkhome) shift; if [ $# -gt 0 ] ; then jdkhome=$1; fi
++ ;;
++ # this has to be here for purposes of updater.jar, but it should be
++ # better to handle this argument inside the java launcher part
++ --userdir) shift; if [ $# -gt 0 ] ; then userdir="$1"; fi
++ ;;
++ -cp|-cp:a|--cp|--cp:a)
++ shift;
++ if [ $# -gt 0 ] ; then
++ if [ ! -z "$postfixcp" ] ; then postfixcp="$postfixcp:" ; fi
++ postfixcp=$postfixcp$1;
++ fi
++ ;;
++
++ -cp:p|--cp:p)
++ shift;
++ if [ $# -gt 0 ] ; then
++ if [ ! -z "$prefixcp" ] ; then prefixcp="$prefixcp:" ; fi
++ prefixcp=$prefixcp$1;
++ fi
++ ;;
++ --clusters)
++ shift;
++ if [ $# -gt 0 ] ; then
++ clusters="$1"
++ fi
++ ;;
++ -psn*)
++ shift;
++ ;;
++ -J*) jopt=`expr "X-$1" : 'X--J\(.*\)'`; jargs="$jargs '$jopt'";;
++ *) args="$args \"$1\"" ;;
++ esac
++ shift
++done
++} # parse_args()
++
++# Process arguments given on the command line.
++parse_args "$@"
++
++#
++# check JDK
++#
++
++if [ -z "$jdkhome" ] ; then
++ # try to find JDK
++
++ case "`uname`" in
++ Darwin*)
++ # read Java Preferences
++ if [ -x "/usr/libexec/java_home" ]; then
++ jdkhome=`/usr/libexec/java_home --version 1.7.0_10+ --failfast`
++ if [ -z $jdkhome ]; then
++ jdkhome=`/usr/libexec/java_home --version 1.6 --failfast`
++ fi
++
++ # JDK1.7 Update 10 as a fallback
++ elif [ -f "/Library/Java/JavaVirtualMachines/jdk1.7.0_10.jdk/Contents/Home/bin/java" ] ; then
++ jdkhome="/Library/Java/JavaVirtualMachines/jdk1.7.0_10.jdk/Contents/Home"
++
++ # JDK1.6
++ elif [ -f "/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/bin/java" ] ; then
++ jdkhome="/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home"
++ elif [ -f "/System/Library/Frameworks/JavaVM.framework/Versions/1.6/Home/bin/java" ] ; then
++ jdkhome="/System/Library/Frameworks/JavaVM.framework/Versions/1.6/Home"
++ elif [ -f "/System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/bin/java" ] ; then
++ jdkhome="/System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home"
++ fi
++ echo Found jdkhome=$jdkhome
++ ;;
++ *) javac=`which javac`
++ if [ -z "$javac" ] ; then
++ java=`which java`
++ if [ ! -z "$java" ] ; then
++ java=`resolve_symlink "$java"`
++ jdkhome=`dirname $java`"/.."
++ fi
++ else
++ javac=`resolve_symlink "$javac"`
++ jdkhome=`dirname $javac`"/.."
++ fi
++ ;;
++ esac
++fi
++
++if [ ! -x "${jdkhome}/bin/java" ] ; then
++ echo "Cannot find java. Please use the --jdkhome switch." >&2
++ exit 2
++fi
++
++# Make sure native code libraries of jdk7 are found
++LD_LIBRARY_PATH=${jdkhome}/jre/lib/amd64:${jdkhome}/jre/lib/i386:${LD_LIBRARY_PATH}
++export LD_LIBRARY_PATH
++
++# if the Java option for heap dump on OOME is supported enable it
++if "${jdkhome}/bin/java" -XX:+HeapDumpOnOutOfMemoryError -cp "${progdir}/boot.jar" org.netbeans.NbExecJavaStartTry > /dev/null 2>&1 ; then
++ jargs="$jargs -XX:+HeapDumpOnOutOfMemoryError"
++ if echo $jargs | /usr/bin/grep -v -- "-XX:HeapDumpPath=" > /dev/null ; then
++ jargs="$jargs -XX:HeapDumpPath=\"${userdir}/var/log/heapdump.hprof\""
++ fi
++ # rename old heap dump to .old
++ mv "${userdir}/var/log/heapdump.hprof" "${userdir}/var/log/heapdump.hprof.old" > /dev/null 2>&1
++fi
++
++jargs_without_clusters="$jargs"
++jargs="-Dnetbeans.dirs=\"${clusters}\" $jargs_without_clusters"
++
++jdkhome=`absolutize_path "$jdkhome"`
++
++args="--userdir \"${userdir}\" $args"
++
++append_jars_to_cp() {
++ dir="$1"
++ subpath="$2"
++ for ex in jar zip ; do
++ if [ "`echo "${dir}"/*.$ex`" != "${dir}/*.$ex" ] ; then
++ for x in "${dir}"/*.$ex ; do
++ subx=`basename "$x"`
++ if echo "$paths" | /usr/bin/grep -v "$subpath$subx" > /dev/null ; then
++ if [ ! -z "$cp" ] ; then cp="$cp:" ; fi
++ cp="$cp$x"
++ if [ ! -z "$paths" ] ; then paths="$paths:" ; fi
++ paths="$paths$subpath$subx"
++ fi
++ done
++ fi
++ done
++}
++
++construct_cp() {
++ cp=""
++ updatercp=""
++ paths=""
++
++ build_cp "${userdir}"
++ build_cp "${plathome}"
++
++ if [ -f "${userdir}/modules/ext/updater.jar" ] ; then
++ updatercp="${userdir}/modules/ext/updater.jar"
++ else
++ if [ -f "${plathome}/modules/ext/updater.jar" ] ; then
++ updatercp="${plathome}/modules/ext/updater.jar"
++ fi
++ fi
++
++ # JDK tools
++ for x in "${jdkhome}/lib/dt.jar" "${jdkhome}/lib/tools.jar"; do
++ if [ -f "$x" ]; then
++ if [ ! -z "$cp" ] ; then cp="$cp:" ; fi
++ cp="${cp}$x"
++ fi
++ done
++
++ # user-specified prefix and postfix CLASSPATH
++
++ if [ ! -z "${prefixcp}" ] ; then
++ cp="${prefixcp}:$cp"
++ fi
++
++ if [ ! -z "${postfixcp}" ] ; then
++ cp="$cp:${postfixcp}"
++ fi
++
++
++ # prepend IDE's classpath to updater's classpath
++ # (just xml-apis.jar and one XML parser would suffice)
++ if [ ! -z "$updatercp" ] ; then
++ updatercp=${cp}:${updatercp}
++ else
++ updatercp=${cp}
++ fi
++}
++
++build_cp() {
++ base="$1"
++ append_jars_to_cp "${base}/lib/patches" "patches"
++ append_jars_to_cp "${base}/lib" "lib"
++ append_jars_to_cp "${base}/lib/locale" "locale"
++}
++
++do_run_updater() {
++ eval "\"$jdkhome/bin/java\"" -classpath "\"${updatercp}\"" "$jargs" "-Dnetbeans.user=\"$userdir\"" $updater_class "$args"
++ construct_cp
++}
++
++look_for_pre_runs() {
++ base="$1"
++ install_new_updater "$1"
++ dir="${base}/update/download"
++ if [ "`echo "${dir}"/*.nbm`" != "${dir}/*.nbm" -o "`echo "${dir}"/*.jar`" != "${dir}/*.jar" ] ; then
++ run_updater=yes
++ else
++ dir="${base}/update/deactivate"
++ if [ -f "${dir}/to_disable.txt" -o -f "${dir}/to_uninstall.txt" ] ; then
++ run_updater=yes
++ fi
++ fi
++}
++
++look_for_post_runs() {
++ base="$1"
++ install_new_updater "$1"
++ dir="${base}/update/download"
++ if [ \! -f "${dir}/install_later.xml" ] && [ "`echo "${dir}"/*.nbm`" != "${dir}/*.nbm" -o "`echo "${dir}"/*.jar`" != "${dir}/*.jar" ] ; then
++ run_updater=yes
++ else
++ dir="${base}/update/deactivate"
++ if [ \! -f "${dir}/deactivate_later.txt" ] ; then
++ if [ -f "${dir}/to_disable.txt" -o -f "${dir}/to_uninstall.txt" ] ; then
++ run_updater=yes
++ fi
++ fi
++ fi
++}
++
++look_for_new_clusters() {
++ base="$userdir"
++ dir="${base}/update/download"
++ newclusters="${dir}/netbeans.dirs"
++ if [ -f "${newclusters}" ] ; then
++ clusters=`cat "${newclusters}"`
++ jargs="-Dnetbeans.dirs=\"${clusters}\" $jargs_without_clusters"
++ rm -f "${newclusters}"
++ fi
++}
++
++delete_new_clusters_file() {
++ base="$userdir"
++ dir="${base}/update/download"
++ newclusters="${dir}/netbeans.dirs"
++ if [ \! -f "${newclusters}" ] ; then
++ rm -f "${newclusters}"
++ fi
++}
++
++install_new_updater() {
++ base="$1"
++ newUpdaterDir="${base}/update/new_updater"
++ if [ -d "${newUpdaterDir}" ]; then
++ mkdir -p "${base}/modules/ext/"
++ if [ -f "${newUpdaterDir}/updater.jar" ]; then
++ mv -f "${newUpdaterDir}/updater.jar" "${base}/modules/ext/"
++ fi
++ ls -l "${newUpdaterDir}/"updater_*.jar
++ for i in "${newUpdaterDir}/"updater_*.jar; do
++ mkdir -p "${base}/modules/ext/locale/"
++ mv -f "$i" "${base}/modules/ext/locale/"
++ done
++ rmdir "${newUpdaterDir}"
++ fi
++}
++
++# detect system http proxy setting
++
++detect_system_proxy () {
++ if [ ! -z "$http_proxy" ]; then
++ http_proxy_tmp=$http_proxy
++ fi
++ return 0
++}
++
++detect_gnome_proxy () {
+ gconftool=%%GCONFTOOL2%%
- if [ -x $gconftool ] ; then
- proxy_mode=`$gconftool --get /system/proxy/mode 2>/dev/null`
- if [ "$proxy_mode" = "manual" ] ; then
-@@ -354,7 +354,7 @@
- http_proxy_tmp=$http_proxy_host:$http_proxy_port
- http_non_proxy_hosts=`$gconftool --get /system/http_proxy/ignore_hosts 2>/dev/null`
- if [ $? ] ; then
-- http_non_proxy_hosts=`echo $http_non_proxy_hosts | /bin/sed 's/\]//'`
-+ http_non_proxy_hosts=`echo $http_non_proxy_hosts | %%SED%% 's/\]//'`
- fi
- socks_proxy_host=`$gconftool --get /system/proxy/socks_host 2>/dev/null`
- socks_proxy_port=`$gconftool --get /system/proxy/socks_port 2>/dev/null`
-@@ -386,26 +386,26 @@
- detect_kde_proxy () {
- kioslaverc="${HOME}/.kde/share/config/kioslaverc"
- if [ -f $kioslaverc ] ; then
-- if /bin/grep 'ProxyType=1' "$kioslaverc" >/dev/null 2>&1; then
-- http_proxy_tmp=`/bin/grep 'httpProxy=http://' "$kioslaverc"`
-+ if %%GREP%% 'ProxyType=1' "$kioslaverc" >/dev/null 2>&1; then
-+ http_proxy_tmp=`%%GREP%% 'httpProxy=http://' "$kioslaverc"`
- if [ $? ] ; then
-- http_proxy_tmp=`echo $http_proxy_tmp | /bin/sed 's/httpProxy=http:\/\///'`
-+ http_proxy_tmp=`echo $http_proxy_tmp | %%SED%% 's/httpProxy=http:\/\///'`
- return 0
- fi
-- http_non_proxy_hosts=`/bin/grep 'NoProxyFor=' "$kioslaverc"`
-+ http_non_proxy_hosts=`%%GREP%% 'NoProxyFor=' "$kioslaverc"`
- if [ $? ] ; then
-- http_non_proxy_hosts=`echo $http_non_proxy_hosts | /bin/sed 's/NoProxyFor=//'`
-+ http_non_proxy_hosts=`echo $http_non_proxy_hosts | %%SED%% 's/NoProxyFor=//'`
- fi
- else
-- if /bin/grep 'ProxyType=0' "$kioslaverc" >/dev/null 2>&1; then
-+ if %%GREP%% 'ProxyType=0' "$kioslaverc" >/dev/null 2>&1; then
- detect_system_proxy
- if [ -z "$http_proxy_tmp" ]; then
- http_proxy_tmp="DIRECT"
- fi
- return 0
- else
-- if /bin/grep 'ProxyType=2' "$kioslaverc" >/dev/null 2>&1; then
-- pac_file=`grep "Proxy Config Script=" $kioslaverc | cut -f 2 -d =`
-+ if %%GREP%% 'ProxyType=2' "$kioslaverc" >/dev/null 2>&1; then
-+ pac_file=`%%GREP%% "Proxy Config Script=" $kioslaverc | cut -f 2 -d =`
- http_proxy_tmp="PAC "$pac_file
- return 0
- fi
-@@ -427,9 +427,9 @@
- close
- EOF
-
-- if /usr/bin/grep "ProxyAuto.*: *1" ${scutil_out} >/dev/null 2>&1; then
-- if /usr/bin/grep "ProxyAutoConfigEnable.*: *1" ${scutil_out} >/dev/null 2>&1; then
-- http_proxy_tmp="PAC `/usr/bin/grep ProxyAutoConfigURLString ${scutil_out} | /usr/bin/awk '{print $3}'`"
-+ if %%GREP%% "ProxyAuto.*: *1" ${scutil_out} >/dev/null 2>&1; then
-+ if %%GREP%% "ProxyAutoConfigEnable.*: *1" ${scutil_out} >/dev/null 2>&1; then
-+ http_proxy_tmp="PAC `%%GREP%% ProxyAutoConfigURLString ${scutil_out} | /usr/bin/awk '{print $3}'`"
- rm ${scutil_out}
- return 0
- fi
-@@ -438,9 +438,9 @@
- return 1
- fi
-
-- if /usr/bin/grep "HTTPEnable *: *1" ${scutil_out} >/dev/null 2>&1; then
-- http_proxy_host=`/usr/bin/grep HTTPProxy ${scutil_out} | /usr/bin/awk '{print $3}'`
-- http_proxy_port=`/usr/bin/grep HTTPPort ${scutil_out} | /usr/bin/awk '{print $3} '`
-+ if %%GREP%% "HTTPEnable *: *1" ${scutil_out} >/dev/null 2>&1; then
-+ http_proxy_host=`%%GREP%% HTTPProxy ${scutil_out} | /usr/bin/awk '{print $3}'`
-+ http_proxy_port=`%%GREP%% HTTPPort ${scutil_out} | /usr/bin/awk '{print $3} '`
- http_proxy_tmp=$http_proxy_host:$http_proxy_port
- rm ${scutil_out}
- return 0
++ if [ -x $gconftool ] ; then
++ proxy_mode=`$gconftool --get /system/proxy/mode 2>/dev/null`
++ if [ "$proxy_mode" = "manual" ] ; then
++ http_proxy_host=`$gconftool --get /system/http_proxy/host 2>/dev/null`
++ http_proxy_port=`$gconftool --get /system/http_proxy/port 2>/dev/null`
++ http_proxy_tmp=$http_proxy_host:$http_proxy_port
++ http_non_proxy_hosts=`$gconftool --get /system/http_proxy/ignore_hosts 2>/dev/null`
++ if [ $? ] ; then
++ http_non_proxy_hosts=`echo $http_non_proxy_hosts | /usr/bin/sed 's/\]//'`
++ fi
++ socks_proxy_host=`$gconftool --get /system/proxy/socks_host 2>/dev/null`
++ socks_proxy_port=`$gconftool --get /system/proxy/socks_port 2>/dev/null`
++ socks_proxy_tmp=$socks_proxy_host:$socks_proxy_port
++
++ return 0
++ else
++ if [ "$proxy_mode" = "none" ] ; then
++ detect_system_proxy
++ if [ -z "$http_proxy_tmp" ]; then
++ http_proxy_tmp="DIRECT"
++ fi
++ return 0
++ else
++ if [ "$proxy_mode" = "auto" ] ; then
++ detect_system_proxy
++ pac_file=`$gconftool --get /system/proxy/autoconfig_url 2>/dev/null`
++ if [ ! -z "$pac_file" ]; then
++ http_proxy_tmp="PAC "$pac_file
++ fi
++ return 0
++ fi
++ fi
++ fi
++ fi
++ return 1
++}
++
++detect_kde_proxy () {
++ kioslaverc="${HOME}/.kde/share/config/kioslaverc"
++ if [ -f $kioslaverc ] ; then
++ if /usr/bin/grep 'ProxyType=1' "$kioslaverc" >/dev/null 2>&1; then
++ http_proxy_tmp=`/usr/bin/grep 'httpProxy=http://' "$kioslaverc"`
++ if [ $? ] ; then
++ http_proxy_tmp=`echo $http_proxy_tmp | /usr/bin/sed 's/httpProxy=http:\/\///'`
++ return 0
++ fi
++ http_non_proxy_hosts=`/usr/bin/grep 'NoProxyFor=' "$kioslaverc"`
++ if [ $? ] ; then
++ http_non_proxy_hosts=`echo $http_non_proxy_hosts | /usr/bin/sed 's/NoProxyFor=//'`
++ fi
++ else
++ if /usr/bin/grep 'ProxyType=0' "$kioslaverc" >/dev/null 2>&1; then
++ detect_system_proxy
++ if [ -z "$http_proxy_tmp" ]; then
++ http_proxy_tmp="DIRECT"
++ fi
++ return 0
++ else
++ if /usr/bin/grep 'ProxyType=2' "$kioslaverc" >/dev/null 2>&1; then
++ pac_file=`/usr/bin/grep "Proxy Config Script=" $kioslaverc | cut -f 2 -d =`
++ http_proxy_tmp="PAC "$pac_file
++ return 0
++ fi
++ fi
++ fi
++ fi
++ return 1
++}
++
++detect_macosx_proxy () {
++ if [ ! -x /usr/sbin/scutil ] ; then
++ return 1
++ fi
++
++ scutil_out=/tmp/nb-proxy-detection.$$
++ cat <<EOF | /usr/sbin/scutil > ${scutil_out}
++open
++show State:/Network/Global/Proxies
++close
++EOF
++
++ if /usr/bin/grep "ProxyAuto.*: *1" ${scutil_out} >/dev/null 2>&1; then
++ if /usr/bin/grep "ProxyAutoConfigEnable.*: *1" ${scutil_out} >/dev/null 2>&1; then
++ http_proxy_tmp="PAC `/usr/bin/grep ProxyAutoConfigURLString ${scutil_out} | /usr/bin/awk 'END{print $3}'`"
++ rm ${scutil_out}
++ return 0
++ fi
++
++ rm ${scutil_out}
++ return 1
++ fi
++
++ if /usr/bin/grep "HTTPEnable *: *1" ${scutil_out} >/dev/null 2>&1; then
++ http_proxy_host=`/usr/bin/grep HTTPProxy ${scutil_out} | /usr/bin/awk 'END{print $3}'`
++ http_proxy_port=`/usr/bin/grep HTTPPort ${scutil_out} | /usr/bin/awk 'END{print $3} '`
++ http_proxy_tmp=$http_proxy_host:$http_proxy_port
++ rm ${scutil_out}
++ return 0
++ fi
++
++ http_proxy_tmp="DIRECT"
++ rm ${scutil_out}
++ return 0
++}
++
++unset http_proxy_tmp
++
++if [ `uname` = Darwin ] ; then
++ detect_macosx_proxy
++else
++ if [ "$KDE_FULL_SESSION" = "true" ] ; then
++ detect_kde_proxy
++ else
++ if [ ! -z "$GNOME_DESKTOP_SESSION_ID" ] ; then
++ detect_gnome_proxy
++ fi
++ fi
++fi
++
++# fall back to the environment-defined http_proxy if nothing found so far
++if [ -z "$http_proxy_tmp" ]; then
++ http_proxy_tmp=$http_proxy
++fi
++
++if [ ! -z "$http_proxy_tmp" ] ; then
++ jargs="-Dnetbeans.system_http_proxy=\"$http_proxy_tmp\" -Dnetbeans.system_http_non_proxy_hosts=\"$http_non_proxy_hosts\" $jargs"
++fi
++
++if [ ! -z "$socks_proxy_tmp" ] ; then
++ jargs="-Dnetbeans.system_socks_proxy=\"$socks_proxy_tmp\" $jargs"
++fi
++
++if [ ! -z "${DEFAULT_USERDIR_ROOT}" ] ; then
++ jargs="-Dnetbeans.default_userdir_root=\"${DEFAULT_USERDIR_ROOT}\" $jargs"
++ unset DEFAULT_USERDIR_ROOT
++fi
++
++# http://java.sun.com/j2se/1.5.0/docs/guide/2d/flags.html#pixmaps
++J2D_PIXMAPS=shared
++export J2D_PIXMAPS
++
++# Check DISPLAY variable on non-Mac
++if [ "no$DISPLAY" = "no" -a `uname` != Darwin ]; then
++ echo "$0: WARNING: environment variable DISPLAY is not set"
++fi
++
++
++# The Startup Notification Protocol Specification [1]
++# recommends to unset the DESKTOP_STARTUP_ID environment variable
++# to avoid possible reuse by some process started later by this
++# process, e.g. when a browser will be launched by the NetBeans [2].
++#
++# See:
++# [1] http://standards.freedesktop.org/startup-notification-spec
++# [2] http://netbeans.org/bugzilla/show_bug.cgi?id=76970
++if [ ! -z "$DESKTOP_STARTUP_ID" ] ; then
++ # Save a value for later using
++ NB_DESKTOP_STARTUP_ID="$DESKTOP_STARTUP_ID"; export NB_DESKTOP_STARTUP_ID
++
++ unset DESKTOP_STARTUP_ID
++fi
++
++
++#
++# main loop
++#
++
++# clear to prevent loop from ending
++restart="yes"
++first_time_starting="yes"
++restart_file="${userdir}/var/restart"
++
++while [ "$restart" ] ; do
++
++ #
++ # build CLASSPATH
++ #
++ construct_cp
++
++ # First check for pre-run updates.
++ if [ "$first_time_starting" ] ; then
++ run_updater=""
++ look_for_pre_runs "$plathome"
++ save="$IFS"
++ IFS=':' ; for oneCls in $clusters ; do
++ IFS="$save"
++ look_for_pre_runs "$oneCls"
++ done
++ IFS="$save"
++ look_for_pre_runs "$userdir"
++ if [ "$run_updater" ] ; then do_run_updater ; fi
++ # Do not check this after a restart, it makes no sense.
++ first_time_starting=""
++ fi
++
++ #
++ # let's go
++ #
++ delete_new_clusters_file
++ rm -f "${restart_file}"
++ eval ${_NB_PROFILE_CMD} "\"${jdkhome}/bin/java\"" -Djdk.home="\"${jdkhome}\"" -classpath "\"$cp\"" \
++ "$jargs" org.netbeans.Main "$args" '<&0' '&'
++ PID=$!
++ trap "kill $PID" EXIT
++ wait $PID
++ exitcode=$?
++ trap '' EXIT
++ look_for_new_clusters
++ # If we should update anything, do it and restart IDE.
++ run_updater=""
++ look_for_post_runs "$plathome"
++
++ save="$IFS"
++ IFS=':' ; for oneCls in $clusters ; do
++ IFS="$save"
++ look_for_post_runs "$oneCls"
++ done
++ IFS="$save"
++ look_for_post_runs "$userdir"
++ if [ "$run_updater" ] ; then
++ do_run_updater
++ restart="yes"
++ else
++ if [ ! -f "${restart_file}" ] ; then
++ # will fall thru loop and exit
++ restart=""
++ fi
++ fi
++
++done
++
++# and we exit.
++exit $exitcode
Modified: head/java/netbeans/pkg-plist
==============================================================================
--- head/java/netbeans/pkg-plist Tue Feb 26 11:00:09 2013 (r312971)
+++ head/java/netbeans/pkg-plist Tue Feb 26 11:02:27 2013 (r312972)
@@ -1,7106 +1,7223 @@
bin/netbeans-%%PORTVERSION%%
-netbeans-%%PORTVERSION%%/CREDITS.html
-netbeans-%%PORTVERSION%%/LICENSE.txt
-netbeans-%%PORTVERSION%%/README.html
-netbeans-%%PORTVERSION%%/THIRDPARTYLICENSE.txt
-netbeans-%%PORTVERSION%%/apisupport/.lastModified
-netbeans-%%PORTVERSION%%/apisupport/VERSION.txt
-netbeans-%%PORTVERSION%%/apisupport/ant/nblib/org-netbeans-modules-apisupport-ant.jar
-netbeans-%%PORTVERSION%%/apisupport/config/Modules/org-netbeans-modules-apisupport-ant.xml
-netbeans-%%PORTVERSION%%/apisupport/config/Modules/org-netbeans-modules-apisupport-crudsample.xml
-netbeans-%%PORTVERSION%%/apisupport/config/Modules/org-netbeans-modules-apisupport-feedreader.xml
-netbeans-%%PORTVERSION%%/apisupport/config/Modules/org-netbeans-modules-apisupport-installer-maven.xml
-netbeans-%%PORTVERSION%%/apisupport/config/Modules/org-netbeans-modules-apisupport-installer.xml
-netbeans-%%PORTVERSION%%/apisupport/config/Modules/org-netbeans-modules-apisupport-kit.xml
-netbeans-%%PORTVERSION%%/apisupport/config/Modules/org-netbeans-modules-apisupport-osgidemo.xml
-netbeans-%%PORTVERSION%%/apisupport/config/Modules/org-netbeans-modules-apisupport-paintapp.xml
-netbeans-%%PORTVERSION%%/apisupport/config/Modules/org-netbeans-modules-apisupport-project.xml
-netbeans-%%PORTVERSION%%/apisupport/config/Modules/org-netbeans-modules-apisupport-refactoring.xml
-netbeans-%%PORTVERSION%%/apisupport/config/Modules/org-netbeans-modules-apisupport-wizards.xml
-netbeans-%%PORTVERSION%%/apisupport/config/Modules/org-netbeans-modules-maven-apisupport.xml
-netbeans-%%PORTVERSION%%/apisupport/modules/locale/org-netbeans-modules-apisupport-ant_ja.jar
-netbeans-%%PORTVERSION%%/apisupport/modules/locale/org-netbeans-modules-apisupport-ant_pt_BR.jar
-netbeans-%%PORTVERSION%%/apisupport/modules/locale/org-netbeans-modules-apisupport-ant_ru.jar
-netbeans-%%PORTVERSION%%/apisupport/modules/locale/org-netbeans-modules-apisupport-ant_zh_CN.jar
-netbeans-%%PORTVERSION%%/apisupport/modules/locale/org-netbeans-modules-apisupport-crudsample_ja.jar
-netbeans-%%PORTVERSION%%/apisupport/modules/locale/org-netbeans-modules-apisupport-crudsample_pt_BR.jar
-netbeans-%%PORTVERSION%%/apisupport/modules/locale/org-netbeans-modules-apisupport-crudsample_ru.jar
-netbeans-%%PORTVERSION%%/apisupport/modules/locale/org-netbeans-modules-apisupport-crudsample_zh_CN.jar
-netbeans-%%PORTVERSION%%/apisupport/modules/locale/org-netbeans-modules-apisupport-feedreader_ja.jar
-netbeans-%%PORTVERSION%%/apisupport/modules/locale/org-netbeans-modules-apisupport-feedreader_pt_BR.jar
-netbeans-%%PORTVERSION%%/apisupport/modules/locale/org-netbeans-modules-apisupport-feedreader_ru.jar
-netbeans-%%PORTVERSION%%/apisupport/modules/locale/org-netbeans-modules-apisupport-feedreader_zh_CN.jar
-netbeans-%%PORTVERSION%%/apisupport/modules/locale/org-netbeans-modules-apisupport-installer-maven_ja.jar
-netbeans-%%PORTVERSION%%/apisupport/modules/locale/org-netbeans-modules-apisupport-installer-maven_pt_BR.jar
-netbeans-%%PORTVERSION%%/apisupport/modules/locale/org-netbeans-modules-apisupport-installer-maven_ru.jar
-netbeans-%%PORTVERSION%%/apisupport/modules/locale/org-netbeans-modules-apisupport-installer-maven_zh_CN.jar
-netbeans-%%PORTVERSION%%/apisupport/modules/locale/org-netbeans-modules-apisupport-installer_ja.jar
-netbeans-%%PORTVERSION%%/apisupport/modules/locale/org-netbeans-modules-apisupport-installer_pt_BR.jar
-netbeans-%%PORTVERSION%%/apisupport/modules/locale/org-netbeans-modules-apisupport-installer_ru.jar
-netbeans-%%PORTVERSION%%/apisupport/modules/locale/org-netbeans-modules-apisupport-installer_zh_CN.jar
-netbeans-%%PORTVERSION%%/apisupport/modules/locale/org-netbeans-modules-apisupport-kit_ja.jar
-netbeans-%%PORTVERSION%%/apisupport/modules/locale/org-netbeans-modules-apisupport-kit_pt_BR.jar
-netbeans-%%PORTVERSION%%/apisupport/modules/locale/org-netbeans-modules-apisupport-kit_ru.jar
-netbeans-%%PORTVERSION%%/apisupport/modules/locale/org-netbeans-modules-apisupport-kit_zh_CN.jar
-netbeans-%%PORTVERSION%%/apisupport/modules/locale/org-netbeans-modules-apisupport-osgidemo_ja.jar
-netbeans-%%PORTVERSION%%/apisupport/modules/locale/org-netbeans-modules-apisupport-osgidemo_pt_BR.jar
-netbeans-%%PORTVERSION%%/apisupport/modules/locale/org-netbeans-modules-apisupport-osgidemo_ru.jar
-netbeans-%%PORTVERSION%%/apisupport/modules/locale/org-netbeans-modules-apisupport-osgidemo_zh_CN.jar
-netbeans-%%PORTVERSION%%/apisupport/modules/locale/org-netbeans-modules-apisupport-paintapp_ja.jar
-netbeans-%%PORTVERSION%%/apisupport/modules/locale/org-netbeans-modules-apisupport-paintapp_pt_BR.jar
-netbeans-%%PORTVERSION%%/apisupport/modules/locale/org-netbeans-modules-apisupport-paintapp_ru.jar
-netbeans-%%PORTVERSION%%/apisupport/modules/locale/org-netbeans-modules-apisupport-paintapp_zh_CN.jar
-netbeans-%%PORTVERSION%%/apisupport/modules/locale/org-netbeans-modules-apisupport-project_ja.jar
-netbeans-%%PORTVERSION%%/apisupport/modules/locale/org-netbeans-modules-apisupport-project_pt_BR.jar
-netbeans-%%PORTVERSION%%/apisupport/modules/locale/org-netbeans-modules-apisupport-project_ru.jar
-netbeans-%%PORTVERSION%%/apisupport/modules/locale/org-netbeans-modules-apisupport-project_zh_CN.jar
-netbeans-%%PORTVERSION%%/apisupport/modules/locale/org-netbeans-modules-apisupport-refactoring_ja.jar
-netbeans-%%PORTVERSION%%/apisupport/modules/locale/org-netbeans-modules-apisupport-refactoring_pt_BR.jar
-netbeans-%%PORTVERSION%%/apisupport/modules/locale/org-netbeans-modules-apisupport-refactoring_ru.jar
-netbeans-%%PORTVERSION%%/apisupport/modules/locale/org-netbeans-modules-apisupport-refactoring_zh_CN.jar
-netbeans-%%PORTVERSION%%/apisupport/modules/locale/org-netbeans-modules-apisupport-wizards_ja.jar
-netbeans-%%PORTVERSION%%/apisupport/modules/locale/org-netbeans-modules-apisupport-wizards_pt_BR.jar
-netbeans-%%PORTVERSION%%/apisupport/modules/locale/org-netbeans-modules-apisupport-wizards_ru.jar
-netbeans-%%PORTVERSION%%/apisupport/modules/locale/org-netbeans-modules-apisupport-wizards_zh_CN.jar
-netbeans-%%PORTVERSION%%/apisupport/modules/locale/org-netbeans-modules-maven-apisupport_ja.jar
-netbeans-%%PORTVERSION%%/apisupport/modules/locale/org-netbeans-modules-maven-apisupport_pt_BR.jar
-netbeans-%%PORTVERSION%%/apisupport/modules/locale/org-netbeans-modules-maven-apisupport_ru.jar
-netbeans-%%PORTVERSION%%/apisupport/modules/locale/org-netbeans-modules-maven-apisupport_zh_CN.jar
-netbeans-%%PORTVERSION%%/apisupport/modules/org-netbeans-modules-apisupport-ant.jar
-netbeans-%%PORTVERSION%%/apisupport/modules/org-netbeans-modules-apisupport-crudsample.jar
-netbeans-%%PORTVERSION%%/apisupport/modules/org-netbeans-modules-apisupport-feedreader.jar
-netbeans-%%PORTVERSION%%/apisupport/modules/org-netbeans-modules-apisupport-installer-maven.jar
-netbeans-%%PORTVERSION%%/apisupport/modules/org-netbeans-modules-apisupport-installer.jar
-netbeans-%%PORTVERSION%%/apisupport/modules/org-netbeans-modules-apisupport-kit.jar
-netbeans-%%PORTVERSION%%/apisupport/modules/org-netbeans-modules-apisupport-osgidemo.jar
-netbeans-%%PORTVERSION%%/apisupport/modules/org-netbeans-modules-apisupport-paintapp.jar
-netbeans-%%PORTVERSION%%/apisupport/modules/org-netbeans-modules-apisupport-project.jar
-netbeans-%%PORTVERSION%%/apisupport/modules/org-netbeans-modules-apisupport-refactoring.jar
-netbeans-%%PORTVERSION%%/apisupport/modules/org-netbeans-modules-apisupport-wizards.jar
-netbeans-%%PORTVERSION%%/apisupport/modules/org-netbeans-modules-maven-apisupport.jar
-netbeans-%%PORTVERSION%%/apisupport/update_tracking/org-netbeans-modules-apisupport-ant.xml
-netbeans-%%PORTVERSION%%/apisupport/update_tracking/org-netbeans-modules-apisupport-crudsample.xml
-netbeans-%%PORTVERSION%%/apisupport/update_tracking/org-netbeans-modules-apisupport-feedreader.xml
-netbeans-%%PORTVERSION%%/apisupport/update_tracking/org-netbeans-modules-apisupport-installer-maven.xml
-netbeans-%%PORTVERSION%%/apisupport/update_tracking/org-netbeans-modules-apisupport-installer.xml
-netbeans-%%PORTVERSION%%/apisupport/update_tracking/org-netbeans-modules-apisupport-kit.xml
-netbeans-%%PORTVERSION%%/apisupport/update_tracking/org-netbeans-modules-apisupport-osgidemo.xml
-netbeans-%%PORTVERSION%%/apisupport/update_tracking/org-netbeans-modules-apisupport-paintapp.xml
-netbeans-%%PORTVERSION%%/apisupport/update_tracking/org-netbeans-modules-apisupport-project.xml
-netbeans-%%PORTVERSION%%/apisupport/update_tracking/org-netbeans-modules-apisupport-refactoring.xml
-netbeans-%%PORTVERSION%%/apisupport/update_tracking/org-netbeans-modules-apisupport-wizards.xml
-netbeans-%%PORTVERSION%%/apisupport/update_tracking/org-netbeans-modules-maven-apisupport.xml
-netbeans-%%PORTVERSION%%/bin/netbeans
-netbeans-%%PORTVERSION%%/bin/netbeans.exe
-netbeans-%%PORTVERSION%%/bin/netbeans64.exe
-netbeans-%%PORTVERSION%%/cnd/.lastModified
-netbeans-%%PORTVERSION%%/cnd/VERSION.txt
-netbeans-%%PORTVERSION%%/cnd/bin/GdbKillProc.exe
-netbeans-%%PORTVERSION%%/cnd/bin/Linux-x86/libBuildTrace.so
-netbeans-%%PORTVERSION%%/cnd/bin/Linux-x86/rfs_controller
-netbeans-%%PORTVERSION%%/cnd/bin/Linux-x86/rfs_preload.so
-netbeans-%%PORTVERSION%%/cnd/bin/Linux-x86/rfs_test_env
-netbeans-%%PORTVERSION%%/cnd/bin/Linux-x86_64/libBuildTrace.so
-netbeans-%%PORTVERSION%%/cnd/bin/Linux-x86_64/rfs_controller
-netbeans-%%PORTVERSION%%/cnd/bin/Linux-x86_64/rfs_preload.so
-netbeans-%%PORTVERSION%%/cnd/bin/Linux-x86_64/rfs_test_env
-netbeans-%%PORTVERSION%%/cnd/bin/MacOSX-x86/libBuildTrace.dylib
-netbeans-%%PORTVERSION%%/cnd/bin/MacOSX-x86_64/libBuildTrace.dylib
-netbeans-%%PORTVERSION%%/cnd/bin/SunOS-sparc/libBuildTrace.so
-netbeans-%%PORTVERSION%%/cnd/bin/SunOS-sparc/rfs_controller
-netbeans-%%PORTVERSION%%/cnd/bin/SunOS-sparc/rfs_preload.so
-netbeans-%%PORTVERSION%%/cnd/bin/SunOS-sparc/rfs_test_env
-netbeans-%%PORTVERSION%%/cnd/bin/SunOS-sparc_64/libBuildTrace.so
-netbeans-%%PORTVERSION%%/cnd/bin/SunOS-sparc_64/rfs_controller
-netbeans-%%PORTVERSION%%/cnd/bin/SunOS-sparc_64/rfs_preload.so
-netbeans-%%PORTVERSION%%/cnd/bin/SunOS-sparc_64/rfs_test_env
-netbeans-%%PORTVERSION%%/cnd/bin/SunOS-x86/libBuildTrace.so
-netbeans-%%PORTVERSION%%/cnd/bin/SunOS-x86/rfs_controller
-netbeans-%%PORTVERSION%%/cnd/bin/SunOS-x86/rfs_preload.so
-netbeans-%%PORTVERSION%%/cnd/bin/SunOS-x86/rfs_test_env
-netbeans-%%PORTVERSION%%/cnd/bin/SunOS-x86_64/libBuildTrace.so
-netbeans-%%PORTVERSION%%/cnd/bin/SunOS-x86_64/rfs_controller
-netbeans-%%PORTVERSION%%/cnd/bin/SunOS-x86_64/rfs_preload.so
-netbeans-%%PORTVERSION%%/cnd/bin/SunOS-x86_64/rfs_test_env
-netbeans-%%PORTVERSION%%/cnd/bin/dorun.sh
-netbeans-%%PORTVERSION%%/cnd/bin/rfs_test_env.sh
-netbeans-%%PORTVERSION%%/cnd/config/Modules/org-netbeans-modules-cnd-antlr.xml
-netbeans-%%PORTVERSION%%/cnd/config/Modules/org-netbeans-modules-cnd-api-model.xml
-netbeans-%%PORTVERSION%%/cnd/config/Modules/org-netbeans-modules-cnd-api-project.xml
-netbeans-%%PORTVERSION%%/cnd/config/Modules/org-netbeans-modules-cnd-api-remote.xml
-netbeans-%%PORTVERSION%%/cnd/config/Modules/org-netbeans-modules-cnd-apt.xml
-netbeans-%%PORTVERSION%%/cnd/config/Modules/org-netbeans-modules-cnd-asm.xml
-netbeans-%%PORTVERSION%%/cnd/config/Modules/org-netbeans-modules-cnd-callgraph.xml
-netbeans-%%PORTVERSION%%/cnd/config/Modules/org-netbeans-modules-cnd-classview.xml
-netbeans-%%PORTVERSION%%/cnd/config/Modules/org-netbeans-modules-cnd-cncppunit.xml
-netbeans-%%PORTVERSION%%/cnd/config/Modules/org-netbeans-modules-cnd-completion.xml
-netbeans-%%PORTVERSION%%/cnd/config/Modules/org-netbeans-modules-cnd-debugger-common2.xml
-netbeans-%%PORTVERSION%%/cnd/config/Modules/org-netbeans-modules-cnd-debugger-gdb2.xml
-netbeans-%%PORTVERSION%%/cnd/config/Modules/org-netbeans-modules-cnd-discovery.xml
-netbeans-%%PORTVERSION%%/cnd/config/Modules/org-netbeans-modules-cnd-dwarfdiscovery.xml
-netbeans-%%PORTVERSION%%/cnd/config/Modules/org-netbeans-modules-cnd-dwarfdump.xml
-netbeans-%%PORTVERSION%%/cnd/config/Modules/org-netbeans-modules-cnd-editor.xml
-netbeans-%%PORTVERSION%%/cnd/config/Modules/org-netbeans-modules-cnd-folding.xml
-netbeans-%%PORTVERSION%%/cnd/config/Modules/org-netbeans-modules-cnd-gotodeclaration.xml
-netbeans-%%PORTVERSION%%/cnd/config/Modules/org-netbeans-modules-cnd-highlight.xml
-netbeans-%%PORTVERSION%%/cnd/config/Modules/org-netbeans-modules-cnd-kit.xml
-netbeans-%%PORTVERSION%%/cnd/config/Modules/org-netbeans-modules-cnd-lexer.xml
-netbeans-%%PORTVERSION%%/cnd/config/Modules/org-netbeans-modules-cnd-litemodel.xml
-netbeans-%%PORTVERSION%%/cnd/config/Modules/org-netbeans-modules-cnd-makeproject-source-bridge.xml
-netbeans-%%PORTVERSION%%/cnd/config/Modules/org-netbeans-modules-cnd-makeproject.xml
-netbeans-%%PORTVERSION%%/cnd/config/Modules/org-netbeans-modules-cnd-model-services.xml
-netbeans-%%PORTVERSION%%/cnd/config/Modules/org-netbeans-modules-cnd-modeldiscovery.xml
-netbeans-%%PORTVERSION%%/cnd/config/Modules/org-netbeans-modules-cnd-modelimpl.xml
-netbeans-%%PORTVERSION%%/cnd/config/Modules/org-netbeans-modules-cnd-modelui.xml
-netbeans-%%PORTVERSION%%/cnd/config/Modules/org-netbeans-modules-cnd-modelutil.xml
-netbeans-%%PORTVERSION%%/cnd/config/Modules/org-netbeans-modules-cnd-navigation.xml
-netbeans-%%PORTVERSION%%/cnd/config/Modules/org-netbeans-modules-cnd-qnavigator.xml
-netbeans-%%PORTVERSION%%/cnd/config/Modules/org-netbeans-modules-cnd-refactoring.xml
-netbeans-%%PORTVERSION%%/cnd/config/Modules/org-netbeans-modules-cnd-remote-projectui.xml
-netbeans-%%PORTVERSION%%/cnd/config/Modules/org-netbeans-modules-cnd-remote.xml
-netbeans-%%PORTVERSION%%/cnd/config/Modules/org-netbeans-modules-cnd-repository-api.xml
-netbeans-%%PORTVERSION%%/cnd/config/Modules/org-netbeans-modules-cnd-repository.xml
-netbeans-%%PORTVERSION%%/cnd/config/Modules/org-netbeans-modules-cnd-script.xml
-netbeans-%%PORTVERSION%%/cnd/config/Modules/org-netbeans-modules-cnd-search.xml
-netbeans-%%PORTVERSION%%/cnd/config/Modules/org-netbeans-modules-cnd-simpleunit.xml
-netbeans-%%PORTVERSION%%/cnd/config/Modules/org-netbeans-modules-cnd-source.xml
-netbeans-%%PORTVERSION%%/cnd/config/Modules/org-netbeans-modules-cnd-spellchecker-bindings.xml
-netbeans-%%PORTVERSION%%/cnd/config/Modules/org-netbeans-modules-cnd-testrunner.xml
-netbeans-%%PORTVERSION%%/cnd/config/Modules/org-netbeans-modules-cnd-toolchain.xml
-netbeans-%%PORTVERSION%%/cnd/config/Modules/org-netbeans-modules-cnd-utils.xml
-netbeans-%%PORTVERSION%%/cnd/config/Modules/org-netbeans-modules-cnd.xml
-netbeans-%%PORTVERSION%%/cnd/config/Modules/org-netbeans-modules-jellytools-cnd.xml
-netbeans-%%PORTVERSION%%/cnd/modules/docs/org-netbeans-modules-cnd.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-antlr_ja.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-antlr_pt_BR.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-antlr_ru.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-antlr_zh_CN.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-api-model_ja.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-api-model_pt_BR.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-api-model_ru.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-api-model_zh_CN.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-api-project_ja.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-api-project_pt_BR.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-api-project_ru.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-api-project_zh_CN.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-api-remote_ja.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-api-remote_pt_BR.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-api-remote_ru.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-api-remote_zh_CN.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-apt_ja.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-apt_pt_BR.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-apt_ru.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-apt_zh_CN.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-asm_ja.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-asm_pt_BR.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-asm_ru.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-asm_zh_CN.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-callgraph_ja.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-callgraph_pt_BR.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-callgraph_ru.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-callgraph_zh_CN.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-classview_ja.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-classview_pt_BR.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-classview_ru.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-classview_zh_CN.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-cncppunit_ja.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-cncppunit_pt_BR.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-cncppunit_ru.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-cncppunit_zh_CN.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-completion_ja.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-completion_pt_BR.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-completion_ru.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-completion_zh_CN.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-debugger-common2_ja.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-debugger-common2_pt_BR.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-debugger-common2_ru.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-debugger-common2_zh_CN.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-debugger-gdb2_ja.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-debugger-gdb2_pt_BR.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-debugger-gdb2_ru.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-debugger-gdb2_zh_CN.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-discovery_ja.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-discovery_pt_BR.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-discovery_ru.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-discovery_zh_CN.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-dwarfdiscovery_ja.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-dwarfdiscovery_pt_BR.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-dwarfdiscovery_ru.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-dwarfdiscovery_zh_CN.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-dwarfdump_ja.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-dwarfdump_pt_BR.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-dwarfdump_ru.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-dwarfdump_zh_CN.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-editor_ja.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-editor_pt_BR.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-editor_ru.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-editor_zh_CN.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-folding_ja.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-folding_pt_BR.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-folding_ru.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-folding_zh_CN.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-gotodeclaration_ja.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-gotodeclaration_pt_BR.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-gotodeclaration_ru.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-gotodeclaration_zh_CN.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-highlight_ja.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-highlight_pt_BR.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-highlight_ru.jar
-netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-highlight_zh_CN.jar
*** DIFF OUTPUT TRUNCATED AT 1000 LINES ***
More information about the svn-ports-head
mailing list