netnomad
I am a simple coder, a quick and dirty build, not tested etc, compiles the stable release and does not include the files in the existing
tcz of /etc/skel
You probably want to change those skel files in any case.
I will cheat and add them later.
Once I have most things squared away, lets say within 2 days, I propose to give you the files so you can test as I have no skills with fluxbox and once you see my simple build script, I am sure you will be the maintainer etc. Because the info file says so
catcha later
below is subject to edit and again I have yet to test it all....but in case you are impatient here is the prelim build for you play with
EDIT build version 2
#!/bin/sh
# place a copy of existing fluxbox.tcz into /tmp please
# and rename it as below
########################################################
mv /tmp/fluxbox.tcz /tmp/old.tcz
export CFLAGS="-march=i486 -mtune=i686 -Os -pipe"
export CXXFLAGS="-march=i486 -mtune=i686 -Os -pipe"
export LDFLAGS="-Wl,-O1"
tce-load -i compiletc wget submitqc4 bash
tce-load -i libxft-dev libxft Xorg-7.6-dev
tce-load -i fribidi libxcb-dev wxgtk-dev
tce-load -i libiconv-dev coreutils
# start
#######
cd /tmp
/usr/local/bin/wget -nc http://sourceforge.net/projects/fluxbox/files/fluxbox/1.3.3/fluxbox-1.3.3.tar.gz
tar xvf fluxbox-1.3.3.tar.gz
cd fluxbox-1.3.3
./configure --prefix=/usr/local --disable-nls
make -j3
make DESTDIR=/tmp/fluxbox install
# too large authors use AUTHORS for info link
# needs license = COPYING
# doc
#######
cd /tmp
mkdir -p fluxbox-doc/usr/local/share/doc/fluxbox-doc
mv fluxbox/usr/local/share/man fluxbox-doc/usr/local/share
cp -f fluxbox-1.3.3/AUTHORS fluxbox-doc/usr/local/share/doc/fluxbox-doc
cp -f fluxbox-1.3.3/COPYING fluxbox-doc/usr/local/share/doc/fluxbox-doc
mksquashfs fluxbox-doc fluxbox-doc.tcz
md5sum fluxbox-doc.tcz > fluxbox-doc.tcz.md5.txt
cd fluxbox-doc
find usr -not -type d > fluxbox-doc.tcz.list
mv -f fluxbox-doc.tcz.list /tmp
# main
#######
cd /tmp
mkdir -p fluxbox/usr/local/share/doc/fluxbox
cp -f fluxbox-1.3.3/AUTHORS fluxbox/usr/local/share/doc/fluxbox
cp -f fluxbox-1.3.3/COPYING fluxbox/usr/local/share/doc/fluxbox
### I need old.tcz unpacked
unsquashfs old.tcz
cp -a squashfs-root/etc/ fluxbox/
mv fluxbox/usr/local/bin/fluxbox-generate_menu fluxbox/usr/local/bin/fluxbox-generate_menu-original
cp -f squashfs-root/usr/local/bin/fluxbox-generate_menu fluxbox/usr/local/bin/
cp -f squashfs-root/usr/local/bin/fluxbox_initmenu fluxbox/usr/local/bin/
cp -f squashfs-root/usr/local/bin/fluxbox_makemenu fluxbox/usr/local/bin/
cp -f squashfs-root/usr/local/bin/fluxbox_menu_common fluxbox/usr/local/bin/
cp -f squashfs-root/usr/local/bin/fluxbox_ondemand fluxbox/usr/local/bin/
cp -f squashfs-root/usr/local/bin/fluxbox_restart fluxbox/usr/local/bin/
cp -f squashfs-root/usr/local/bin/fluxbox_rmitem fluxbox/usr/local/bin/
/bin/cp -f squashfs-root/usr/local/share/fluxbox/menu fluxbox/usr/local/share/fluxbox/
cp squashfs-root/usr/local/share/fluxbox/menu_template fluxbox/usr/local/share/fluxbox/
cp squashfs-root/usr/local/share/fluxbox/tce.menu fluxbox/usr/local/share/fluxbox/
cp -a squashfs-root/usr/local/tce.installed/ fluxbox/usr/local/
sudo chown -R root:staff fluxbox/usr/local/tce.installed
sudo chmod -R 775 fluxbox/usr/local/tce.installed
mksquashfs fluxbox fluxbox.tcz
md5sum fluxbox.tcz > fluxbox.tcz.md5.txt
cd fluxbox
find usr -not -type d > fluxbox.tcz.list
mv -f fluxbox.tcz.list /tmp
######### finish
cd /tmp
sudo submitqc4