6d4c13380b
svn path=/nixpkgs/trunk/; revision=10653
34 lines
998 B
Bash
34 lines
998 B
Bash
source $stdenv/setup
|
|
|
|
tar xfvj $src
|
|
ensureDir $out
|
|
cp -av $name $out
|
|
|
|
# Create wrapper scripts so that the GWT compiler/host work
|
|
|
|
libPath="$libstdcpp5/lib:$glib/lib:$gtk/lib:$atk/lib:$pango/lib:$libX11/lib:$libXt/lib:$out/$name/mozilla-1.7.12"
|
|
|
|
ensureDir $out/bin
|
|
|
|
cat > $out/bin/gwt-compile <<EOF
|
|
#!/bin/sh
|
|
|
|
export LD_LIBRARY_PATH=$libPath
|
|
export APPDIR=\`dirname \$0\`
|
|
export LIBXCB_ALLOW_SLOPPY_LOCK=1 # Workaround for bug in Java AWT implementation
|
|
|
|
java -cp "\$APPDIR/src:\$APPDIR/bin:$out/$name/gwt-user.jar:$out/$name/gwt-dev-linux.jar" com.google.gwt.dev.GWTCompiler -out "\$APPDIR/www" $@
|
|
EOF
|
|
chmod 755 $out/bin/gwt-compile
|
|
|
|
cat > $out/bin/gwt-shell <<EOF
|
|
#!/bin/sh
|
|
|
|
export LD_LIBRARY_PATH=$libPath
|
|
export APPDIR=\`dirname \$0\`
|
|
export LIBXCB_ALLOW_SLOPPY_LOCK=1 # Workaround for bug in Java AWT implementation
|
|
|
|
java -cp "\$APPDIR/src:\$APPDIR/bin:$out/$name/gwt-user.jar:$out/$name/gwt-dev-linux.jar" com.google.gwt.dev.GWTShell -out "\$APPDIR/www" $@
|
|
EOF
|
|
chmod 755 $out/bin/gwt-shell
|