I got it to work.
Below is the build script, when i have more time, i wil create multiple packages.
Perry
Looks like the wxwidgets part isn't installed.
#!/bin/sh
export CFLAGS="-march=i486 -mtune=i686 -Os -pipe"
export CXXFLAGS="-march=i486 -mtune=i686 -Os -pipe"
export LDFLAGS="-Wl,-O1"
# Create mark file.
touch /tmp/mark
# Compile and install wxgtk.
tar -xjvf wxPython-src-2.8.11.0.tar.bz2
cd wxPython-src-2.8.11.0/
./configure --enable-unicode --with-gtk
make -C locale allmo
make install
ldconfig
make -C contrib/src/stc
make -C contrib/src/stc install
make -C contrib/src/ogl
make -C contrib/src/ogl install
make -C contrib/src/gizmos
make -C contrib/src/gizmos install
make -C contrib/src/svg
make -C contrib/src/svg install
ldconfig
# Compile and install wxPython.
cd wxPython/
patch < ../../wxpython-glcanvas.patch
python setup.py build
python setup.py install
ldconfig
cd ../..
# Compile and install Twisted.
tar -xjvf Twisted-10.1.0.tar.bz2
cd Twisted-10.1.0
python setup.py build
python setup.py install
ldconfig
cd ..
# Unpack wxPython demo.
tar -C /usr/local -xjvf wxPython-demo-2.8.11.0.tar.bz2
cp wxdemo /usr/local/bin
chmod +x /usr/local/bin/wxdemo
chown -R -v tc:staff /home/tc/wxPython-2.8.11.0/
# Create tar with all files.
find /usr/local -newer /tmp/mark -not -type d > /tmp/list1
find /usr/local -not -type d|grep -i wx >> /tmp/list1
find /usr/local -not -type d|grep -i twisted >> /tmp/list1
find /usr/local -not -type d|grep -i zope >> /tmp/list1
find /home/tc/wxPython-2.8.11.0 -not -type d >> /tmp/list1
find /home/tc/start.sh -not -type d >> /tmp/list1
cat /tmp/list1|sort|uniq > /tmp/list2
tar -T /tmp/list2 -czvf /tmp/nerdbox-sb.tar.gz
# Create the package.
mkdir /tmp/pkg
cd /tmp/pkg
tar -xf /tmp/nerdbox-sb.tar.gz #'install' the extension in tmp
cd /tmp
mksquashfs pkg/ nerdbox-sb.tcz