mirror of
https://git.freebsd.org/ports.git
synced 2025-06-06 13:20:32 -04:00
o Add LATEST_LINK. [2] PR: ports/81076 [1] Submitted by: Alex Varju <freebsd-ports@varju.ca> [1] Pointed out by: krisbot via kris [2] Tested by: java@ [1]
28 lines
730 B
Bash
28 lines
730 B
Bash
--- plugins/org.eclipse.swt/Eclipse SWT PI/motif/library/build.sh.orig Fri May 13 11:37:09 2005
|
|
+++ plugins/org.eclipse.swt/Eclipse SWT PI/motif/library/build.sh Sat May 14 21:03:05 2005
|
|
@@ -54,6 +54,18 @@
|
|
echo "Building Linux motif x86 version of SWT"
|
|
esac
|
|
;;
|
|
+ "FreeBSD")
|
|
+ case $MODEL in
|
|
+ i?86)
|
|
+ OUTPUT_DIR=../../../org.eclipse.swt.motif.freebsd.x86
|
|
+ makefile="make_freebsd.mak"
|
|
+ echo "Building FreeBSD motif x86 version of SWT"
|
|
+ ;;
|
|
+ *)
|
|
+ echo "*** Unknown MODEL <${MODEL}>"
|
|
+ ;;
|
|
+ esac
|
|
+ ;;
|
|
"SunOS")
|
|
case $MODEL in
|
|
*)
|
|
@@ -113,4 +125,4 @@
|
|
|
|
export JAVA_HOME MOTIF_HOME CDE_HOME OUTPUT_DIR
|
|
|
|
-make -f $makefile $1 $2 $3 $4
|
|
\ No newline at end of file
|
|
+gmake -f $makefile $1 $2 $3 $4
|