wok rev 796

Add lxlauncher - We can all have a eeepc... and nice for a child
author Christophe Lincoln <pankso@slitaz.org>
date Thu May 15 20:54:54 2008 +0200 (2008-05-15)
parents dddbb5300635
children 170ca3846ed9
files lxlauncher/receipt lxlauncher/stuff/background/accessibility_internet_wallpaper.jpg lxlauncher/stuff/background/accessibility_learn_wallpaper.jpg lxlauncher/stuff/background/accessibility_play_wallpaper.jpg lxlauncher/stuff/background/accessibility_settings_wallpaper.jpg lxlauncher/stuff/background/accessibility_work_wallpaper.jpg lxlauncher/stuff/background/slitaz.jpg lxlauncher/stuff/gtkrc
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/lxlauncher/receipt	Thu May 15 20:54:54 2008 +0200
     1.3 @@ -0,0 +1,38 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="lxlauncher"
     1.7 +VERSION="0.1.6"
     1.8 +CATEGORY="x-window"
     1.9 +SHORT_DESC="LXDE desktop launcher."
    1.10 +DEPENDS="xorg-libX11 gtk+"
    1.11 +BUILD_DEPENDS="xorg-libX11-dev gtk+-dev"
    1.12 +MAINTAINER="pankso@slitaz.org"
    1.13 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.14 +WEB_SITE="http://lxde.org/"
    1.15 +WGET_URL="$SF_MIRROR/lxde/$TARBALL"
    1.16 +
    1.17 +# Rules to configure and make the package.
    1.18 +compile_rules()
    1.19 +{
    1.20 +	cd $src
    1.21 +	# Default icons to 32
    1.22 +	sed -i s/'120'/'100'/ src/lxlauncher.c
    1.23 +	sed -i s/'48'/'32'/ src/lxlauncher.c
    1.24 +	./configure \
    1.25 +		--prefix=/usr \
    1.26 +		--mandir=/usr/share/man \
    1.27 +		$CONFIGURE_ARGS
    1.28 +	make
    1.29 +	make DESTDIR=$PWD/_pkg install
    1.30 +}
    1.31 +
    1.32 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.33 +genpkg_rules()
    1.34 +{
    1.35 +	mkdir -p $fs/usr/share/lxlauncher
    1.36 +	cp -a $_pkg/usr/bin $fs/usr
    1.37 +	# SliTaz home make config files
    1.38 +	cp stuff/gtkrc $fs/usr/share/lxlauncher
    1.39 +	cp -a stuff/background $fs/usr/share/lxlauncher
    1.40 +	chown -R root.root $fs
    1.41 +}
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/lxlauncher/stuff/background/accessibility_internet_wallpaper.jpg	Thu May 15 20:54:54 2008 +0200
     2.3 @@ -0,0 +1,1 @@
     2.4 +slitaz.jpg
     2.5 \ No newline at end of file
     3.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     3.2 +++ b/lxlauncher/stuff/background/accessibility_learn_wallpaper.jpg	Thu May 15 20:54:54 2008 +0200
     3.3 @@ -0,0 +1,1 @@
     3.4 +slitaz.jpg
     3.5 \ No newline at end of file
     4.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     4.2 +++ b/lxlauncher/stuff/background/accessibility_play_wallpaper.jpg	Thu May 15 20:54:54 2008 +0200
     4.3 @@ -0,0 +1,1 @@
     4.4 +slitaz.jpg
     4.5 \ No newline at end of file
     5.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     5.2 +++ b/lxlauncher/stuff/background/accessibility_settings_wallpaper.jpg	Thu May 15 20:54:54 2008 +0200
     5.3 @@ -0,0 +1,1 @@
     5.4 +slitaz.jpg
     5.5 \ No newline at end of file
     6.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     6.2 +++ b/lxlauncher/stuff/background/accessibility_work_wallpaper.jpg	Thu May 15 20:54:54 2008 +0200
     6.3 @@ -0,0 +1,1 @@
     6.4 +slitaz.jpg
     6.5 \ No newline at end of file
     7.1 Binary file lxlauncher/stuff/background/slitaz.jpg has changed
     8.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     8.2 +++ b/lxlauncher/stuff/gtkrc	Thu May 15 20:54:54 2008 +0200
     8.3 @@ -0,0 +1,18 @@
     8.4 +style "launcher-bg" { # for the background GtkWindow
     8.5 +    bg[NORMAL] = "#222222"
     8.6 +}
     8.7 +style "launcher-fg" { # for the text size/color
     8.8 +    font_name="Sans 11"
     8.9 +    fg[NORMAL]="#222222"
    8.10 +    fg[PRELIGHT]="#000000"
    8.11 +}
    8.12 +style "launcher-nb" = "launcher-fg" { #for the notebook
    8.13 +    bg[NORMAL] = "#eeede9"
    8.14 +    #bg[SELECTED] = "#3675AD"
    8.15 +    fg[ACTIVE] = "#ffffff" #text color for non-active tabs
    8.16 +    bg[ACTIVE] = "#222222" #the other non-active tabs
    8.17 +}
    8.18 +widget_class "*<GtkNotebook>" style "launcher-nb"
    8.19 +widget_class "*<GtkNotebook><GtkHBox><GtkLabel>" style "launcher-nb"
    8.20 +widget "GtkWindow" style "launcher-bg"
    8.21 +widget_class "*<ExoWrapTable><GtkButton>*<GtkLabel>" style "launcher-fg"