librocket GUI support

I may have found another bug, or maybe it’s an issue with my ppackage system (in place of packp3d, i’m using ppackage)

Here goes:

I have a simple python file, ‘main.py’ which has these lines:

import panda3d.rocket
print '1'

from panda3d.rocket import *
print '2'

The code works on 1, ‘import panda3d.rocket’, and fails on 2, ‘from panda3d.rocket import *’

I believe the panda3d.rocket pdef package is missing libboost_python.so.1.48.0 based of the errors, here’s the output the program above would spit out (with some other useless parts of my own code output removed):

1
Traceback (most recent call last):
  File "/home/buildbot/slave/release_rtdist_linux_i386/build/panda3d/built_cmu/direct/showbase/Messenger.py", line 424, in __taskChainDispatch
  File "/home/buildbot/slave/release_rtdist_linux_i386/build/panda3d/built_cmu/direct/showbase/Messenger.py", line 482, in __dispatch
  File "/home/buildbot/slave/release_rtdist_linux_i386/build/panda3d/built_cmu/direct/p3d/PackageInstaller.py", line 427, in __packageDone
  File "/home/buildbot/slave/release_rtdist_linux_i386/build/panda3d/built_cmu/direct/p3d/PackageInstaller.py", line 481, in __callDownloadFinished
  File "wmLauncher/wmLauncher.py", line 103, in downloadFinished
  File "wmLauncher/wmLauncher.py", line 89, in loadGame
  File "VFSImporter", line 153, in load_module
  File "main.py", line 4, in <module>
  File "/home/buildbot/slave/release_rtdist_linux_i386/build/panda3d/built_cmu/lib/panda3d.py", line 200, in __getattr__
  File "/home/buildbot/slave/release_rtdist_linux_i386/build/panda3d/built_cmu/lib/panda3d.py", line 112, in libimport
  File "VFSImporter", line 127, in load_module
  File "VFSImporter", line 228, in _import_extension_module
ImportError: libboost_python.so.1.48.0: cannot open shared object file: No such file or directory
:task(error): Exception occurred in PythonTask Messenger-default
Traceback (most recent call last):
  File "/home/buildbot/slave/release_rtdist_linux_i386/build/panda3d/built_cmu/direct/p3d/AppRunner.py", line 638, in run
  File "/home/buildbot/slave/release_rtdist_linux_i386/build/panda3d/built_cmu/direct/task/Task.py", line 502, in run
  File "/home/buildbot/slave/release_rtdist_linux_i386/build/panda3d/built_cmu/direct/task/Task.py", line 460, in step
  File "/home/buildbot/slave/release_rtdist_linux_i386/build/panda3d/built_cmu/direct/showbase/Messenger.py", line 424, in __taskChainDispatch
  File "/home/buildbot/slave/release_rtdist_linux_i386/build/panda3d/built_cmu/direct/showbase/Messenger.py", line 482, in __dispatch
  File "/home/buildbot/slave/release_rtdist_linux_i386/build/panda3d/built_cmu/direct/p3d/PackageInstaller.py", line 427, in __packageDone
  File "/home/buildbot/slave/release_rtdist_linux_i386/build/panda3d/built_cmu/direct/p3d/PackageInstaller.py", line 481, in __callDownloadFinished
  File "wmLauncher/wmLauncher.py", line 103, in downloadFinished
  File "wmLauncher/wmLauncher.py", line 89, in loadGame
  File "VFSImporter", line 153, in load_module
  File "main.py", line 4, in <module>
  File "/home/buildbot/slave/release_rtdist_linux_i386/build/panda3d/built_cmu/lib/panda3d.py", line 200, in __getattr__
  File "/home/buildbot/slave/release_rtdist_linux_i386/build/panda3d/built_cmu/lib/panda3d.py", line 112, in libimport
  File "VFSImporter", line 127, in load_module
  File "VFSImporter", line 228, in _import_extension_module
ImportError: libboost_python.so.1.48.0: cannot open shared object file: No such file or directory
:TaskManager: TaskManager.destroy()
:display: Closing glxGraphicsWindow
Successfully joined thread: 0
Failure on startup.

It could just be a problem on my end, again, so I dunno for sure yet, I just thought I’d ask if perhaps there is an issue with the libRocket pdef package, or, what you think it might be, etc

Thank you,
~powerpup118