diff options
author | Alexander Kabaev <kan@FreeBSD.org> | 2006-11-04 02:06:50 +0000 |
---|---|---|
committer | Alexander Kabaev <kan@FreeBSD.org> | 2006-11-04 02:06:50 +0000 |
commit | 7247b8444b4b73aa6377ff52829b6f93b9f1d91f (patch) | |
tree | 37b69444d02f24a708e07b15f5fd74d16a42c710 /java/eclipse/files/patch-features-launchers-gtk-build.sh | |
parent | Fix pkg-plist. (diff) |
Update Eclipse to version 3.2.1. Assign port maintainership to
submitter.
Submitted by: David Sledge
Notes
Notes:
svn path=/head/; revision=176328
Diffstat (limited to 'java/eclipse/files/patch-features-launchers-gtk-build.sh')
-rw-r--r-- | java/eclipse/files/patch-features-launchers-gtk-build.sh | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/java/eclipse/files/patch-features-launchers-gtk-build.sh b/java/eclipse/files/patch-features-launchers-gtk-build.sh deleted file mode 100644 index a3e68b8f3260..000000000000 --- a/java/eclipse/files/patch-features-launchers-gtk-build.sh +++ /dev/null @@ -1,41 +0,0 @@ ---- features/org.eclipse.platform.launchers/library/gtk/build.sh.orig Fri Apr 1 13:57:19 2005 -+++ features/org.eclipse.platform.launchers/library/gtk/build.sh Sun Apr 3 11:37:51 2005 -@@ -67,6 +67,23 @@ - ;; - esac - ;; -+ "FreeBSD") -+ makefile="make_freebsd.mak" -+ defaultOS="freebsd" -+ case $MODEL in -+ "amd64") -+ defaultOSArch="amd64" -+ OUTPUT_DIR="../../bin/$defaultWS/$defaultOS/$defaultOSArch" -+ ;; -+ "i386") -+ defaultOSArch="x86" -+ OUTPUT_DIR="../../bin/$defaultWS/$defaultOS/$defaultOSArch" -+ ;; -+ *) -+ echo "*** Unknown MODEL <${MODEL}>" -+ ;; -+ esac -+ ;; - "SunOS") - makefile="make_solaris.mak" - defaultOS="solaris" -@@ -112,11 +129,11 @@ - # If the OS is supported (a makefile exists) - if [ "$makefile" != "" ]; then - if [ "$extraArgs" != "" ]; then -- make -f $makefile $extraArgs -+ gmake -f $makefile $extraArgs - else - echo "Building $OS launcher. Defaults: -os $DEFAULT_OS -arch $DEFAULT_OS_ARCH -ws $DEFAULT_WS" -- make -f $makefile clean -- make -f $makefile all -+ gmake -f $makefile clean -+ gmake -f $makefile all - fi - else - echo "Unknown OS ($OS) -- build aborted" |