Re: [Scrollrack-devel] Problems running scrollrack
Brought to you by:
svalente
|
From: Salvatore V. <sva...@MI...> - 2007-08-19 02:27:41
|
On Wed, 2007-08-01 at 12:26 -0700, Daenyth Blank wrote:
> I've been trying for about the past year to get scrollrack running,
> but I can't figure out what is needed. Can you either provide a
> bundled release with all the deps included, add scrollrack to some
> package managers (preferably archlinux's pacman), or at least give us
> a list of dependencies so that we can get them on our own?
The only bundled release that I'm qualified to make is RPM, which I've
done. The dependencies are listed on the Download page on the web site.
They're SWT and Smack.
build-classpath, where it exists, is a simple shell script that finds a
jar file in the filesystem, and outputs its full pathname. If you don't
have build-classpath, then you just have to tell scrollrack.sh where to
find SWT and smack. For example, replace this line:
swt=`build-classpath swt-gtk-3.1`
with:
swt=/usr/lib/java/swt3.1-gtk.jar
If your distribution does not come with SWT or Smack, then you have to
download them. For example, you can unpack them in your home directory,
and do something like this:
swt=/home/sal/lib/swt-3.3/swt.jar
You may also need to edit this line:
arg=-Djava.library.path=/usr/lib/eclipse
You may need to change the path to something else, depending on what
version of SWT you're using, and where it's installed.
Sal
|