Package Details: bluej 5.3.0-1

Git Clone URL: https://aur.archlinux.org/bluej.git (read-only, click to copy)
Package Base: bluej
Description: A free Java Development Environment designed for beginners, used by millions worlwide.
Upstream URL: https://www.bluej.org
Licenses: GPL2, custom, BSD, Apache, CDDL, CPL
Submitter: zerathidune
Maintainer: nomisge
Last Packager: nomisge
Votes: 75
Popularity: 0.045346
First Submitted: 2007-11-19 19:23 (UTC)
Last Updated: 2024-03-24 22:52 (UTC)

Dependencies (6)

Required by (0)

Sources (4)

Latest Comments

« First ‹ Previous 1 .. 4 5 6 7 8 9

pyropeter commented on 2010-10-28 06:17 (UTC)

ok, fixed

<deleted-account> commented on 2010-10-28 03:27 (UTC)

oops. got a wrong icon path in bluej.desktop change Icon=/usr/share/bluej/lib/images/bluej-icon-48.png to Icon=/usr/share/java/bluej/images/bluej-icon-48.png

pyropeter commented on 2010-10-27 17:44 (UTC)

I pulled in your bluej.desktop, but I use no desktop environment, so I am not able to test it. Thanks for testing the openjdk-compatibility!

<deleted-account> commented on 2010-10-27 07:42 (UTC)

i've also created a .desktop file to place an application entry for bluej i put it in /usr/share/applications/bluej.desktop by adding install -m 644 -D -T "bluej.desktop" "$pkgdir/usr/share/applications/bluej.desktop" to the end of the build() function in PKGBUILD unfortunately .bluej project files have mime type "text/plain" it is no good to associate it with bluej as default application Here is the content of bluej.desktop : [Desktop Entry] Encoding=UTF-8 Exec=/usr/bin/bluej Name=BlueJ GenericName=Java IDE Icon=/usr/share/bluej/lib/images/bluej-icon-48.png Terminal=false Type=Application Categories=Java;Development

<deleted-account> commented on 2010-10-27 07:33 (UTC)

i confirm that the change works with openjdk6 (6.b20_1.9.1-1)

pyropeter commented on 2010-10-26 14:42 (UTC)

I applied your change and tested it with jdk and jre from [community]. It would be nice if someone with openjdk could confirm it works.

<deleted-account> commented on 2010-10-26 14:15 (UTC)

you could use $JAVA_HOME to make /usr/bin/bluej works for both jre & openjdk6 Change: CP="$APPBASE/bluej.jar:/opt/java/lib/tools.jar" `which java` -cp "$CP" bluej.Boot $* To: CP="$APPBASE/bluej.jar:$JAVA_HOME/lib/tools.jar" $JAVA_HOME/bin/java -cp "$CP" bluej.Boot $*