wok-6.x rev 10838
Add the Matchbox desktop/panel/wm
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Wed Jun 08 23:21:26 2011 +0200 (2011-06-08) |
parents | 77d17715f02a |
children | e058951422af |
files | matchbox-common/receipt matchbox-common/stuff/matchbox-session matchbox-common/stuff/matchbox-session-2 matchbox-desktop/receipt matchbox-panel-manager/receipt matchbox-panel/receipt matchbox-themes-extra/receipt matchbox-window-manager/receipt mb-applet-volume/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/matchbox-common/receipt Wed Jun 08 23:21:26 2011 +0200 1.3 @@ -0,0 +1,31 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="matchbox-common" 1.7 +VERSION="0.9.1" 1.8 +CATEGORY="x-window" 1.9 +SHORT_DESC="Common files for matchbox window manager." 1.10 +MAINTAINER="pankso@slitaz.org" 1.11 +TARBALL="$PACKAGE-$VERSION.tar.bz2" 1.12 +WEB_SITE="http://matchbox-project.org/" 1.13 +WGET_URL="${WEB_SITE}sources/$PACKAGE/0.9/$TARBALL" 1.14 + 1.15 +DEPENDS="gtk+ libmatchbox" 1.16 +BUILD_DEPENDS="gtk+-dev libmatchbox-dev" 1.17 + 1.18 +# Rules to configure and make the package. 1.19 +compile_rules() 1.20 +{ 1.21 + cd $src 1.22 + ./configure $CONFIGURE_ARGS && 1.23 + make && make install 1.24 +} 1.25 + 1.26 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.27 +genpkg_rules() 1.28 +{ 1.29 + mkdir -p $fs/usr/bin 1.30 + cp -a $install/usr/share $fs/usr 1.31 + cp -a $stuff/matchbox-session $fs/usr/bin 1.32 + # For matchbox v2 1.33 + #cp -a $stuff/matchbox-session-2 $fs/usr/bin 1.34 +}
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/matchbox-common/stuff/matchbox-session Wed Jun 08 23:21:26 2011 +0200 2.3 @@ -0,0 +1,19 @@ 2.4 +#!/bin/sh 2.5 +# 2.6 +# Very simple session manager for Matchbox on SliTaz. 2.7 +# 2.8 + 2.9 +if [ -e $HOME/.matchbox/session ]; then 2.10 + exec $HOME/.matchbox/session 2.11 +fi 2.12 + 2.13 +if [ -e /etc/matchbox/session ]; then 2.14 + exec /etc/matchbox/session 2.15 +fi 2.16 + 2.17 +# Default files to run if matchbox/session dont exist. 2.18 + 2.19 +matchbox-desktop & 2.20 +matchbox-panel \ 2.21 + --orientation south & 2.22 +exec matchbox-window-manager $@
3.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 3.2 +++ b/matchbox-common/stuff/matchbox-session-2 Wed Jun 08 23:21:26 2011 +0200 3.3 @@ -0,0 +1,20 @@ 3.4 +#!/bin/sh 3.5 +# 3.6 +# Very simple session manager for Matchbox v2 on SliTaz. 3.7 +# 3.8 + 3.9 +if [ -e $HOME/.matchbox/session ]; then 3.10 + exec $HOME/.matchbox/session 3.11 +fi 3.12 + 3.13 +if [ -e /etc/matchbox/session ]; then 3.14 + exec /etc/matchbox/session 3.15 +fi 3.16 + 3.17 +# Default files to run if matchbox/session dont exist. 3.18 + 3.19 +matchbox-desktop & 3.20 +matchbox-panel \ 3.21 + --geometry=800x24+0-0 \ 3.22 + --start-applets=clock,brightness & 3.23 +exec matchbox-window-manager $@
4.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 4.2 +++ b/matchbox-desktop/receipt Wed Jun 08 23:21:26 2011 +0200 4.3 @@ -0,0 +1,36 @@ 4.4 +# SliTaz package receipt. 4.5 + 4.6 +PACKAGE="matchbox-desktop" 4.7 +VERSION="0.9.1" 4.8 +CATEGORY="x-window" 4.9 +SHORT_DESC="Matchbox desktop." 4.10 +MAINTAINER="pankso@slitaz.org" 4.11 +TARBALL="$PACKAGE-$VERSION.tar.bz2" 4.12 +WEB_SITE="http://matchbox-project.org/" 4.13 +WGET_URL="${WEB_SITE}sources/$PACKAGE/0.9/$TARBALL" 4.14 + 4.15 +DEPENDS="gtk+ startup-notification libmatchbox" 4.16 +BUILD_DEPENDS="gtk+-dev startup-notification-dev libmatchbox-dev" 4.17 + 4.18 +# Rules to configure and make the package. 4.19 +compile_rules() 4.20 +{ 4.21 + cd $src 4.22 + ./configure \ 4.23 + --sysconfdir=/etc \ 4.24 + $CONFIGURE_ARGS && 4.25 + sed -i s'/$(install_sh) -d/mkdir -p/' data/Makefile && 4.26 + make && make install 4.27 +} 4.28 + 4.29 +# Rules to gen a SliTaz package suitable for Tazpkg. 4.30 +genpkg_rules() 4.31 +{ 4.32 + mkdir -p $fs/usr/lib/matchbox/desktop 4.33 + cp -a $install/etc $fs 4.34 + cp -a $install/usr/bin $fs/usr 4.35 + cp -a $install/usr/lib/matchbox/desktop/*.so \ 4.36 + $fs/usr/lib/matchbox/desktop 4.37 + cp -a $install/usr/share $fs/usr 4.38 +} 4.39 +
5.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 5.2 +++ b/matchbox-panel-manager/receipt Wed Jun 08 23:21:26 2011 +0200 5.3 @@ -0,0 +1,29 @@ 5.4 +# SliTaz package receipt. 5.5 + 5.6 +PACKAGE="matchbox-panel-manager" 5.7 +VERSION="0.1" 5.8 +CATEGORY="x-window" 5.9 +SHORT_DESC="Matchbox Panel Manager." 5.10 +MAINTAINER="pankso@slitaz.org" 5.11 +TARBALL="$PACKAGE-$VERSION.tar.bz2" 5.12 +WEB_SITE="http://matchbox-project.org/" 5.13 +WGET_URL="${WEB_SITE}sources/$PACKAGE/0.1/$TARBALL" 5.14 + 5.15 +DEPENDS="gtk+ matchbox-panel" 5.16 +BUILD_DEPENDS="gtk+-dev" 5.17 + 5.18 +# Rules to configure and make the package. 5.19 +compile_rules() 5.20 +{ 5.21 + cd $src 5.22 + ./configure $CONFIGURE_ARGS && 5.23 + make && make install 5.24 +} 5.25 + 5.26 +# Rules to gen a SliTaz package suitable for Tazpkg. 5.27 +genpkg_rules() 5.28 +{ 5.29 + mkdir -p $fs/usr 5.30 + cp -a $install/usr/bin $fs/usr 5.31 + cp -a $install/usr/share $fs/usr 5.32 +}
6.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 6.2 +++ b/matchbox-panel/receipt Wed Jun 08 23:21:26 2011 +0200 6.3 @@ -0,0 +1,34 @@ 6.4 +# SliTaz package receipt. 6.5 + 6.6 +PACKAGE="matchbox-panel" 6.7 +VERSION="0.9.3" 6.8 +CATEGORY="x-window" 6.9 +SHORT_DESC="Matchbox panel." 6.10 +MAINTAINER="pankso@slitaz.org" 6.11 +TARBALL="$PACKAGE-$VERSION.tar.bz2" 6.12 +WEB_SITE="http://matchbox-project.org/" 6.13 +WGET_URL="${WEB_SITE}sources/$PACKAGE/0.9/$TARBALL" 6.14 + 6.15 +DEPENDS="gtk+ startup-notification libmatchbox wireless_tools" 6.16 +BUILD_DEPENDS="gtk+-dev startup-notification-dev libmatchbox-dev wireless_tools-dev" 6.17 + 6.18 +# Rules to configure and make the package. 6.19 +compile_rules() 6.20 +{ 6.21 + cd $src 6.22 + #--enable-small-icons 6.23 + #--enable-acpi-linux 6.24 + ./configure \ 6.25 + $CONFIGURE_ARGS && 6.26 + make && make install 6.27 +} 6.28 + 6.29 +# Rules to gen a SliTaz package suitable for Tazpkg. 6.30 +genpkg_rules() 6.31 +{ 6.32 + mkdir -p $fs/usr/share 6.33 + cp -a $install/usr/bin $fs/usr 6.34 + cp -a $install/usr/share/applications $fs/usr/share 6.35 + cp -a $install/usr/share/pixmaps $fs/usr/share 6.36 +} 6.37 +
7.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 7.2 +++ b/matchbox-themes-extra/receipt Wed Jun 08 23:21:26 2011 +0200 7.3 @@ -0,0 +1,25 @@ 7.4 +# SliTaz package receipt. 7.5 + 7.6 +PACKAGE="matchbox-themes-extra" 7.7 +VERSION="0.3" 7.8 +CATEGORY="x-window" 7.9 +SHORT_DESC="Matchbox extra themes." 7.10 +MAINTAINER="pankso@slitaz.org" 7.11 +TARBALL="$PACKAGE-$VERSION.tar.bz2" 7.12 +WEB_SITE="http://matchbox-project.org/" 7.13 +WGET_URL="${WEB_SITE}sources/$PACKAGE/0.3/$TARBALL" 7.14 + 7.15 +# Rules to configure and make the package. 7.16 +compile_rules() 7.17 +{ 7.18 + cd $src 7.19 + ./configure $CONFIGURE_ARGS && 7.20 + make && make DESTDIR=$DESTDIR install 7.21 +} 7.22 + 7.23 +# Rules to gen a SliTaz package suitable for Tazpkg. 7.24 +genpkg_rules() 7.25 +{ 7.26 + mkdir -p $fs/usr 7.27 + cp -a $install/usr/share $fs/usr 7.28 +}
8.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 8.2 +++ b/matchbox-window-manager/receipt Wed Jun 08 23:21:26 2011 +0200 8.3 @@ -0,0 +1,36 @@ 8.4 +# SliTaz package receipt. 8.5 + 8.6 +PACKAGE="matchbox-window-manager" 8.7 +VERSION="1.2" 8.8 +CATEGORY="x-window" 8.9 +SHORT_DESC="Matchbox Window Manager." 8.10 +MAINTAINER="pankso@slitaz.org" 8.11 +TARBALL="$PACKAGE-$VERSION.tar.bz2" 8.12 +WEB_SITE="http://matchbox-project.org/" 8.13 +WGET_URL="${WEB_SITE}sources/$PACKAGE/1.2/$TARBALL" 8.14 + 8.15 +DEPENDS="gtk+ startup-notification libmatchbox" 8.16 +BUILD_DEPENDS="gtk+-dev startup-notification-dev libmatchbox-dev" 8.17 + 8.18 +# Rules to configure and make the package. 8.19 +compile_rules() 8.20 +{ 8.21 + cd $src 8.22 + ./configure \ 8.23 + --sysconfdir=/etc \ 8.24 + --enable-expat \ 8.25 + --enable-startup-notification \ 8.26 + --enable-session \ 8.27 + $CONFIGURE_ARGS && 8.28 + make && make install 8.29 +} 8.30 + 8.31 +# Rules to gen a SliTaz package suitable for Tazpkg. 8.32 +genpkg_rules() 8.33 +{ 8.34 + mkdir -p $fs/usr 8.35 + cp -a $install/etc $fs 8.36 + cp -a $install/usr/bin $fs/usr 8.37 + cp -a $install/usr/share $fs/usr 8.38 +} 8.39 +
9.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 9.2 +++ b/mb-applet-volume/receipt Wed Jun 08 23:21:26 2011 +0200 9.3 @@ -0,0 +1,31 @@ 9.4 +# SliTaz package receipt. 9.5 + 9.6 +PACKAGE="mb-applet-volume" 9.7 +VERSION="0.2" 9.8 +CATEGORY="x-window" 9.9 +SHORT_DESC="Matchbox volume applet." 9.10 +MAINTAINER="pankso@slitaz.org" 9.11 +TARBALL="$PACKAGE-$VERSION.tar.bz2" 9.12 +WEB_SITE="http://matchbox-project.org/" 9.13 +WGET_URL="${WEB_SITE}sources/$PACKAGE/0.2/$TARBALL" 9.14 + 9.15 +DEPENDS="gtk+ libmatchbox" 9.16 +BUILD_DEPENDS="gtk+-dev libmatchbox-dev" 9.17 + 9.18 +# Rules to configure and make the package. 9.19 +compile_rules() 9.20 +{ 9.21 + cd $src 9.22 + ./configure $CONFIGURE_ARGS && 9.23 + make && make install 9.24 +} 9.25 + 9.26 +# Rules to gen a SliTaz package suitable for Tazpkg. 9.27 +genpkg_rules() 9.28 +{ 9.29 + mkdir -p $fs/usr/share 9.30 + cp -a $install/usr/bin $fs/usr 9.31 + cp -a $install/usr/share/applications $fs/usr/share 9.32 + cp -a $install/usr/share/pixmaps $fs/usr/share 9.33 +} 9.34 +