wok-next rev 2868
Add: fluxbox window manager
author | Mallory MOLLO <mallory@skyrock.com> |
---|---|
date | Sat May 02 23:54:51 2009 +0200 (2009-05-02) |
parents | 7a50c39a4852 |
children | 186299c9a6f5 |
files | fluxbox/receipt fluxbox/stuff/fluxbox-gcc-4.3.3.diff |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/fluxbox/receipt Sat May 02 23:54:51 2009 +0200 1.3 @@ -0,0 +1,33 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="fluxbox" 1.7 +VERSION="1.0.0" 1.8 +CATEGORY="x-window" 1.9 +SHORT_DESC="Fluxbox is a windowmanager for X. It is very light on resources and easy to handle but yet full of features." 1.10 +MAINTAINER="mallory@sweetpeople.org" 1.11 +DEPENDS="" 1.12 +TARBALL="$PACKAGE-$VERSION.tar.bz2" 1.13 +WEB_SITE="http://www.fluxbox.org/" 1.14 +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 1.15 + 1.16 +# Rules to configure and make the package. 1.17 +compile_rules() 1.18 +{ 1.19 + cd $src 1.20 + patch -p1 < ../stuff/fluxbox-gcc-4.3.3.diff 1.21 + ./configure \ 1.22 + --prefix=/usr \ 1.23 + --infodir=/usr/share/info \ 1.24 + --mandir=/usr/share/man \ 1.25 + $CONFIGURE_ARGS && 1.26 + make && make DESTDIR=$PWD/_pkg install 1.27 +} 1.28 + 1.29 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.30 +genpkg_rules() 1.31 +{ 1.32 + mkdir -p $fs/usr 1.33 + cp -a $_pkg/usr/bin $fs/usr 1.34 + cp -a $_pkg/usr/share $fs/usr 1.35 +} 1.36 +
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/fluxbox/stuff/fluxbox-gcc-4.3.3.diff Sat May 02 23:54:51 2009 +0200 2.3 @@ -0,0 +1,11 @@ 2.4 +diff -up fluxbox-1.0.0/src/main.cc.gcc43 fluxbox-1.0.0/src/main.cc 2.5 +--- fluxbox-1.0.0/src/main.cc.gcc43 2008-03-27 01:19:22.000000000 -0400 2.6 ++++ fluxbox-1.0.0/src/main.cc 2008-03-27 01:20:15.000000000 -0400 2.7 +@@ -49,6 +49,7 @@ 2.8 + #include <fstream> 2.9 + #include <stdexcept> 2.10 + #include <typeinfo> 2.11 ++#include <cstring> 2.12 + 2.13 + using std::cout; 2.14 + using std::cerr;