wok-undigest rev 963

Marlin and friends :) Up libgee, vala. Finished marlin. Add dconf*, extended-actions, faenza-icon-theme-emblems, ffmpegthumbnailer*, granite*, tumbler*. GTK+3 stuff: gtk3-engine-unico, try leafpad for GTK+3.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Mar 15 14:47:37 2013 +0000 (2013-03-15)
parents a3f63c434c51
children d809c09606ce
files dconf-dev/receipt dconf-editor/receipt dconf/receipt extended-actions/description.txt extended-actions/receipt faenza-icon-theme-emblems/receipt faenza-icon-theme/receipt faenza-icon-theme/stuff/Faenza-Dark-index.theme faenza-icon-theme/stuff/Faenza-Darker-index.theme faenza-icon-theme/stuff/Faenza-Darkest-index.theme faenza-icon-theme/stuff/Faenza-index.theme ffmpegthumbnailer-dev/receipt ffmpegthumbnailer/receipt granite-demo/receipt granite-demo/stuff/granite-demo.desktop granite-dev/receipt granite/description.txt granite/receipt granite/stuff/16.png granite/stuff/22.png granite/stuff/24.png granite/stuff/32.png granite/stuff/48.png gtk+3-demo/receipt gtk+3-demo/stuff/gtk+3-demo.desktop gtk+3-dev/receipt gtk+3-widget-factory/receipt gtk+3/receipt gtk+3/stuff/settings.ini gtk3-engine-unico-dev/receipt gtk3-engine-unico/receipt leafpad3/receipt libgee-dev/receipt libgee/receipt marlin-dev/receipt marlin/receipt marlin/stuff/apps/view-list-column.png marlin/stuff/apps/view-list-compact.png marlin/stuff/apps/view-list-details.png marlin/stuff/apps/view-list-icons.png marlin/stuff/marlin-0.5.patch marlin/stuff/marlin-icons.patch marlin/stuff/marlin.png tumbler-dev/receipt tumbler/receipt vala/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/dconf-dev/receipt	Fri Mar 15 14:47:37 2013 +0000
     1.3 @@ -0,0 +1,23 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="dconf-dev"
     1.7 +VERSION="0.13.0"
     1.8 +CATEGORY="development"
     1.9 +SHORT_DESC="Development files for dconf"
    1.10 +MAINTAINER="al.bobylev@gmail.com"
    1.11 +LICENSE="LGPL2.1"
    1.12 +WEB_SITE="http://live.gnome.org/dconf"
    1.13 +
    1.14 +WANTED="dconf"
    1.15 +DEPENDS="dconf"
    1.16 +
    1.17 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.18 +genpkg_rules()
    1.19 +{
    1.20 +	mkdir -p \
    1.21 +		$fs/usr/lib \
    1.22 +		$fs/usr/share
    1.23 +	cp -a $install/usr/include $fs/usr
    1.24 +	cp -a $install/usr/lib/pkgconfig $fs/usr/lib
    1.25 +	cp -a $install/usr/share/vala $fs/usr/share
    1.26 +}
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/dconf-editor/receipt	Fri Mar 15 14:47:37 2013 +0000
     2.3 @@ -0,0 +1,25 @@
     2.4 +# SliTaz package receipt.
     2.5 +
     2.6 +PACKAGE="dconf-editor"
     2.7 +VERSION="0.13.0"
     2.8 +CATEGORY="system-tools"
     2.9 +SHORT_DESC="GTK+3 editor for dconf"
    2.10 +MAINTAINER="al.bobylev@gmail.com"
    2.11 +LICENSE="LGPL2.1"
    2.12 +WEB_SITE="http://live.gnome.org/dconf"
    2.13 +
    2.14 +WANTED="dconf"
    2.15 +DEPENDS="dconf"
    2.16 +
    2.17 +# Rules to gen a SliTaz package suitable for Tazpkg.
    2.18 +genpkg_rules()
    2.19 +{
    2.20 +	mkdir -p \
    2.21 +		$fs/usr/bin \
    2.22 +		$fs/usr/share/pixmaps
    2.23 +	cp -a $install/usr/bin/dconf-editor $fs/usr/bin
    2.24 +	cp -a $install/usr/share/applications $fs/usr/share
    2.25 +	cp -a $install/usr/share/dconf-editor $fs/usr/share
    2.26 +	cp -a $install/usr/share/icons/hicolor/48x48/apps/dconf-editor.png \
    2.27 +		$fs/usr/share/pixmaps
    2.28 +}
     3.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     3.2 +++ b/dconf/receipt	Fri Mar 15 14:47:37 2013 +0000
     3.3 @@ -0,0 +1,43 @@
     3.4 +# SliTaz package receipt.
     3.5 +
     3.6 +PACKAGE="dconf"
     3.7 +VERSION="0.13.0"
     3.8 +CATEGORY="system-tools"
     3.9 +SHORT_DESC="A low-level configuration system"
    3.10 +MAINTAINER="al.bobylev@gmail.com"
    3.11 +LICENSE="LGPL2.1"
    3.12 +WEB_SITE="http://live.gnome.org/dconf"
    3.13 +TARBALL="$PACKAGE-$VERSION.tar.xz"
    3.14 +HI_VERSION=$(echo $VERSION | cut -d. -f1,2)
    3.15 +WGET_URL="$GNOME_MIRROR/$PACKAGE/$HI_VERSION/$TARBALL"
    3.16 +
    3.17 +DEPENDS="dbus gtk+3"
    3.18 +BUILD_DEPENDS="vala glib-dev dbus-dev gtk+3-dev"
    3.19 +GENERIC_MENUS="no"
    3.20 +GENERIC_PIXMAPS="no"
    3.21 +
    3.22 +# Rules to configure and make the package.
    3.23 +compile_rules()
    3.24 +{
    3.25 +	./configure \
    3.26 +		--sysconfdir=/etc \
    3.27 +		--libexecdir=/usr/lib \
    3.28 +		$CONFIGURE_ARGS &&
    3.29 +	make &&
    3.30 +	make install
    3.31 +}
    3.32 +
    3.33 +# Rules to gen a SliTaz package suitable for Tazpkg.
    3.34 +genpkg_rules()
    3.35 +{
    3.36 +	mkdir -p \
    3.37 +		$fs/usr/bin \
    3.38 +		$fs/usr/lib \
    3.39 +		$fs/usr/share
    3.40 +	cp -a $install/usr/bin/dconf $fs/usr/bin
    3.41 +	cp -a $install/usr/lib/gio $fs/usr/lib
    3.42 +	cp -a $install/usr/lib/*.so* $fs/usr/lib
    3.43 +	cp -a $install/usr/lib/dconf-service $fs/usr/lib
    3.44 +	cp -a $install/usr/share/dbus* $fs/usr/share
    3.45 +	cp -a $install/usr/share/glib* $fs/usr/share
    3.46 +}
     4.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     4.2 +++ b/extended-actions/description.txt	Fri Mar 15 14:47:37 2013 +0000
     4.3 @@ -0,0 +1,22 @@
     4.4 +A service that allows applications to request some extended actions for a list
     4.5 +of files depending on their mimetypes and some other constraints. Any user can
     4.6 +extend their applications by adding custom actions.
     4.7 +
     4.8 +Similar to thunar-actions but distributed via dbus, any application can take
     4.9 +advantage of this service. extended-actions use traditional desktop files and
    4.10 +extend its format to configure special action(s) on files. Unity already
    4.11 +extended the desktop file application format with its quicklist.
    4.12 +
    4.13 +Maybe one day this same application format will be extended at the glib level
    4.14 +within GAppInfo or in a new class or maybe a super daemon would arise providing
    4.15 +all the informations about applications and their new uses case. And this
    4.16 +service would be obsolete.
    4.17 +
    4.18 +This project is the continuation of the work i already started in contractor.
    4.19 +
    4.20 +extended-actions already provide a list of actions in
    4.21 +/usr/share/extended-actions.
    4.22 +Any user can define some custom actions in ~/.local/share/extended-actions
    4.23 +
    4.24 +And if u have some good actions files don't hesitate to contact me i may include
    4.25 +them by default.
     5.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     5.2 +++ b/extended-actions/receipt	Fri Mar 15 14:47:37 2013 +0000
     5.3 @@ -0,0 +1,35 @@
     5.4 +# SliTaz package receipt.
     5.5 +
     5.6 +PACKAGE="extended-actions"
     5.7 +VERSION="0"
     5.8 +CATEGORY="system-tools"
     5.9 +SHORT_DESC="Service for generating extended actions on files"
    5.10 +MAINTAINER="al.bobylev@gmail.com"
    5.11 +LICENSE="GPL3"
    5.12 +WEB_SITE="https://launchpad.net/extended-actions"
    5.13 +BRANCH="5"
    5.14 +TARBALL="$PACKAGE-$BRANCH.tar.bz2"
    5.15 +WGET_URL="bzr|lp:extended-actions"
    5.16 +
    5.17 +DEPENDS="libgee libgio"
    5.18 +BUILD_DEPENDS="bazaar vala glib-dev libgio-dev libgee-dev"
    5.19 +
    5.20 +TODO="Setup extended-actions specific to SliTaz"
    5.21 +
    5.22 +# Rules to configure and make the package.
    5.23 +compile_rules()
    5.24 +{
    5.25 +	# gee-1.0 is old while gee-0.8 is latest ;)
    5.26 +	sed -i 's|gee-1.0|gee-0.8|g' $(grep -l gee-1.0 $(find . -type f))
    5.27 +
    5.28 +	mkdir build && cd build &&
    5.29 +	cmake .. -DCMAKE_INSTALL_PREFIX=/usr &&
    5.30 +	make &&
    5.31 +	make DESTDIR=$install install
    5.32 +}
    5.33 +
    5.34 +# Rules to gen a SliTaz package suitable for Tazpkg.
    5.35 +genpkg_rules()
    5.36 +{
    5.37 +	cp -a $install/* $fs
    5.38 +}
     6.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     6.2 +++ b/faenza-icon-theme-emblems/receipt	Fri Mar 15 14:47:37 2013 +0000
     6.3 @@ -0,0 +1,38 @@
     6.4 +# SliTaz package receipt.
     6.5 +
     6.6 +PACKAGE="faenza-icon-theme-emblems"
     6.7 +VERSION="1.3"
     6.8 +CATEGORY="x-window"
     6.9 +SHORT_DESC="Faenza icon theme (emblems)"
    6.10 +MAINTAINER="al.bobylev@gmail.com"
    6.11 +LICENSE=""
    6.12 +WEB_SITE="http://tiheum.deviantart.com/art/Faenza-Icons-173323228"
    6.13 +
    6.14 +WANTED="faenza-icon-theme"
    6.15 +DEPENDS="faenza-icon-theme"
    6.16 +
    6.17 +# Rules to gen a SliTaz package suitable for Tazpkg.
    6.18 +genpkg_rules()
    6.19 +{
    6.20 +	mkdir -p $fs/usr/share/icons
    6.21 +	cd $fs/usr/share/icons
    6.22 +	tar xf $src/Faenza.tar.gz Faenza/emblems
    6.23 +	# remove big sizes and scalable
    6.24 +	rm -rf $(find . -type d -regex '.*/\(64\|96\|scalable\)')
    6.25 +	# SliTaz locale settings
    6.26 +	. $WOK/slitaz-i18n/stuff/locale-pack.conf
    6.27 +	cd $fs/usr/share/icons/Faenza/emblems/16
    6.28 +	for icon in $(ls -1 *.icon); do
    6.29 +		CONTENT=$(cat $icon);
    6.30 +		echo "[Icon Data]" > $icon;
    6.31 +		echo "$CONTENT" | grep 'DisplayName=' >> $icon;
    6.32 +		for lang in $LOCALE_PACK; do
    6.33 +			echo "$CONTENT" | fgrep "DisplayName["$lang"]=" >> $icon;
    6.34 +			for size in 22 24 32 48; do
    6.35 +				rm -f ../$size/$icon
    6.36 +				ln -s ../16/$icon ../$size/$icon
    6.37 +			done
    6.38 +		done
    6.39 +	done
    6.40 +	true
    6.41 +}
     7.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     7.2 +++ b/faenza-icon-theme/receipt	Fri Mar 15 14:47:37 2013 +0000
     7.3 @@ -0,0 +1,32 @@
     7.4 +# SliTaz package receipt.
     7.5 +
     7.6 +PACKAGE="faenza-icon-theme"
     7.7 +VERSION="1.3"
     7.8 +CATEGORY="x-window"
     7.9 +SHORT_DESC="Faenza icon theme"
    7.10 +MAINTAINER="al.bobylev@gmail.com"
    7.11 +DEPENDS=""
    7.12 +TARBALL="${PACKAGE}_$VERSION.zip"
    7.13 +WEB_SITE="http://tiheum.deviantart.com/art/Faenza-Icons-173323228"
    7.14 +WGET_URL="http://dl.dropbox.com/u/9966975/$TARBALL"
    7.15 +
    7.16 +# Rules to gen a SliTaz package suitable for Tazpkg.
    7.17 +genpkg_rules()
    7.18 +{
    7.19 +	mkdir -p $fs/usr/share/icons
    7.20 +	cd $fs/usr/share/icons
    7.21 +	tar xf $src/Faenza.tar.gz
    7.22 +	tar xf $src/Faenza-Dark.tar.gz
    7.23 +	tar xf $src/Faenza-Darkest.tar.gz
    7.24 +	tar xf $src/Faenza-Darker.tar.gz
    7.25 +	# remove big sizes and scalable
    7.26 +	rm -rf $(find . -type d -regex '.*/\(64\|96\|scalable\)')
    7.27 +	# remove emblems and extras
    7.28 +	rm -rf $(find . -type d -regex '.*/\(emblems\|extras\)')
    7.29 +#	sed -i '/Directories=/ s/\(.+\)\(,actions\/64.*\)/\1/' Faenza/index.theme
    7.30 +
    7.31 +	for name in Faenza Faenza-Dark Faenza-Darkest Faenza-Darker; do
    7.32 +		cp -f $stuff/${name}-index.theme $fs/usr/share/icons/${name}/index.theme
    7.33 +	done
    7.34 +}
    7.35 +
     8.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     8.2 +++ b/faenza-icon-theme/stuff/Faenza-Dark-index.theme	Fri Mar 15 14:47:37 2013 +0000
     8.3 @@ -0,0 +1,260 @@
     8.4 +[Icon Theme]
     8.5 +Name=Faenza-Dark
     8.6 +Inherits=Faenza
     8.7 +Comment=Icon theme project with tilish style, by Tiheum
     8.8 +Directories=emblems/8,actions/16,animations/16,apps/16,categories/16,devices/16,emblems/16,mimetypes/16,places/16,status/16,stock/16,actions/22,animations/22,apps/22,categories/22,devices/22,emblems/22,mimetypes/22,places/22,status/22,stock/22,actions/24,animations/24,apps/24,categories/24,devices/24,emblems/24,mimetypes/24,places/24,status/24,stock/24,actions/32,animations/32,apps/32,categories/32,devices/32,emblems/32,mimetypes/32,places/32,status/32,stock/32,actions/48,animations/48,apps/48,categories/48,devices/48,emblems/48,mimetypes/48,places/48,status/48,stock/48
     8.9 +
    8.10 +[emblems/8]
    8.11 +Size=8
    8.12 +Context=Emblems
    8.13 +Type=fixed
    8.14 +
    8.15 +[actions/16]
    8.16 +Size=16
    8.17 +Context=Actions
    8.18 +Type=fixed
    8.19 +
    8.20 +[animations/16]
    8.21 +Size=16
    8.22 +Context=Animations
    8.23 +Type=fixed
    8.24 +
    8.25 +[apps/16]
    8.26 +Size=16
    8.27 +Context=Apps
    8.28 +Type=fixed
    8.29 +
    8.30 +[devices/16]
    8.31 +Size=16
    8.32 +Context=Devices
    8.33 +Type=fixed
    8.34 +
    8.35 +[categories/16]
    8.36 +Size=16
    8.37 +Context=Categories
    8.38 +Type=fixed
    8.39 +
    8.40 +[emblems/16]
    8.41 +Size=16
    8.42 +Context=Emblems
    8.43 +Type=fixed
    8.44 +
    8.45 +[mimetypes/16]
    8.46 +Size=16
    8.47 +Context=Mimetypes
    8.48 +Type=fixed
    8.49 +
    8.50 +[places/16]
    8.51 +Size=16
    8.52 +Context=Places
    8.53 +Type=fixed
    8.54 +
    8.55 +[status/16]
    8.56 +Size=16
    8.57 +Context=Status
    8.58 +Type=fixed
    8.59 +
    8.60 +[stock/16]
    8.61 +Size=16
    8.62 +Context=Stock
    8.63 +Type=fixed
    8.64 +
    8.65 +[actions/22]
    8.66 +Size=22
    8.67 +Context=Actions
    8.68 +Type=fixed
    8.69 +
    8.70 +[animations/22]
    8.71 +Size=22
    8.72 +Context=Animations
    8.73 +Type=fixed
    8.74 +
    8.75 +[apps/22]
    8.76 +Size=22
    8.77 +Context=Apps
    8.78 +Type=fixed
    8.79 +
    8.80 +[devices/22]
    8.81 +Size=22
    8.82 +Context=Devices
    8.83 +Type=fixed
    8.84 +
    8.85 +[categories/22]
    8.86 +Size=22
    8.87 +Context=Categories
    8.88 +Type=fixed
    8.89 +
    8.90 +[emblems/22]
    8.91 +Size=22
    8.92 +Context=Emblems
    8.93 +Type=fixed
    8.94 +
    8.95 +[mimetypes/22]
    8.96 +Size=22
    8.97 +Context=Mimetypes
    8.98 +Type=fixed
    8.99 +
   8.100 +[places/22]
   8.101 +Size=22
   8.102 +Context=Places
   8.103 +Type=fixed
   8.104 +
   8.105 +[status/22]
   8.106 +Size=22
   8.107 +Context=Status
   8.108 +Type=fixed
   8.109 +
   8.110 +[stock/22]
   8.111 +Size=22
   8.112 +Context=Stock
   8.113 +Type=fixed
   8.114 +
   8.115 +[actions/24]
   8.116 +Size=24
   8.117 +Context=Actions
   8.118 +Type=fixed
   8.119 +
   8.120 +[animations/24]
   8.121 +Size=24
   8.122 +Context=Animations
   8.123 +Type=fixed
   8.124 +
   8.125 +[apps/24]
   8.126 +Size=24
   8.127 +Context=Apps
   8.128 +Type=fixed
   8.129 +
   8.130 +[categories/24]
   8.131 +Size=24
   8.132 +Context=Categories
   8.133 +Type=fixed
   8.134 +
   8.135 +[devices/24]
   8.136 +Size=24
   8.137 +Context=Devices
   8.138 +Type=fixed
   8.139 +
   8.140 +[emblems/24]
   8.141 +Size=24
   8.142 +Context=Emblems
   8.143 +Type=fixed
   8.144 +
   8.145 +[mimetypes/24]
   8.146 +Size=24
   8.147 +Context=Mimetypes
   8.148 +Type=fixed
   8.149 +
   8.150 +[places/24]
   8.151 +Size=24
   8.152 +Context=Places
   8.153 +Type=fixed
   8.154 +
   8.155 +[status/24]
   8.156 +Size=24
   8.157 +Context=Status
   8.158 +Type=fixed
   8.159 +
   8.160 +[stock/24]
   8.161 +Size=24
   8.162 +Context=Stock
   8.163 +Type=fixed
   8.164 +
   8.165 +[actions/32]
   8.166 +Size=32
   8.167 +Context=Actions
   8.168 +Type=fixed
   8.169 +
   8.170 +[animations/32]
   8.171 +Size=32
   8.172 +Context=Animations
   8.173 +Type=fixed
   8.174 +
   8.175 +[apps/32]
   8.176 +Size=32
   8.177 +Context=Apps
   8.178 +Type=fixed
   8.179 +
   8.180 +[devices/32]
   8.181 +Size=32
   8.182 +Context=Devices
   8.183 +Type=fixed
   8.184 +
   8.185 +[categories/32]
   8.186 +Size=32
   8.187 +Context=Categories
   8.188 +Type=fixed
   8.189 +
   8.190 +[emblems/32]
   8.191 +Size=32
   8.192 +Context=Emblems
   8.193 +Type=fixed
   8.194 +
   8.195 +[mimetypes/32]
   8.196 +Size=32
   8.197 +Context=Mimetypes
   8.198 +Type=fixed
   8.199 +
   8.200 +[places/32]
   8.201 +Size=32
   8.202 +Context=Places
   8.203 +Type=fixed
   8.204 +
   8.205 +[status/32]
   8.206 +Size=32
   8.207 +Context=Status
   8.208 +Type=fixed
   8.209 +
   8.210 +[stock/32]
   8.211 +Size=32
   8.212 +Context=Stock
   8.213 +Type=fixed
   8.214 +
   8.215 +[actions/48]
   8.216 +Size=48
   8.217 +Context=Actions
   8.218 +Type=fixed
   8.219 +
   8.220 +[animations/48]
   8.221 +Size=48
   8.222 +Context=Animations
   8.223 +Type=fixed
   8.224 +
   8.225 +[apps/48]
   8.226 +Size=48
   8.227 +Context=Apps
   8.228 +Type=fixed
   8.229 +
   8.230 +[devices/48]
   8.231 +Size=48
   8.232 +Context=Devices
   8.233 +Type=fixed
   8.234 +
   8.235 +[categories/48]
   8.236 +Size=48
   8.237 +Context=Categories
   8.238 +Type=fixed
   8.239 +
   8.240 +[emblems/48]
   8.241 +Size=48
   8.242 +Context=Emblems
   8.243 +Type=fixed
   8.244 +
   8.245 +[mimetypes/48]
   8.246 +Size=48
   8.247 +Context=Mimetypes
   8.248 +Type=fixed
   8.249 +
   8.250 +[places/48]
   8.251 +Size=48
   8.252 +Context=Places
   8.253 +Type=fixed
   8.254 +
   8.255 +[status/48]
   8.256 +Size=48
   8.257 +Context=Status
   8.258 +Type=fixed
   8.259 +
   8.260 +[stock/48]
   8.261 +Size=48
   8.262 +Context=Stock
   8.263 +Type=fixed
     9.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     9.2 +++ b/faenza-icon-theme/stuff/Faenza-Darker-index.theme	Fri Mar 15 14:47:37 2013 +0000
     9.3 @@ -0,0 +1,260 @@
     9.4 +[Icon Theme]
     9.5 +Name=Faenza-Darker
     9.6 +Inherits=Faenza-Darkest
     9.7 +Comment=A Faenza variant suitable for GTK themes with dark panels and menus
     9.8 +Directories=emblems/8,actions/16,animations/16,apps/16,categories/16,devices/16,emblems/16,mimetypes/16,places/16,status/16,stock/16,actions/22,animations/22,apps/22,categories/22,devices/22,emblems/22,mimetypes/22,places/22,status/22,stock/22,actions/24,animations/24,apps/24,categories/24,devices/24,emblems/24,mimetypes/24,places/24,status/24,stock/24,actions/32,animations/32,apps/32,categories/32,devices/32,emblems/32,mimetypes/32,places/32,status/32,stock/32,actions/48,animations/48,apps/48,categories/48,devices/48,emblems/48,mimetypes/48,places/48,status/48,stock/48
     9.9 +
    9.10 +[emblems/8]
    9.11 +Size=8
    9.12 +Context=Emblems
    9.13 +Type=fixed
    9.14 +
    9.15 +[actions/16]
    9.16 +Size=16
    9.17 +Context=Actions
    9.18 +Type=fixed
    9.19 +
    9.20 +[animations/16]
    9.21 +Size=16
    9.22 +Context=Animations
    9.23 +Type=fixed
    9.24 +
    9.25 +[apps/16]
    9.26 +Size=16
    9.27 +Context=Apps
    9.28 +Type=fixed
    9.29 +
    9.30 +[devices/16]
    9.31 +Size=16
    9.32 +Context=Devices
    9.33 +Type=fixed
    9.34 +
    9.35 +[categories/16]
    9.36 +Size=16
    9.37 +Context=Categories
    9.38 +Type=fixed
    9.39 +
    9.40 +[emblems/16]
    9.41 +Size=16
    9.42 +Context=Emblems
    9.43 +Type=fixed
    9.44 +
    9.45 +[mimetypes/16]
    9.46 +Size=16
    9.47 +Context=Mimetypes
    9.48 +Type=fixed
    9.49 +
    9.50 +[places/16]
    9.51 +Size=16
    9.52 +Context=Places
    9.53 +Type=fixed
    9.54 +
    9.55 +[status/16]
    9.56 +Size=16
    9.57 +Context=Status
    9.58 +Type=fixed
    9.59 +
    9.60 +[stock/16]
    9.61 +Size=16
    9.62 +Context=Stock
    9.63 +Type=fixed
    9.64 +
    9.65 +[actions/22]
    9.66 +Size=22
    9.67 +Context=Actions
    9.68 +Type=fixed
    9.69 +
    9.70 +[animations/22]
    9.71 +Size=22
    9.72 +Context=Animations
    9.73 +Type=fixed
    9.74 +
    9.75 +[apps/22]
    9.76 +Size=22
    9.77 +Context=Apps
    9.78 +Type=fixed
    9.79 +
    9.80 +[devices/22]
    9.81 +Size=22
    9.82 +Context=Devices
    9.83 +Type=fixed
    9.84 +
    9.85 +[categories/22]
    9.86 +Size=22
    9.87 +Context=Categories
    9.88 +Type=fixed
    9.89 +
    9.90 +[emblems/22]
    9.91 +Size=22
    9.92 +Context=Emblems
    9.93 +Type=fixed
    9.94 +
    9.95 +[mimetypes/22]
    9.96 +Size=22
    9.97 +Context=Mimetypes
    9.98 +Type=fixed
    9.99 +
   9.100 +[places/22]
   9.101 +Size=22
   9.102 +Context=Places
   9.103 +Type=fixed
   9.104 +
   9.105 +[status/22]
   9.106 +Size=22
   9.107 +Context=Status
   9.108 +Type=fixed
   9.109 +
   9.110 +[stock/22]
   9.111 +Size=22
   9.112 +Context=Stock
   9.113 +Type=fixed
   9.114 +
   9.115 +[actions/24]
   9.116 +Size=24
   9.117 +Context=Actions
   9.118 +Type=fixed
   9.119 +
   9.120 +[animations/24]
   9.121 +Size=24
   9.122 +Context=Animations
   9.123 +Type=fixed
   9.124 +
   9.125 +[apps/24]
   9.126 +Size=24
   9.127 +Context=Apps
   9.128 +Type=fixed
   9.129 +
   9.130 +[categories/24]
   9.131 +Size=24
   9.132 +Context=Categories
   9.133 +Type=fixed
   9.134 +
   9.135 +[devices/24]
   9.136 +Size=24
   9.137 +Context=Devices
   9.138 +Type=fixed
   9.139 +
   9.140 +[emblems/24]
   9.141 +Size=24
   9.142 +Context=Emblems
   9.143 +Type=fixed
   9.144 +
   9.145 +[mimetypes/24]
   9.146 +Size=24
   9.147 +Context=Mimetypes
   9.148 +Type=fixed
   9.149 +
   9.150 +[places/24]
   9.151 +Size=24
   9.152 +Context=Places
   9.153 +Type=fixed
   9.154 +
   9.155 +[status/24]
   9.156 +Size=24
   9.157 +Context=Status
   9.158 +Type=fixed
   9.159 +
   9.160 +[stock/24]
   9.161 +Size=24
   9.162 +Context=Stock
   9.163 +Type=fixed
   9.164 +
   9.165 +[actions/32]
   9.166 +Size=32
   9.167 +Context=Actions
   9.168 +Type=fixed
   9.169 +
   9.170 +[animations/32]
   9.171 +Size=32
   9.172 +Context=Animations
   9.173 +Type=fixed
   9.174 +
   9.175 +[apps/32]
   9.176 +Size=32
   9.177 +Context=Apps
   9.178 +Type=fixed
   9.179 +
   9.180 +[devices/32]
   9.181 +Size=32
   9.182 +Context=Devices
   9.183 +Type=fixed
   9.184 +
   9.185 +[categories/32]
   9.186 +Size=32
   9.187 +Context=Categories
   9.188 +Type=fixed
   9.189 +
   9.190 +[emblems/32]
   9.191 +Size=32
   9.192 +Context=Emblems
   9.193 +Type=fixed
   9.194 +
   9.195 +[mimetypes/32]
   9.196 +Size=32
   9.197 +Context=Mimetypes
   9.198 +Type=fixed
   9.199 +
   9.200 +[places/32]
   9.201 +Size=32
   9.202 +Context=Places
   9.203 +Type=fixed
   9.204 +
   9.205 +[status/32]
   9.206 +Size=32
   9.207 +Context=Status
   9.208 +Type=fixed
   9.209 +
   9.210 +[stock/32]
   9.211 +Size=32
   9.212 +Context=Stock
   9.213 +Type=fixed
   9.214 +
   9.215 +[actions/48]
   9.216 +Size=48
   9.217 +Context=Actions
   9.218 +Type=fixed
   9.219 +
   9.220 +[animations/48]
   9.221 +Size=48
   9.222 +Context=Animations
   9.223 +Type=fixed
   9.224 +
   9.225 +[apps/48]
   9.226 +Size=48
   9.227 +Context=Apps
   9.228 +Type=fixed
   9.229 +
   9.230 +[devices/48]
   9.231 +Size=48
   9.232 +Context=Devices
   9.233 +Type=fixed
   9.234 +
   9.235 +[categories/48]
   9.236 +Size=48
   9.237 +Context=Categories
   9.238 +Type=fixed
   9.239 +
   9.240 +[emblems/48]
   9.241 +Size=48
   9.242 +Context=Emblems
   9.243 +Type=fixed
   9.244 +
   9.245 +[mimetypes/48]
   9.246 +Size=48
   9.247 +Context=Mimetypes
   9.248 +Type=fixed
   9.249 +
   9.250 +[places/48]
   9.251 +Size=48
   9.252 +Context=Places
   9.253 +Type=fixed
   9.254 +
   9.255 +[status/48]
   9.256 +Size=48
   9.257 +Context=Status
   9.258 +Type=fixed
   9.259 +
   9.260 +[stock/48]
   9.261 +Size=48
   9.262 +Context=Stock
   9.263 +Type=fixed
    10.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    10.2 +++ b/faenza-icon-theme/stuff/Faenza-Darkest-index.theme	Fri Mar 15 14:47:37 2013 +0000
    10.3 @@ -0,0 +1,260 @@
    10.4 +[Icon Theme]
    10.5 +Name=Faenza-Darkest
    10.6 +Inherits=Faenza-Dark
    10.7 +Comment=Icon theme project with tilish style, by Tiheum
    10.8 +Directories=emblems/8,actions/16,animations/16,apps/16,categories/16,devices/16,emblems/16,mimetypes/16,places/16,status/16,stock/16,actions/22,animations/22,apps/22,categories/22,devices/22,emblems/22,mimetypes/22,places/22,status/22,stock/22,actions/24,animations/24,apps/24,categories/24,devices/24,emblems/24,mimetypes/24,places/24,status/24,stock/24,actions/32,animations/32,apps/32,categories/32,devices/32,emblems/32,mimetypes/32,places/32,status/32,stock/32,actions/48,animations/48,apps/48,categories/48,devices/48,emblems/48,mimetypes/48,places/48,status/48,stock/48
    10.9 +
   10.10 +[emblems/8]
   10.11 +Size=8
   10.12 +Context=Emblems
   10.13 +Type=fixed
   10.14 +
   10.15 +[actions/16]
   10.16 +Size=16
   10.17 +Context=Actions
   10.18 +Type=fixed
   10.19 +
   10.20 +[animations/16]
   10.21 +Size=16
   10.22 +Context=Animations
   10.23 +Type=fixed
   10.24 +
   10.25 +[apps/16]
   10.26 +Size=16
   10.27 +Context=Apps
   10.28 +Type=fixed
   10.29 +
   10.30 +[devices/16]
   10.31 +Size=16
   10.32 +Context=Devices
   10.33 +Type=fixed
   10.34 +
   10.35 +[categories/16]
   10.36 +Size=16
   10.37 +Context=Categories
   10.38 +Type=fixed
   10.39 +
   10.40 +[emblems/16]
   10.41 +Size=16
   10.42 +Context=Emblems
   10.43 +Type=fixed
   10.44 +
   10.45 +[mimetypes/16]
   10.46 +Size=16
   10.47 +Context=Mimetypes
   10.48 +Type=fixed
   10.49 +
   10.50 +[places/16]
   10.51 +Size=16
   10.52 +Context=Places
   10.53 +Type=fixed
   10.54 +
   10.55 +[status/16]
   10.56 +Size=16
   10.57 +Context=Status
   10.58 +Type=fixed
   10.59 +
   10.60 +[stock/16]
   10.61 +Size=16
   10.62 +Context=Stock
   10.63 +Type=fixed
   10.64 +
   10.65 +[actions/22]
   10.66 +Size=22
   10.67 +Context=Actions
   10.68 +Type=fixed
   10.69 +
   10.70 +[animations/22]
   10.71 +Size=22
   10.72 +Context=Animations
   10.73 +Type=fixed
   10.74 +
   10.75 +[apps/22]
   10.76 +Size=22
   10.77 +Context=Apps
   10.78 +Type=fixed
   10.79 +
   10.80 +[devices/22]
   10.81 +Size=22
   10.82 +Context=Devices
   10.83 +Type=fixed
   10.84 +
   10.85 +[categories/22]
   10.86 +Size=22
   10.87 +Context=Categories
   10.88 +Type=fixed
   10.89 +
   10.90 +[emblems/22]
   10.91 +Size=22
   10.92 +Context=Emblems
   10.93 +Type=fixed
   10.94 +
   10.95 +[mimetypes/22]
   10.96 +Size=22
   10.97 +Context=Mimetypes
   10.98 +Type=fixed
   10.99 +
  10.100 +[places/22]
  10.101 +Size=22
  10.102 +Context=Places
  10.103 +Type=fixed
  10.104 +
  10.105 +[status/22]
  10.106 +Size=22
  10.107 +Context=Status
  10.108 +Type=fixed
  10.109 +
  10.110 +[stock/22]
  10.111 +Size=22
  10.112 +Context=Stock
  10.113 +Type=fixed
  10.114 +
  10.115 +[actions/24]
  10.116 +Size=24
  10.117 +Context=Actions
  10.118 +Type=fixed
  10.119 +
  10.120 +[animations/24]
  10.121 +Size=24
  10.122 +Context=Animations
  10.123 +Type=fixed
  10.124 +
  10.125 +[apps/24]
  10.126 +Size=24
  10.127 +Context=Apps
  10.128 +Type=fixed
  10.129 +
  10.130 +[categories/24]
  10.131 +Size=24
  10.132 +Context=Categories
  10.133 +Type=fixed
  10.134 +
  10.135 +[devices/24]
  10.136 +Size=24
  10.137 +Context=Devices
  10.138 +Type=fixed
  10.139 +
  10.140 +[emblems/24]
  10.141 +Size=24
  10.142 +Context=Emblems
  10.143 +Type=fixed
  10.144 +
  10.145 +[mimetypes/24]
  10.146 +Size=24
  10.147 +Context=Mimetypes
  10.148 +Type=fixed
  10.149 +
  10.150 +[places/24]
  10.151 +Size=24
  10.152 +Context=Places
  10.153 +Type=fixed
  10.154 +
  10.155 +[status/24]
  10.156 +Size=24
  10.157 +Context=Status
  10.158 +Type=fixed
  10.159 +
  10.160 +[stock/24]
  10.161 +Size=24
  10.162 +Context=Stock
  10.163 +Type=fixed
  10.164 +
  10.165 +[actions/32]
  10.166 +Size=32
  10.167 +Context=Actions
  10.168 +Type=fixed
  10.169 +
  10.170 +[animations/32]
  10.171 +Size=32
  10.172 +Context=Animations
  10.173 +Type=fixed
  10.174 +
  10.175 +[apps/32]
  10.176 +Size=32
  10.177 +Context=Apps
  10.178 +Type=fixed
  10.179 +
  10.180 +[devices/32]
  10.181 +Size=32
  10.182 +Context=Devices
  10.183 +Type=fixed
  10.184 +
  10.185 +[categories/32]
  10.186 +Size=32
  10.187 +Context=Categories
  10.188 +Type=fixed
  10.189 +
  10.190 +[emblems/32]
  10.191 +Size=32
  10.192 +Context=Emblems
  10.193 +Type=fixed
  10.194 +
  10.195 +[mimetypes/32]
  10.196 +Size=32
  10.197 +Context=Mimetypes
  10.198 +Type=fixed
  10.199 +
  10.200 +[places/32]
  10.201 +Size=32
  10.202 +Context=Places
  10.203 +Type=fixed
  10.204 +
  10.205 +[status/32]
  10.206 +Size=32
  10.207 +Context=Status
  10.208 +Type=fixed
  10.209 +
  10.210 +[stock/32]
  10.211 +Size=32
  10.212 +Context=Stock
  10.213 +Type=fixed
  10.214 +
  10.215 +[actions/48]
  10.216 +Size=48
  10.217 +Context=Actions
  10.218 +Type=fixed
  10.219 +
  10.220 +[animations/48]
  10.221 +Size=48
  10.222 +Context=Animations
  10.223 +Type=fixed
  10.224 +
  10.225 +[apps/48]
  10.226 +Size=48
  10.227 +Context=Apps
  10.228 +Type=fixed
  10.229 +
  10.230 +[devices/48]
  10.231 +Size=48
  10.232 +Context=Devices
  10.233 +Type=fixed
  10.234 +
  10.235 +[categories/48]
  10.236 +Size=48
  10.237 +Context=Categories
  10.238 +Type=fixed
  10.239 +
  10.240 +[emblems/48]
  10.241 +Size=48
  10.242 +Context=Emblems
  10.243 +Type=fixed
  10.244 +
  10.245 +[mimetypes/48]
  10.246 +Size=48
  10.247 +Context=Mimetypes
  10.248 +Type=fixed
  10.249 +
  10.250 +[places/48]
  10.251 +Size=48
  10.252 +Context=Places
  10.253 +Type=fixed
  10.254 +
  10.255 +[status/48]
  10.256 +Size=48
  10.257 +Context=Status
  10.258 +Type=fixed
  10.259 +
  10.260 +[stock/48]
  10.261 +Size=48
  10.262 +Context=Stock
  10.263 +Type=fixed
    11.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    11.2 +++ b/faenza-icon-theme/stuff/Faenza-index.theme	Fri Mar 15 14:47:37 2013 +0000
    11.3 @@ -0,0 +1,260 @@
    11.4 +[Icon Theme]
    11.5 +Name=Faenza
    11.6 +Inherits=gnome,hicolor
    11.7 +Comment=Icon theme project with tilish style, by Tiheum
    11.8 +Directories=emblems/8,actions/16,animations/16,apps/16,categories/16,devices/16,emblems/16,mimetypes/16,places/16,status/16,stock/16,actions/22,animations/22,apps/22,categories/22,devices/22,emblems/22,mimetypes/22,places/22,status/22,stock/22,actions/24,animations/24,apps/24,categories/24,devices/24,emblems/24,mimetypes/24,places/24,status/24,stock/24,actions/32,animations/32,apps/32,categories/32,devices/32,emblems/32,mimetypes/32,places/32,status/32,stock/32,actions/48,animations/48,apps/48,categories/48,devices/48,emblems/48,mimetypes/48,places/48,status/48,stock/48
    11.9 +
   11.10 +[emblems/8]
   11.11 +Size=8
   11.12 +Context=Emblems
   11.13 +Type=fixed
   11.14 +
   11.15 +[actions/16]
   11.16 +Size=16
   11.17 +Context=Actions
   11.18 +Type=fixed
   11.19 +
   11.20 +[animations/16]
   11.21 +Size=16
   11.22 +Context=Animations
   11.23 +Type=fixed
   11.24 +
   11.25 +[apps/16]
   11.26 +Size=16
   11.27 +Context=Apps
   11.28 +Type=fixed
   11.29 +
   11.30 +[devices/16]
   11.31 +Size=16
   11.32 +Context=Devices
   11.33 +Type=fixed
   11.34 +
   11.35 +[categories/16]
   11.36 +Size=16
   11.37 +Context=Categories
   11.38 +Type=fixed
   11.39 +
   11.40 +[emblems/16]
   11.41 +Size=16
   11.42 +Context=Emblems
   11.43 +Type=fixed
   11.44 +
   11.45 +[mimetypes/16]
   11.46 +Size=16
   11.47 +Context=Mimetypes
   11.48 +Type=fixed
   11.49 +
   11.50 +[places/16]
   11.51 +Size=16
   11.52 +Context=Places
   11.53 +Type=fixed
   11.54 +
   11.55 +[status/16]
   11.56 +Size=16
   11.57 +Context=Status
   11.58 +Type=fixed
   11.59 +
   11.60 +[stock/16]
   11.61 +Size=16
   11.62 +Context=Stock
   11.63 +Type=fixed
   11.64 +
   11.65 +[actions/22]
   11.66 +Size=22
   11.67 +Context=Actions
   11.68 +Type=fixed
   11.69 +
   11.70 +[animations/22]
   11.71 +Size=22
   11.72 +Context=Animations
   11.73 +Type=fixed
   11.74 +
   11.75 +[apps/22]
   11.76 +Size=22
   11.77 +Context=Apps
   11.78 +Type=fixed
   11.79 +
   11.80 +[devices/22]
   11.81 +Size=22
   11.82 +Context=Devices
   11.83 +Type=fixed
   11.84 +
   11.85 +[categories/22]
   11.86 +Size=22
   11.87 +Context=Categories
   11.88 +Type=fixed
   11.89 +
   11.90 +[emblems/22]
   11.91 +Size=22
   11.92 +Context=Emblems
   11.93 +Type=fixed
   11.94 +
   11.95 +[mimetypes/22]
   11.96 +Size=22
   11.97 +Context=Mimetypes
   11.98 +Type=fixed
   11.99 +
  11.100 +[places/22]
  11.101 +Size=22
  11.102 +Context=Places
  11.103 +Type=fixed
  11.104 +
  11.105 +[status/22]
  11.106 +Size=22
  11.107 +Context=Status
  11.108 +Type=fixed
  11.109 +
  11.110 +[stock/22]
  11.111 +Size=22
  11.112 +Context=Stock
  11.113 +Type=fixed
  11.114 +
  11.115 +[actions/24]
  11.116 +Size=24
  11.117 +Context=Actions
  11.118 +Type=fixed
  11.119 +
  11.120 +[animations/24]
  11.121 +Size=24
  11.122 +Context=Animations
  11.123 +Type=fixed
  11.124 +
  11.125 +[apps/24]
  11.126 +Size=24
  11.127 +Context=Apps
  11.128 +Type=fixed
  11.129 +
  11.130 +[categories/24]
  11.131 +Size=24
  11.132 +Context=Categories
  11.133 +Type=fixed
  11.134 +
  11.135 +[devices/24]
  11.136 +Size=24
  11.137 +Context=Devices
  11.138 +Type=fixed
  11.139 +
  11.140 +[emblems/24]
  11.141 +Size=24
  11.142 +Context=Emblems
  11.143 +Type=fixed
  11.144 +
  11.145 +[mimetypes/24]
  11.146 +Size=24
  11.147 +Context=Mimetypes
  11.148 +Type=fixed
  11.149 +
  11.150 +[places/24]
  11.151 +Size=24
  11.152 +Context=Places
  11.153 +Type=fixed
  11.154 +
  11.155 +[status/24]
  11.156 +Size=24
  11.157 +Context=Status
  11.158 +Type=fixed
  11.159 +
  11.160 +[stock/24]
  11.161 +Size=24
  11.162 +Context=Stock
  11.163 +Type=fixed
  11.164 +
  11.165 +[actions/32]
  11.166 +Size=32
  11.167 +Context=Actions
  11.168 +Type=fixed
  11.169 +
  11.170 +[animations/32]
  11.171 +Size=32
  11.172 +Context=Animations
  11.173 +Type=fixed
  11.174 +
  11.175 +[apps/32]
  11.176 +Size=32
  11.177 +Context=Apps
  11.178 +Type=fixed
  11.179 +
  11.180 +[devices/32]
  11.181 +Size=32
  11.182 +Context=Devices
  11.183 +Type=fixed
  11.184 +
  11.185 +[categories/32]
  11.186 +Size=32
  11.187 +Context=Categories
  11.188 +Type=fixed
  11.189 +
  11.190 +[emblems/32]
  11.191 +Size=32
  11.192 +Context=Emblems
  11.193 +Type=fixed
  11.194 +
  11.195 +[mimetypes/32]
  11.196 +Size=32
  11.197 +Context=Mimetypes
  11.198 +Type=fixed
  11.199 +
  11.200 +[places/32]
  11.201 +Size=32
  11.202 +Context=Places
  11.203 +Type=fixed
  11.204 +
  11.205 +[status/32]
  11.206 +Size=32
  11.207 +Context=Status
  11.208 +Type=fixed
  11.209 +
  11.210 +[stock/32]
  11.211 +Size=32
  11.212 +Context=Stock
  11.213 +Type=fixed
  11.214 +
  11.215 +[actions/48]
  11.216 +Size=48
  11.217 +Context=Actions
  11.218 +Type=fixed
  11.219 +
  11.220 +[animations/48]
  11.221 +Size=48
  11.222 +Context=Animations
  11.223 +Type=fixed
  11.224 +
  11.225 +[apps/48]
  11.226 +Size=48
  11.227 +Context=Apps
  11.228 +Type=fixed
  11.229 +
  11.230 +[devices/48]
  11.231 +Size=48
  11.232 +Context=Devices
  11.233 +Type=fixed
  11.234 +
  11.235 +[categories/48]
  11.236 +Size=48
  11.237 +Context=Categories
  11.238 +Type=fixed
  11.239 +
  11.240 +[emblems/48]
  11.241 +Size=48
  11.242 +Context=Emblems
  11.243 +Type=fixed
  11.244 +
  11.245 +[mimetypes/48]
  11.246 +Size=48
  11.247 +Context=Mimetypes
  11.248 +Type=fixed
  11.249 +
  11.250 +[places/48]
  11.251 +Size=48
  11.252 +Context=Places
  11.253 +Type=fixed
  11.254 +
  11.255 +[status/48]
  11.256 +Size=48
  11.257 +Context=Status
  11.258 +Type=fixed
  11.259 +
  11.260 +[stock/48]
  11.261 +Size=48
  11.262 +Context=Stock
  11.263 +Type=fixed
    12.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    12.2 +++ b/ffmpegthumbnailer-dev/receipt	Fri Mar 15 14:47:37 2013 +0000
    12.3 @@ -0,0 +1,21 @@
    12.4 +# SliTaz package receipt.
    12.5 +
    12.6 +PACKAGE="ffmpegthumbnailer-dev"
    12.7 +VERSION="2.0.8"
    12.8 +CATEGORY="development"
    12.9 +SHORT_DESC="Development files for ffmpegthumbnailer"
   12.10 +MAINTAINER="al.bobylev@gmail.com"
   12.11 +LICENSE="GPLv2"
   12.12 +WEB_SITE="http://code.google.com/p/ffmpegthumbnailer/"
   12.13 +
   12.14 +WANTED="ffmpegthumbnailer"
   12.15 +DEPENDS="ffmpegthumbnailer"
   12.16 +
   12.17 +# Rules to gen a SliTaz package suitable for Tazpkg.
   12.18 +genpkg_rules()
   12.19 +{
   12.20 +	mkdir -p $fs/usr/lib
   12.21 +	cp -a $install/usr/include $fs/usr
   12.22 +	cp -a $install/usr/lib/pkgconfig $fs/usr/lib
   12.23 +	cp -a $install/usr/lib/*.*a $fs/usr/lib
   12.24 +}
    13.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    13.2 +++ b/ffmpegthumbnailer/receipt	Fri Mar 15 14:47:37 2013 +0000
    13.3 @@ -0,0 +1,34 @@
    13.4 +# SliTaz package receipt.
    13.5 +
    13.6 +PACKAGE="ffmpegthumbnailer"
    13.7 +VERSION="2.0.8"
    13.8 +CATEGORY="system"
    13.9 +SHORT_DESC="Lightweight video thumbnailer that can be used by file managers"
   13.10 +MAINTAINER="al.bobylev@gmail.com"
   13.11 +LICENSE="GPLv2"
   13.12 +WEB_SITE="http://code.google.com/p/ffmpegthumbnailer/"
   13.13 +TARBALL="$PACKAGE-$VERSION.tar.gz"
   13.14 +WGET_URL="http://ffmpegthumbnailer.googlecode.com/files/$TARBALL"
   13.15 +
   13.16 +DEPENDS="ffmpeg gcc-lib-base libjpeg libpng"
   13.17 +BUILD_DEPENDS="ffmpeg-dev libpng-dev jpeg-dev"
   13.18 +
   13.19 +# Rules to configure and make the package.
   13.20 +compile_rules()
   13.21 +{
   13.22 +	./configure \
   13.23 +		--enable-png \
   13.24 +		--enable-jpeg \
   13.25 +		--enable-gio \
   13.26 +		$CONFIGURE_ARGS &&
   13.27 +	make &&
   13.28 +	make install
   13.29 +}
   13.30 +
   13.31 +# Rules to gen a SliTaz package suitable for Tazpkg.
   13.32 +genpkg_rules()
   13.33 +{
   13.34 +	mkdir -p $fs/usr/lib
   13.35 +	cp -a $install/usr/bin $fs/usr
   13.36 +	cp -a $install/usr/lib/*.so* $fs/usr/lib
   13.37 +}
    14.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    14.2 +++ b/granite-demo/receipt	Fri Mar 15 14:47:37 2013 +0000
    14.3 @@ -0,0 +1,19 @@
    14.4 +# SliTaz package receipt.
    14.5 +
    14.6 +PACKAGE="granite-demo"
    14.7 +VERSION="0.2.1"
    14.8 +CATEGORY="development"
    14.9 +SHORT_DESC="Demo for granite"
   14.10 +MAINTAINER="al.bobylev@gmail.com"
   14.11 +LICENSE="LGPL3"
   14.12 +WEB_SITE="https://launchpad.net/granite"
   14.13 +
   14.14 +WANTED="granite"
   14.15 +DEPENDS="granite"
   14.16 +
   14.17 +# Rules to gen a SliTaz package suitable for Tazpkg.
   14.18 +genpkg_rules()
   14.19 +{
   14.20 +	mkdir -p $fs/usr
   14.21 +	cp -a $install/usr/bin $fs/usr
   14.22 +}
    15.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    15.2 +++ b/granite-demo/stuff/granite-demo.desktop	Fri Mar 15 14:47:37 2013 +0000
    15.3 @@ -0,0 +1,8 @@
    15.4 +[Desktop Entry]
    15.5 +Type=Application
    15.6 +Name=Granite demo
    15.7 +Exec=granite-demo
    15.8 +Icon=application-menu
    15.9 +Terminal=false
   15.10 +StartupNotify=true
   15.11 +Categories=Development;
    16.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    16.2 +++ b/granite-dev/receipt	Fri Mar 15 14:47:37 2013 +0000
    16.3 @@ -0,0 +1,25 @@
    16.4 +# SliTaz package receipt.
    16.5 +
    16.6 +PACKAGE="granite-dev"
    16.7 +VERSION="0.2.1"
    16.8 +CATEGORY="development"
    16.9 +SHORT_DESC="Development files for granite"
   16.10 +MAINTAINER="al.bobylev@gmail.com"
   16.11 +LICENSE="LGPL3"
   16.12 +WEB_SITE="https://launchpad.net/granite"
   16.13 +
   16.14 +WANTED="granite"
   16.15 +DEPENDS="granite"
   16.16 +
   16.17 +# Rules to gen a SliTaz package suitable for Tazpkg.
   16.18 +genpkg_rules()
   16.19 +{
   16.20 +	mkdir -p \
   16.21 +		$fs/usr/lib \
   16.22 +		$fs/usr/share
   16.23 +	cp -a $install/usr/include $fs/usr
   16.24 +	cp -a $install/usr/lib/girepository* $fs/usr/lib
   16.25 +	cp -a $install/usr/lib/pkgconfig $fs/usr/lib
   16.26 +	cp -a $install/usr/share/gir* $fs/usr/share
   16.27 +	cp -a $install/usr/share/vala $fs/usr/share
   16.28 +}
    17.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    17.2 +++ b/granite/description.txt	Fri Mar 15 14:47:37 2013 +0000
    17.3 @@ -0,0 +1,3 @@
    17.4 +Granite is an extension of GTK. Among other things, it provides the
    17.5 +commonly-used widgets such as modeswitchers, welcome screens, AppMenus, search
    17.6 +bars, and more found in elementary apps.
    18.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    18.2 +++ b/granite/receipt	Fri Mar 15 14:47:37 2013 +0000
    18.3 @@ -0,0 +1,47 @@
    18.4 +# SliTaz package receipt.
    18.5 +
    18.6 +PACKAGE="granite"
    18.7 +VERSION="0.2.1"
    18.8 +CATEGORY="system-tools"
    18.9 +SHORT_DESC="A development library for elementary development"
   18.10 +MAINTAINER="al.bobylev@gmail.com"
   18.11 +LICENSE="LGPL3"
   18.12 +WEB_SITE="https://launchpad.net/granite"
   18.13 +BRANCH="535"
   18.14 +TARBALL="$PACKAGE-$BRANCH.tar.bz2"
   18.15 +WGET_URL="bzr|lp:granite"
   18.16 +
   18.17 +DEPENDS="gtk+3 libgee"
   18.18 +BUILD_DEPENDS="bazaar cmake vala gtk+3-dev libgio-dev glib-dev libgee-dev \
   18.19 +gobject-introspection-dev"
   18.20 +
   18.21 +# Rules to configure and make the package.
   18.22 +compile_rules()
   18.23 +{
   18.24 +	mkdir build &&
   18.25 +	cd build &&
   18.26 +	cmake .. -DCMAKE_INSTALL_PREFIX=/usr &&
   18.27 +	make &&
   18.28 +	make DESTDIR=$install install
   18.29 +}
   18.30 +
   18.31 +# Rules to gen a SliTaz package suitable for Tazpkg.
   18.32 +genpkg_rules()
   18.33 +{
   18.34 +	mkdir -p \
   18.35 +		$fs/usr/lib \
   18.36 +		$fs/usr/share
   18.37 +	cp -a $install/usr/lib/*.so* $fs/usr/lib
   18.38 +	# icons converted from svg
   18.39 +	for size in 16 22 24 32 48; do
   18.40 +		ifolder=$fs/usr/share/icons/hicolor/${size}x${size}/actions
   18.41 +		mkdir -p $ifolder
   18.42 +		cp $stuff/${size}.png $ifolder/application-menu.png
   18.43 +	done
   18.44 +	# localization
   18.45 +	. $WOK/slitaz-i18n/stuff/locale-pack.conf
   18.46 +	for lang in $LOCALE_PACK; do
   18.47 +		langf=$install/usr/share/locale/$lang
   18.48 +		[ -d $langf ] && cp -a $langf $fs/usr/share/locale
   18.49 +	done
   18.50 +}
    19.1 Binary file granite/stuff/16.png has changed
    20.1 Binary file granite/stuff/22.png has changed
    21.1 Binary file granite/stuff/24.png has changed
    22.1 Binary file granite/stuff/32.png has changed
    23.1 Binary file granite/stuff/48.png has changed
    24.1 --- a/gtk+3-demo/receipt	Thu Mar 14 17:54:04 2013 +0100
    24.2 +++ b/gtk+3-demo/receipt	Fri Mar 15 14:47:37 2013 +0000
    24.3 @@ -20,4 +20,3 @@
    24.4  	cp -a $install/usr/share/gtk-3.0 $fs/usr/share
    24.5  	cp -a $stuff/gtk-demo.png $fs/usr/share/pixmaps
    24.6  }
    24.7 -
    25.1 --- a/gtk+3-demo/stuff/gtk+3-demo.desktop	Thu Mar 14 17:54:04 2013 +0100
    25.2 +++ b/gtk+3-demo/stuff/gtk+3-demo.desktop	Fri Mar 15 14:47:37 2013 +0000
    25.3 @@ -1,7 +1,7 @@
    25.4  [Desktop Entry]
    25.5  Type=Application
    25.6 -Name=GTK+3 Code demo
    25.7 -Name[ru]=Демонстрация GTK+3
    25.8 +Name=GTK+ 3.0 Code demo
    25.9 +Name[ru]=Демонстрация GTK+ 3.0
   25.10  Exec=gtk3-demo
   25.11  Icon=gtk-demo
   25.12  Categories=GTK;Development;Documentation;
    26.1 --- a/gtk+3-dev/receipt	Thu Mar 14 17:54:04 2013 +0100
    26.2 +++ b/gtk+3-dev/receipt	Fri Mar 15 14:47:37 2013 +0000
    26.3 @@ -30,4 +30,3 @@
    26.4  	cp -a $install/usr/share/aclocal $fs/usr/share
    26.5  	cp -a $install/usr/share/gir-1.0 $fs/usr/share
    26.6  }
    26.7 -
    27.1 --- a/gtk+3-widget-factory/receipt	Thu Mar 14 17:54:04 2013 +0100
    27.2 +++ b/gtk+3-widget-factory/receipt	Fri Mar 15 14:47:37 2013 +0000
    27.3 @@ -16,4 +16,3 @@
    27.4  	mkdir -p $fs/usr/bin
    27.5  	cp -a $install/usr/bin/gtk3-widget-factory $fs/usr/bin
    27.6  }
    27.7 -
    28.1 --- a/gtk+3/receipt	Thu Mar 14 17:54:04 2013 +0100
    28.2 +++ b/gtk+3/receipt	Fri Mar 15 14:47:37 2013 +0000
    28.3 @@ -71,4 +71,3 @@
    28.4  	cp -a $install/usr/share/themes $fs/usr/share
    28.5  	cp -a $install/usr/share/glib-2.0 $fs/usr/share
    28.6  }
    28.7 -
    29.1 --- a/gtk+3/stuff/settings.ini	Thu Mar 14 17:54:04 2013 +0100
    29.2 +++ b/gtk+3/stuff/settings.ini	Fri Mar 15 14:47:37 2013 +0000
    29.3 @@ -1,1 +1,2 @@
    29.4  # SliTaz GTK 3.0 Configuration file
    29.5 +[Settings]
    30.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    30.2 +++ b/gtk3-engine-unico-dev/receipt	Fri Mar 15 14:47:37 2013 +0000
    30.3 @@ -0,0 +1,19 @@
    30.4 +# SliTaz package receipt.
    30.5 +
    30.6 +PACKAGE="gtk3-engine-unico-dev"
    30.7 +VERSION="1.0.2"
    30.8 +CATEGORY="development"
    30.9 +SHORT_DESC="Development files for Unico"
   30.10 +MAINTAINER="al.bobylev@gmail.com"
   30.11 +LICENSE="GPL"
   30.12 +WEB_SITE="https://launchpad.net/unico"
   30.13 +
   30.14 +WANTED="gtk3-engine-unico"
   30.15 +DEPENDS="gtk3-engine-unico"
   30.16 +
   30.17 +# Rules to gen a SliTaz package suitable for Tazpkg.
   30.18 +genpkg_rules()
   30.19 +{
   30.20 +	cp -a $install/* $fs
   30.21 +	find $fs -name '*.so' -delete
   30.22 +}
    31.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    31.2 +++ b/gtk3-engine-unico/receipt	Fri Mar 15 14:47:37 2013 +0000
    31.3 @@ -0,0 +1,28 @@
    31.4 +# SliTaz package receipt.
    31.5 +
    31.6 +PACKAGE="gtk3-engine-unico"
    31.7 +VERSION="1.0.2"
    31.8 +CATEGORY="x-window"
    31.9 +SHORT_DESC="Unico GTK3 theme engine"
   31.10 +MAINTAINER="al.bobylev@gmail.com"
   31.11 +LICENSE="GPL"
   31.12 +WEB_SITE="https://launchpad.net/unico"
   31.13 +SOURCE="unico"
   31.14 +TARBALL="$SOURCE-$VERSION.tar.gz"
   31.15 +WGET_URL="https://launchpad.net/unico/1.0/$VERSION/+download/$TARBALL"
   31.16 +
   31.17 +DEPENDS="gtk+3"
   31.18 +BUILD_DEPENDS="gtk+3-dev wget"
   31.19 +
   31.20 +# Rules to configure and make the package.
   31.21 +compile_rules()
   31.22 +{
   31.23 +	./configure $CONFIGURE_ARGS && make && make install
   31.24 +}
   31.25 +
   31.26 +# Rules to gen a SliTaz package suitable for Tazpkg.
   31.27 +genpkg_rules()
   31.28 +{
   31.29 +	cp -a $install/* $fs
   31.30 +	find $fs -name '*.*a' -delete
   31.31 +}
    32.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    32.2 +++ b/leafpad3/receipt	Fri Mar 15 14:47:37 2013 +0000
    32.3 @@ -0,0 +1,32 @@
    32.4 +# SliTaz package receipt.
    32.5 +
    32.6 +PACKAGE="leafpad3"
    32.7 +VERSION="0.8.18.1"
    32.8 +CATEGORY="utilities"
    32.9 +SHORT_DESC="GTK simple text editor"
   32.10 +MAINTAINER="pankso@slitaz.org"
   32.11 +SOURCE="leafpad"
   32.12 +TARBALL="$SOURCE-$VERSION.tar.gz"
   32.13 +WEB_SITE="http://tarot.freeshell.org/leafpad/"
   32.14 +WGET_URL="http://savannah.nongnu.org/download/leafpad/$TARBALL"
   32.15 +
   32.16 +DEPENDS="gtk+3"
   32.17 +BUILD_DEPENDS="gtk+3-dev"
   32.18 +
   32.19 +# Rules to configure and make the package.
   32.20 +compile_rules()
   32.21 +{
   32.22 +	chmod +x install-sh
   32.23 +	./configure \
   32.24 +		$CONFIGURE_ARGS &&
   32.25 +	make &&
   32.26 +	make DESTDIR=$install install
   32.27 +}
   32.28 +
   32.29 +# Rules to gen a SliTaz package suitable for Tazpkg.
   32.30 +genpkg_rules()
   32.31 +{
   32.32 +	mkdir -p $fs/usr/share/pixmaps
   32.33 +	cp -a $install/usr/bin $fs/usr
   32.34 +	cp -a $install/usr/share/pixmaps/*.png $fs/usr/share/pixmaps
   32.35 +}
    33.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    33.2 +++ b/libgee-dev/receipt	Fri Mar 15 14:47:37 2013 +0000
    33.3 @@ -0,0 +1,20 @@
    33.4 +# SliTaz package receipt.
    33.5 +
    33.6 +PACKAGE="libgee-dev"
    33.7 +VERSION="0.6.8"
    33.8 +CATEGORY="development"
    33.9 +SHORT_DESC="GObject collection library devel files."
   33.10 +MAINTAINER="pankso@slitaz.org"
   33.11 +WEB_SITE="http://live.gnome.org/Libgee"
   33.12 +WANTED="libgee"
   33.13 +
   33.14 +# Rules to gen a SliTaz package suitable for Tazpkg.
   33.15 +genpkg_rules()
   33.16 +{
   33.17 +	mkdir -p $fs/usr/lib
   33.18 +	cp -a $install/usr/lib/*.*a $fs/usr/lib
   33.19 +	cp -a $install/usr/lib/pkgconfig $fs/usr/lib
   33.20 +	cp -a $install/usr/lib/girepository* $fs/usr/lib
   33.21 +	cp -a $install/usr/include $fs/usr
   33.22 +	cp -a $install/usr/share $fs/usr
   33.23 +}
    34.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    34.2 +++ b/libgee/receipt	Fri Mar 15 14:47:37 2013 +0000
    34.3 @@ -0,0 +1,31 @@
    34.4 +# SliTaz package receipt.
    34.5 +
    34.6 +PACKAGE="libgee"
    34.7 +VERSION="0.9.92"
    34.8 +CATEGORY="x-window"
    34.9 +SHORT_DESC="GObject collection library."
   34.10 +MAINTAINER="pankso@slitaz.org"
   34.11 +WEB_SITE="http://live.gnome.org/Libgee"
   34.12 +TARBALL="$PACKAGE-$VERSION.tar.xz"
   34.13 +HI_VERSION="$(echo $VERSION | cut -d. -f1,2)"
   34.14 +WGET_URL="$GNOME_MIRROR/$PACKAGE/$HI_VERSION/$TARBALL"
   34.15 +
   34.16 +DEPENDS="glib libffi"
   34.17 +BUILD_DEPENDS="bash vala gobject-introspection-dev sed glib-dev libffi-dev"
   34.18 +
   34.19 +# Rules to configure and make the package.
   34.20 +compile_rules() 
   34.21 +{
   34.22 +	./configure \
   34.23 +		--enable-introspection=yes \
   34.24 +		$CONFIGURE_ARGS &&
   34.25 +	make &&
   34.26 +	make install
   34.27 +}
   34.28 +
   34.29 +# Rules to gen a SliTaz package suitable for Tazpkg.
   34.30 +genpkg_rules()
   34.31 +{
   34.32 +	mkdir -p $fs/usr/lib
   34.33 +	cp -a $install/usr/lib/*.so* $fs/usr/lib
   34.34 +}
    35.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    35.2 +++ b/marlin-dev/receipt	Fri Mar 15 14:47:37 2013 +0000
    35.3 @@ -0,0 +1,23 @@
    35.4 +# SliTaz package receipt.
    35.5 +
    35.6 +PACKAGE="marlin-dev"
    35.7 +VERSION="0.5"
    35.8 +CATEGORY="devel"
    35.9 +SHORT_DESC="Development files for marlin"
   35.10 +MAINTAINER="al.bobylev@gmail.com"
   35.11 +LICENSE="GNU GPL v2, GNU GPL v3"
   35.12 +WEB_SITE="https://launchpad.net/marlin"
   35.13 +
   35.14 +WANTED="marlin"
   35.15 +DEPENDS="marlin"
   35.16 +
   35.17 +# Rules to gen a SliTaz package suitable for Tazpkg.
   35.18 +genpkg_rules()
   35.19 +{
   35.20 +	mkdir -p \
   35.21 +		$fs/usr/lib \
   35.22 +		$fs/usr/share
   35.23 +	cp -a $install/usr/include $fs/usr
   35.24 +	cp -a $install/usr/lib/pkgconfig $fs/usr/lib
   35.25 +	cp -a $install/usr/share/vala $fs/usr/share
   35.26 +}
    36.1 --- a/marlin/receipt	Thu Mar 14 17:54:04 2013 +0100
    36.2 +++ b/marlin/receipt	Fri Mar 15 14:47:37 2013 +0000
    36.3 @@ -5,30 +5,59 @@
    36.4  CATEGORY="utilities"
    36.5  SHORT_DESC="A sleek and fast GTK3 file manager"
    36.6  MAINTAINER="al.bobylev@gmail.com"
    36.7 -LICENSE="GNU GPL v2, GNU GPL v3"
    36.8 +LICENSE="GPL2 GPL3"
    36.9  WEB_SITE="https://launchpad.net/marlin"
   36.10  BRANCH="879"
   36.11  TARBALL="$PACKAGE-$BRANCH.tar.bz2"
   36.12  WGET_URL="bzr|lp:marlin"
   36.13  
   36.14 -DEPENDS=""
   36.15 +DEPENDS="dbus-glib gtk+3 libgee libnotify3 libsqlite varka dconf"
   36.16 +SUGGESTED="tumbler ffmpegthumbnailer granite extended-actions"
   36.17  BUILD_DEPENDS="bazaar cmake vala varka-dev gtk+3-dev libgee-dev sqlite-dev \
   36.18 -dbus-glib-dev libnotify3-dev"
   36.19 +dbus-glib-dev libnotify3-dev dconf-dev tumbler-dev ffmpegthumbnailer-dev \
   36.20 +granite-dev"
   36.21  
   36.22  # Rules to configure and make the package.
   36.23  compile_rules()
   36.24  {
   36.25 -#	export LDFLAGS="$LDFLAGS$(pkg-config --libs gee-1.0)"
   36.26 -	mkdir build
   36.27 -	cd build
   36.28 -	cmake ..
   36.29 -	make
   36.30 +	# gee-1.0 is old while gee-0.8 is latest ;)
   36.31 +	sed -i 's|gee-1.0|gee-0.8|g' $(grep -l gee-1.0 $(find . -type f))
   36.32  
   36.33 +	patch -p1 < $stuff/marlin-0.5.patch
   36.34 +	patch -p1 < $stuff/marlin-icons.patch
   36.35 +
   36.36 +	mkdir build && cd build &&
   36.37 +	cmake .. -DCMAKE_INSTALL_PREFIX=/usr &&
   36.38 +	make &&
   36.39 +	make DESTDIR=$install install
   36.40  }
   36.41  
   36.42  # Rules to gen a SliTaz package suitable for Tazpkg.
   36.43  genpkg_rules()
   36.44  {
   36.45 -	:
   36.46 -	#cp -a $install/* $fs
   36.47 +	mkdir -p \
   36.48 +		$fs/usr/bin \
   36.49 +		$fs/usr/lib \
   36.50 +		$fs/usr/share/locale
   36.51 +	cp -a $install/usr/bin $fs/usr
   36.52 +	cp -a $install/usr/lib/marlin $fs/usr/lib
   36.53 +	cp -a $install/usr/lib/*.so* $fs/usr/lib
   36.54 +	cp -a $install/usr/share/applications $fs/usr/share
   36.55 +	cp -a $install/usr/share/dbus* $fs/usr/share
   36.56 +	cp -a $install/usr/share/glib* $fs/usr/share
   36.57 +	cp -a $install/usr/share/icons $fs/usr/share
   36.58 +	cp -a $install/usr/share/marlin $fs/usr/share
   36.59 +	cp -a $install/usr/share/pixmaps $fs/usr/share
   36.60 +
   36.61 +	# localization
   36.62 +	. $WOK/slitaz-i18n/stuff/locale-pack.conf
   36.63 +	for lang in $LOCALE_PACK; do
   36.64 +		langf=$install/usr/share/locale/$lang
   36.65 +		[ -d $langf ] && cp -a $langf $fs/usr/share/locale
   36.66 +	done
   36.67 +
   36.68 +	# icons
   36.69 +	mkdir -p $fs/usr/share/icons/hicolor/16x16
   36.70 +	cp -a $stuff/apps $fs/usr/share/icons/hicolor/16x16
   36.71 +	cp -a $stuff/marlin.png $fs/usr/share/pixmaps
   36.72  }
    37.1 Binary file marlin/stuff/apps/view-list-column.png has changed
    38.1 Binary file marlin/stuff/apps/view-list-compact.png has changed
    39.1 Binary file marlin/stuff/apps/view-list-details.png has changed
    40.1 Binary file marlin/stuff/apps/view-list-icons.png has changed
    41.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    41.2 +++ b/marlin/stuff/marlin-0.5.patch	Fri Mar 15 14:47:37 2013 +0000
    41.3 @@ -0,0 +1,51 @@
    41.4 +# discussion: https://aur.archlinux.org/packages/marlin-bzr/
    41.5 +# patch found here: http://pastie.org/5189903
    41.6 +--- marlin-0.5/src/fm-directory-view.h
    41.7 ++++ marlin-0.5/src/fm-directory-view.h
    41.8 +@@ -42,6 +42,7 @@
    41.9 + typedef struct FMDirectoryView FMDirectoryView;
   41.10 + typedef struct FMDirectoryViewClass FMDirectoryViewClass;
   41.11 + 
   41.12 ++#define FM_DIRECTORY_TYPE_VIEW fm_directory_view_get_type()
   41.13 + #define FM_TYPE_DIRECTORY_VIEW fm_directory_view_get_type()
   41.14 + #define FM_DIRECTORY_VIEW(obj) \
   41.15 +     (G_TYPE_CHECK_INSTANCE_CAST ((obj), FM_TYPE_DIRECTORY_VIEW, FMDirectoryView))
   41.16 +
   41.17 +--- marlin-0.5/src/exo-icon-view.c
   41.18 ++++ marlin-0.5/src/exo-icon-view.c
   41.19 +@@ -4641,8 +4641,15 @@
   41.20 +         item = list ? list->data : NULL;
   41.21 + 
   41.22 +         /* Give focus to the first cell initially */
   41.23 +-        exo_icon_view_set_cell_data (icon_view, item);
   41.24 +-        gtk_cell_area_focus (icon_view->priv->cell_area, direction);
   41.25 ++        if (item == NULL)
   41.26 ++        {
   41.27 ++            return;
   41.28 ++        }
   41.29 ++        else
   41.30 ++        {
   41.31 ++            exo_icon_view_set_cell_data (icon_view, item);
   41.32 ++            gtk_cell_area_focus (icon_view->priv->cell_area, direction);
   41.33 ++        }
   41.34 +     }
   41.35 +     else
   41.36 +     {
   41.37 +@@ -4798,8 +4805,15 @@
   41.38 +         item = list ? list->data : NULL;
   41.39 + 
   41.40 +         /* Give focus to the first cell initially */
   41.41 +-        exo_icon_view_set_cell_data (icon_view, item);
   41.42 +-        gtk_cell_area_focus (icon_view->priv->cell_area, direction);
   41.43 ++        if (item == NULL)
   41.44 ++        {
   41.45 ++            return;
   41.46 ++        }
   41.47 ++        else
   41.48 ++        {
   41.49 ++            exo_icon_view_set_cell_data (icon_view, item);
   41.50 ++            gtk_cell_area_focus (icon_view->priv->cell_area, direction);
   41.51 ++        }
   41.52 +     }
   41.53 +     else
   41.54 +     {
    42.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    42.2 +++ b/marlin/stuff/marlin-icons.patch	Fri Mar 15 14:47:37 2013 +0000
    42.3 @@ -0,0 +1,129 @@
    42.4 +--- marlin-0.5/src/View/Chrome/ViewSwicher.vala
    42.5 ++++ marlin-0.5/src/View/Chrome/ViewSwicher.vala
    42.6 +@@ -74,16 +74,16 @@
    42.7 + 
    42.8 +             switcher = new ModeButton ();
    42.9 + 
   42.10 +-            icon = new Image.from_icon_name ("view-list-icons-symbolic", IconSize.MENU);
   42.11 ++            icon = new Image.from_icon_name ("view-list-icons", IconSize.MENU);
   42.12 +             icon.set_tooltip_text (_("View as icons"));
   42.13 +             switcher.append(icon);
   42.14 +-            list = new Image.from_icon_name ("view-list-details-symbolic", IconSize.MENU);
   42.15 ++            list = new Image.from_icon_name ("view-list-details", IconSize.MENU);
   42.16 +             list.set_tooltip_text (_("View as list"));
   42.17 +             switcher.append(list);
   42.18 +-            compact = new Image.from_icon_name ("view-list-compact-symbolic", IconSize.MENU);
   42.19 ++            compact = new Image.from_icon_name ("view-list-compact", IconSize.MENU);
   42.20 +             compact.set_tooltip_text (_("View as compact list"));
   42.21 +             switcher.append(compact);
   42.22 +-            miller = new Image.from_icon_name ("view-list-column-symbolic", IconSize.MENU);
   42.23 ++            miller = new Image.from_icon_name ("view-list-column", IconSize.MENU);
   42.24 +             miller.set_tooltip_text(_("View as column"));
   42.25 +             switcher.append(miller);
   42.26 +             
   42.27 +--- marlin-0.5/src/View/Window.vala
   42.28 ++++ marlin-0.5/src/View/Window.vala
   42.29 +@@ -703,13 +703,13 @@
   42.30 +                                { "Redo", Stock.REDO, N_("_Redo"),
   42.31 +                                  "<control>Y", N_("Redo the last action"),
   42.32 +                                  action_redo_callback },
   42.33 +-                               { "Up", "go-up-symbolic", N_("Open _Parent"),
   42.34 ++                               { "Up", "go-up", N_("Open _Parent"),
   42.35 +                                  "<alt>Up", N_("Open the parent folder"),
   42.36 +                                  action_go_up },
   42.37 +-                               { "Back", "go-previous-symbolic", N_("_Back"),
   42.38 ++                               { "Back", "go-previous", N_("_Back"),
   42.39 +                                  "<alt>Left", N_("Go to the previous visited location"),
   42.40 +                                  action_go_back },
   42.41 +-                               { "Forward", "go-next-symbolic", N_("_Forward"),
   42.42 ++                               { "Forward", "go-next", N_("_Forward"),
   42.43 +                                  "<alt>Right", N_("Go to the next visited location"),
   42.44 +                                  action_go_forward },
   42.45 +                                { "Reload", Stock.REFRESH, N_("_Reload"),
   42.46 +--- marlin-0.5/src/View/LocationBar.vala
   42.47 ++++ marlin-0.5/src/View/LocationBar.vala
   42.48 +@@ -110,7 +110,7 @@
   42.49 +             dir = Environment.get_user_special_dir(UserDirectory.MUSIC);
   42.50 +             if(dir.contains("/"))
   42.51 +             {
   42.52 +-                IconDirectory icon = {dir, "folder-music-symbolic", false, null, null, dir.split("/"), false, null};
   42.53 ++                IconDirectory icon = {dir, "folder-music", false, null, null, dir.split("/"), false, null};
   42.54 +                 icon.exploded[0] = "/";
   42.55 +                 add_icon(icon);
   42.56 +             }
   42.57 +@@ -119,7 +119,7 @@
   42.58 +             dir = Environment.get_user_special_dir(UserDirectory.PICTURES);
   42.59 +             if(dir.contains("/"))
   42.60 +             {
   42.61 +-                IconDirectory icon = {dir, "folder-pictures-symbolic", false, null, null, dir.split("/"), false, null};
   42.62 ++                IconDirectory icon = {dir, "folder-pictures", false, null, null, dir.split("/"), false, null};
   42.63 +                 icon.exploded[0] = "/";
   42.64 +                 add_icon(icon);
   42.65 +             }
   42.66 +@@ -128,7 +128,7 @@
   42.67 +             dir = Environment.get_user_special_dir(UserDirectory.VIDEOS);
   42.68 +             if(dir.contains("/"))
   42.69 +             {
   42.70 +-                IconDirectory icon = {dir, "folder-videos-symbolic", false, null, null, dir.split("/"), false, null};
   42.71 ++                IconDirectory icon = {dir, "folder-videos", false, null, null, dir.split("/"), false, null};
   42.72 +                 icon.exploded[0] = "/";
   42.73 +                 add_icon(icon);
   42.74 +             }
   42.75 +@@ -137,7 +137,7 @@
   42.76 +             dir = Environment.get_user_special_dir(UserDirectory.DOWNLOAD);
   42.77 +             if(dir.contains("/"))
   42.78 +             {
   42.79 +-                IconDirectory icon = {dir, "folder-downloads-symbolic", false, null, null, dir.split("/"), false, null};
   42.80 ++                IconDirectory icon = {dir, "folder-downloads", false, null, null, dir.split("/"), false, null};
   42.81 +                 icon.exploded[0] = "/";
   42.82 +                 add_icon(icon);
   42.83 +             }
   42.84 +@@ -146,7 +146,7 @@
   42.85 +             dir = Environment.get_user_special_dir(UserDirectory.DOCUMENTS);
   42.86 +             if(dir.contains("/"))
   42.87 +             {
   42.88 +-                IconDirectory icon = {dir, "folder-documents-symbolic", false, null, null, dir.split("/"), false, null};
   42.89 ++                IconDirectory icon = {dir, "folder-documents", false, null, null, dir.split("/"), false, null};
   42.90 +                 icon.exploded[0] = "/";
   42.91 +                 add_icon(icon);
   42.92 +             }
   42.93 +@@ -155,7 +155,7 @@
   42.94 +             dir = Environment.get_user_special_dir(UserDirectory.TEMPLATES);
   42.95 +             if(dir.contains("/"))
   42.96 +             {
   42.97 +-                IconDirectory icon = {dir, "folder-templates-symbolic", false, null, null, dir.split("/"), false, null};
   42.98 ++                IconDirectory icon = {dir, "folder-templates", false, null, null, dir.split("/"), false, null};
   42.99 +                 icon.exploded[0] = "/";
  42.100 +                 add_icon(icon);
  42.101 +             }
  42.102 +@@ -163,7 +163,7 @@
  42.103 +             dir = Environment.get_home_dir();
  42.104 +             if(dir.contains("/"))
  42.105 +             {
  42.106 +-                IconDirectory icon = {dir, "go-home-symbolic", false, null, null, dir.split("/"), true, null};
  42.107 ++                IconDirectory icon = {dir, "go-home", false, null, null, dir.split("/"), true, null};
  42.108 +                 icon.exploded[0] = "/";
  42.109 +                 add_icon(icon);
  42.110 +             }
  42.111 +--- marlin-0.5/src/View/Chrome/TopMenu.vala
  42.112 ++++ marlin-0.5/src/View/Chrome/TopMenu.vala
  42.113 +@@ -43,7 +43,7 @@
  42.114 +             compact_menu = (Gtk.Menu) win.ui.get_widget("/CompactMenu");
  42.115 +             toolbar_menu = (Gtk.Menu) win.ui.get_widget("/ToolbarMenu");
  42.116 + 
  42.117 +-            app_menu = new Varka.Widgets.ToolButtonWithMenu (new Image.from_icon_name ("emblem-system-symbolic", IconSize.MENU), 
  42.118 ++            app_menu = new Varka.Widgets.ToolButtonWithMenu (new Image.from_icon_name ("emblem-system", IconSize.MENU), 
  42.119 +                                                              null, _("Menu"), compact_menu);
  42.120 +             setup_items();
  42.121 +             show();
  42.122 +--- marlin-0.5/libwidgets/BreadcrumbsEntry.vala
  42.123 ++++ marlin-0.5/libwidgets/BreadcrumbsEntry.vala
  42.124 +@@ -74,7 +74,7 @@
  42.125 +         
  42.126 +         /* Load arrow image */
  42.127 +         try {
  42.128 +-            arrow_img = IconTheme.get_default ().load_icon ("go-jump-symbolic", 16, IconLookupFlags.GENERIC_FALLBACK);
  42.129 ++            arrow_img = IconTheme.get_default ().load_icon ("go-jump", 16, IconLookupFlags.GENERIC_FALLBACK);
  42.130 +         } catch(Error err) {
  42.131 +             stderr.printf ("Unable to load home icon: %s", err.message);
  42.132 +         }
    43.1 Binary file marlin/stuff/marlin.png has changed
    44.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    44.2 +++ b/tumbler-dev/receipt	Fri Mar 15 14:47:37 2013 +0000
    44.3 @@ -0,0 +1,24 @@
    44.4 +# SliTaz package receipt.
    44.5 +
    44.6 +PACKAGE="tumbler-dev"
    44.7 +VERSION="0.1.27"
    44.8 +CATEGORY="development"
    44.9 +SHORT_DESC="Development files for tumbler"
   44.10 +MAINTAINER="al.bobylev@gmail.com"
   44.11 +LICENSE="GPLv2 LGPL-2.1+"
   44.12 +WEB_SITE="http://www.ohloh.net/p/tumbler-xfce"
   44.13 +
   44.14 +WANTED="tumbler"
   44.15 +DEPENDS="tumbler"
   44.16 +
   44.17 +# Rules to gen a SliTaz package suitable for Tazpkg.
   44.18 +genpkg_rules()
   44.19 +{
   44.20 +	mkdir -p $fs/usr/lib/tumbler-1
   44.21 +	cp -a $install/usr/include $fs/usr
   44.22 +	cp -a $install/usr/lib/pkgconfig $fs/usr/lib
   44.23 +	cp -a $install/usr/lib/*.la $usr/lib
   44.24 +	cp -a $install/usr/lib/tumbler-1/plugins $fs/usr/lib/tumbler-1
   44.25 +	find $fs/usr/lib -name '*.so*' -delete
   44.26 +
   44.27 +}
    45.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    45.2 +++ b/tumbler/receipt	Fri Mar 15 14:47:37 2013 +0000
    45.3 @@ -0,0 +1,50 @@
    45.4 +# SliTaz package receipt.
    45.5 +
    45.6 +PACKAGE="tumbler"
    45.7 +VERSION="0.1.27"
    45.8 +CATEGORY="system"
    45.9 +SHORT_DESC="A D-Bus thumbnailing service based on the thumbnail management D-Bus specification"
   45.10 +MAINTAINER="al.bobylev@gmail.com"
   45.11 +LICENSE="GPLv2 LGPL-2.1+"
   45.12 +WEB_SITE="http://www.ohloh.net/p/tumbler-xfce"
   45.13 +TARBALL="$PACKAGE-$VERSION.tar.bz2"
   45.14 +HI_VERSION=$(echo $VERSION | cut -d. -f1,2)
   45.15 +WGET_URL="http://archive.xfce.org/src/xfce/$PACKAGE/$HI_VERSION/$TARBALL"
   45.16 +CONFIG_FILES="/etc/xdg/tumbler/tumbler.rc"
   45.17 +
   45.18 +DEPENDS="dbus-glib ffmpegthumbnailer libcurl libgsf poppler"
   45.19 +BUILD_DEPENDS="dbus-glib-dev curl-dev  glib-dev libgio-dev gdk-pixbuf-dev \
   45.20 +freetype-dev jpeg-dev ffmpegthumbnailer-dev gst-plugins-base-dev \
   45.21 +libgsf-dev poppler-dev libpng-dev lcms-dev" # gstreamer-dev (v.1.0)
   45.22 +
   45.23 +# Rules to configure and make the package.
   45.24 +compile_rules()
   45.25 +{
   45.26 +	./configure \
   45.27 +		--sysconfdir=/etc \
   45.28 +		--enable-debug=no \
   45.29 +		$CONFIGURE_ARGS &&
   45.30 +	make &&
   45.31 +	make install
   45.32 +}
   45.33 +
   45.34 +# Rules to gen a SliTaz package suitable for Tazpkg.
   45.35 +genpkg_rules()
   45.36 +{
   45.37 +	mkdir -p \
   45.38 +		$fs/usr/lib \
   45.39 +		$fs/usr/share/locale
   45.40 +	cp -a $install/etc $fs
   45.41 +	cp -a $install/usr/lib/*.so* $fs/usr/lib
   45.42 +	cp -a $install/usr/lib/tumbler* $fs/usr/lib
   45.43 +	find $fs/usr/lib -name '*.la' -delete
   45.44 +	cp -a $install/usr/share/dbus* $fs/usr/share
   45.45 +
   45.46 +	# SliTaz locale settings
   45.47 +	. $WOK/slitaz-i18n/stuff/locale-pack.conf
   45.48 +	for lang in $LOCALE_PACK; do
   45.49 +		langd=$install/usr/share/locale/$lang
   45.50 +		[ -d $langd ] && cp -a $langd $fs/usr/share/locale
   45.51 +	done
   45.52 +	true
   45.53 +}
    46.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    46.2 +++ b/vala/receipt	Fri Mar 15 14:47:37 2013 +0000
    46.3 @@ -0,0 +1,34 @@
    46.4 +# SliTaz package receipt.
    46.5 +
    46.6 +PACKAGE="vala"
    46.7 +VERSION="0.19.0"
    46.8 +CATEGORY="development"
    46.9 +SHORT_DESC="Compiler for the GObject type system"
   46.10 +MAINTAINER="mimas@slitaz.org"
   46.11 +TARBALL="$PACKAGE-$VERSION.tar.xz"
   46.12 +WEB_SITE="http://live.gnome.org/Vala"
   46.13 +WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION%.*}/$TARBALL"
   46.14 +TAGS="compiler"
   46.15 +
   46.16 +DEPENDS="glib"
   46.17 +BUILD_DEPENDS="flex bison glib-dev pkg-config"
   46.18 +
   46.19 +# Rules to configure and make the package.
   46.20 +compile_rules()
   46.21 +{
   46.22 +	./configure $CONFIGURE_ARGS &&
   46.23 +	make &&
   46.24 +	make install
   46.25 +}
   46.26 +
   46.27 +# Rules to gen a SliTaz package suitable for Tazpkg.
   46.28 +genpkg_rules()
   46.29 +{
   46.30 +	mkdir -p $fs/usr/lib $fs/usr/share
   46.31 +	cp -a $install/usr/bin $fs/usr
   46.32 +	cp -a $install/usr/lib/*.so* $fs/usr/lib
   46.33 +	cp -a $install/usr/lib/pkgconfig $fs/usr/lib
   46.34 +	cp -a $install/usr/include $fs/usr
   46.35 +	cp -a $install/usr/share/vala* $fs/usr/share
   46.36 +	cp -a $install/usr/share/aclocal $fs/usr/share
   46.37 +}