public inbox for gentoo-user@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-user] ebuild help: java main class?
@ 2009-10-24 20:12 Grant
  2009-10-24 20:23 ` Alan McKinnon
                   ` (2 more replies)
  0 siblings, 3 replies; 17+ messages in thread
From: Grant @ 2009-10-24 20:12 UTC (permalink / raw
  To: Gentoo mailing list

I'm trying to fix up the JAlbum ebuild:

http://bugs.gentoo.org/show_bug.cgi?id=128356

and get it to use java-pkg-2.  Here's what I have so far:

inherit java-pkg-2 eutils

S="${WORKDIR}/Jalbum"
DESCRIPTION="Web photo album generator"
HOMEPAGE="http://jalbum.net/"
SRC_URI="http://jalbum.net/download/Jalbum${PV}.zip"

LICENSE="as-is"
SLOT="0"
KEYWORDS="x86"
IUSE=""

DEPEND=">=virtual/jre-1.5"
RDEPEND="${DEPEND}"

src_install() {
    java-pkg_dojar JAlbum.jar
    java-pkg_dolauncher jalbum \
        --jar JAlbum.jar \
        --java_args -Xmx400M

    local dest=/usr/lib/${PN}
    dodir ${dest}
    cp -R ${S}/* ${D}/${dest} || die "Install failed"

    doicon ${FILESDIR}/Jalbum-icon.png
    make_desktop_entry ${PN}
}

It executes just fine, but I get:

$ jalbum
Error: se.datadosen.jalbum.JAlbum
java.lang.ClassNotFoundException: se.datadosen.jalbum.JAlbum
	at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
	at java.security.AccessController.doPrivileged(Native Method)
	at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
	at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
	at java.lang.ClassLoader.loadClass(ClassLoader.java:252)
	at se.datadosen.jalbum.Main.main(Main.java:23)

I was told I need to define the main class with --main.  Does anyone
know how to determine what the main class should be?

- Grant



^ permalink raw reply	[flat|nested] 17+ messages in thread

end of thread, other threads:[~2009-10-25 23:57 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-10-24 20:12 [gentoo-user] ebuild help: java main class? Grant
2009-10-24 20:23 ` Alan McKinnon
2009-10-24 20:32   ` Grant
2009-10-24 21:12     ` Alan McKinnon
2009-10-24 21:52       ` Grant
2009-10-25  0:47 ` Arttu V.
2009-10-25  4:35   ` Grant
2009-10-25 11:47     ` Arttu V.
2009-10-25 14:33       ` Grant
2009-10-25 15:02       ` Grant
2009-10-25 17:48         ` Arttu V.
2009-10-25 18:33           ` Grant
2009-10-25 22:21             ` Grant
2009-10-25 23:57               ` Grant
2009-10-25 11:55 ` Justin
2009-10-25 14:33   ` Grant
2009-10-25 16:34     ` Justin

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox