wok rev 18545
Add: get-vivaldi, kazehakase. Up: firefox-official(42.0). Misc: change various icons.
line diff
1.1 --- a/alsa-utils/stuff/applications/alsamixer.desktop Fri Nov 06 22:23:40 2015 +0100 1.2 +++ b/alsa-utils/stuff/applications/alsamixer.desktop Sat Nov 07 03:08:19 2015 +0200 1.3 @@ -5,5 +5,5 @@ 1.4 Name[ru]=Регулятор громкости Alsamixer 1.5 Name[zh_CN]=Alsamixer 音量控制 1.6 Exec=terminal -e alsamixer 1.7 -Icon=multimedia-player 1.8 +Icon=multimedia-volume-control 1.9 Categories=AudioVideo;Audio;Mixer;
2.1 --- a/cookutils-daemon/receipt Fri Nov 06 22:23:40 2015 +0100 2.2 +++ b/cookutils-daemon/receipt Sat Nov 07 03:08:19 2015 +0200 2.3 @@ -1,7 +1,7 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="cookutils-daemon" 2.7 -VERSION="766" 2.8 +VERSION="768" 2.9 CATEGORY="system-tools" 2.10 SHORT_DESC="SliTaz Cooker daemon script for build host." 2.11 MAINTAINER="pankso@slitaz.org"
3.1 --- a/cookutils/receipt Fri Nov 06 22:23:40 2015 +0100 3.2 +++ b/cookutils/receipt Sat Nov 07 03:08:19 2015 +0200 3.3 @@ -1,7 +1,7 @@ 3.4 # SliTaz package receipt. 3.5 3.6 PACKAGE="cookutils" 3.7 -VERSION="766" 3.8 +VERSION="768" 3.9 CATEGORY="base-system" 3.10 SHORT_DESC="SliTaz packages builder new generation." 3.11 MAINTAINER="pankso@slitaz.org"
4.1 --- a/epdfview/stuff/epdfview.desktop Fri Nov 06 22:23:40 2015 +0100 4.2 +++ b/epdfview/stuff/epdfview.desktop Sat Nov 07 03:08:19 2015 +0200 4.3 @@ -15,6 +15,6 @@ 4.4 Comment[ru]=Быстрая программа для просмотра файлов PDF 4.5 Comment[zh_CN]=轻量级PDF浏览器 4.6 Exec=epdfview %f 4.7 -Icon=/usr/share/epdfview/pixmaps/icon_epdfview-24.png 4.8 +Icon=epdfview 4.9 Categories=GTK;Office;Viewer; 4.10 MimeType=application/pdf;
5.1 --- a/firefox-official/receipt Fri Nov 06 22:23:40 2015 +0100 5.2 +++ b/firefox-official/receipt Sat Nov 07 03:08:19 2015 +0200 5.3 @@ -1,7 +1,7 @@ 5.4 # SliTaz package receipt. 5.5 5.6 PACKAGE="firefox-official" 5.7 -VERSION="41.0.2" 5.8 +VERSION="42.0" 5.9 CATEGORY="network" 5.10 SHORT_DESC="Official Firefox build by the Mozilla foundation." 5.11 MAINTAINER="pankso@slitaz.org"
6.1 --- a/galculator/receipt Fri Nov 06 22:23:40 2015 +0100 6.2 +++ b/galculator/receipt Sat Nov 07 03:08:19 2015 +0200 6.3 @@ -33,6 +33,7 @@ 6.4 -a "Name[ru]=Инженерный калькулятор" \ 6.5 -a "Name[zh_CN]=科学计算器" \ 6.6 -a "Comment[ru]=Выполняйте простые и инженерные вычисления" \ 6.7 + -s "Icon=accessories-calculator" \ 6.8 -s "Categories=Utility;Calculator;" 6.9 } 6.10
7.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 7.2 +++ b/get-vivaldi/receipt Sat Nov 07 03:08:19 2015 +0200 7.3 @@ -0,0 +1,16 @@ 7.4 +# SliTaz package receipt. 7.5 + 7.6 +PACKAGE="get-vivaldi" 7.7 +VERSION="1.0" 7.8 +CATEGORY="non-free" 7.9 +SHORT_DESC="An advanced browser made with the power user in mind" 7.10 +MAINTAINER="al.bobylev@gmail.com" 7.11 +LICENSE="non-free" 7.12 +WEB_SITE="https://vivaldi.com/" 7.13 +TAGS="web-browser" 7.14 + 7.15 +genpkg_rules() 7.16 +{ 7.17 + mkdir -p $fs/usr/bin 7.18 + cp stuff/get-vivaldi $fs/usr/bin 7.19 +}
8.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 8.2 +++ b/get-vivaldi/stuff/get-vivaldi Sat Nov 07 03:08:19 2015 +0200 8.3 @@ -0,0 +1,70 @@ 8.4 +#!/bin/sh 8.5 + 8.6 +# Get and install Vivaldi browser for Linux 8.7 + 8.8 +# Check if we are root 8.9 +if [ $(id -u) -ne 0 ]; then 8.10 + echo -e "\nYou must be root to run $(basename $0)." 8.11 + echo -e "Please type 'su' and root password to become super-user.\n" 8.12 + exit 1 8.13 +fi 8.14 + 8.15 +# Get link to downloading precompiled package 8.16 +dl_page='https://vivaldi.com/download' 8.17 +dl_type='32bit RPM' 8.18 +url=$(busybox wget -O - "$dl_page" | fgrep "$dl_type" | cut -d'"' -f2) 8.19 +if [ -z "$url" ]; then 8.20 + echo -e "\nCan't find download link on $dl_page for $dl_type." 8.21 + exit 1 8.22 +fi 8.23 + 8.24 +# Download package 8.25 +tmp_dir="$(mktemp -d)" 8.26 +cd "$tmp_dir" 8.27 +busybox wget $url 8.28 +pkg=$(basename $url) 8.29 +if [ ! -f $pkg ]; then 8.30 + cd - 8.31 + rm -r "$tmp_dir" 8.32 + echo "Could not download $pkg. Exiting." 8.33 + exit 1 8.34 +fi 8.35 + 8.36 +# Extract package 8.37 +rpm2cpio $pkg | cpio -dium 8.38 +rm $pkg 8.39 + 8.40 +# Remove updater cron job 8.41 +rm -r ./etc 8.42 + 8.43 +# Add icons 8.44 +for size in 16 22 24 32 48 64 128 256; do 8.45 + mkdir -p "$tmp_dir/usr/share/icons/hicolor/${size}x$size/apps" 8.46 + ln -s /opt/vivaldi/product_logo_$size.png "$tmp_dir/usr/share/icons/hicolor/${size}x$size/apps/vivaldi.png" 8.47 +done 8.48 + 8.49 +# Prepare to packaging 8.50 +VERSION="$(echo $pkg | sed 's|[^_]*_\(.*\)\.i386.*|\1|')" 8.51 +mkdir -p $tmp_dir/vivaldi-$VERSION/fs 8.52 +mv $tmp_dir/opt $tmp_dir/usr $tmp_dir/vivaldi-$VERSION/fs 8.53 + 8.54 +cat > $tmp_dir/vivaldi-$VERSION/receipt << EOT 8.55 +PACKAGE="vivaldi" 8.56 +VERSION="$VERSION" 8.57 +CATEGORY="non-free" 8.58 +SHORT_DESC="An advanced browser made with the power user in mind" 8.59 +DEPENDS="gtk+ bash cups" 8.60 +WEB_SITE="https://vivaldi.com/" 8.61 +EOT 8.62 + 8.63 +tazpkg pack vivaldi-$VERSION gzip 8.64 + 8.65 +# Clean to save RAM memory 8.66 +rm -rf $PACKAGE-$VERSION 8.67 + 8.68 +# Install pseudo package 8.69 +yes y | tazpkg install vivaldi-$VERSION.tazpkg 8.70 + 8.71 +# Clean 8.72 +cd - 8.73 +rm -rf $tmp_dir
9.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 9.2 +++ b/kazehakase/receipt Sat Nov 07 03:08:19 2015 +0200 9.3 @@ -0,0 +1,57 @@ 9.4 +# SliTaz package receipt. 9.5 + 9.6 +PACKAGE="kazehakase" 9.7 +VERSION="0.5.8" 9.8 +CATEGORY="network" 9.9 +SHORT_DESC="GTK+ web browser using Webkit rendering engine" 9.10 +MAINTAINER="al.bobylev@gmail.com" 9.11 +LICENSE="GPL2" 9.12 +WEB_SITE="http://kazehakase.sourceforge.jp/" 9.13 +TARBALL="$PACKAGE-$VERSION.tar.gz" 9.14 +WGET_URL="http://iij.dl.osdn.jp/kazehakase/43802/$TARBALL" 9.15 +PATCH_URL="http://http.debian.net/debian/pool/main/k/kazehakase/kazehakase_0.5.8-4.diff.gz" 9.16 +TAGS="web-browser" 9.17 + 9.18 +DEPENDS="libwebkit" 9.19 +BUILD_DEPENDS="libtool automake autoconf \ 9.20 +gtk+-dev dbus-glib-dev libwebkit-dev gnutls-dev xorg-libSM-dev zlib-dev \ 9.21 +util-linux-uuid-dev libxslt-dev" 9.22 + 9.23 +# Rules to configure and make the package. 9.24 +compile_rules() 9.25 +{ 9.26 + PATCH_GZ="$(basename "$PATCH_URL")" 9.27 + [ -e "$SRC/$PATCH_GZ" ] || wget -O "$SRC/$PATCH_GZ" "$PATCH_URL" 9.28 + cp "$SRC/$PATCH_GZ" $src 9.29 + gzip -d $PATCH_GZ 9.30 + patch -p1 -i ${PATCH_GZ%.gz} 9.31 + for i in $(cat $src/debian/patches/00list); do 9.32 + patch -p1 -i $src/debian/patches/$i.dpatch 9.33 + done 9.34 + 9.35 + for i in $stuff/*.patch; do 9.36 + patch -p1 -i $i 9.37 + done 9.38 + 9.39 + for i in codeset gettext glibc21 iconv isc-posix lcmessage progtest; do 9.40 + [ -e "/usr/share/aclocal/$i.m4" ] && 9.41 + cp /usr/share/aclocal/$i.m4 $src/macros 9.42 + done 9.43 + 9.44 + cp -f /usr/share/automake-*/missing . 9.45 + sed -i 's|G_CONST_RETURN|const|' $src/libegg/pixbufthumbnail/egg-pixbuf-thumbnail.h 9.46 + 9.47 + ./autogen.sh 9.48 + 9.49 + ./configure \ 9.50 + --prefix=/usr \ 9.51 + --sysconfdir=/etc \ 9.52 + $CONFIGURE_ARGS && make && make install 9.53 +} 9.54 + 9.55 +# Rules to gen a SliTaz package suitable for Tazpkg. 9.56 +genpkg_rules() 9.57 +{ 9.58 + cp -a $install/* $fs 9.59 + find $fs -name '*.la' -delete 9.60 +}
10.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 10.2 +++ b/kazehakase/stuff/kazehakase-0.5.6-rev3769-embed-vendor-version.patch Sat Nov 07 03:08:19 2015 +0200 10.3 @@ -0,0 +1,16 @@ 10.4 +--- kazehakase-0.5.6-svn3769_trunk/src/dialogs/kz-about-dialog.c.version 2009-01-28 04:25:07.000000000 +0900 10.5 ++++ kazehakase-0.5.6-svn3769_trunk/src/dialogs/kz-about-dialog.c 2009-04-12 18:01:15.000000000 +0900 10.6 +@@ -95,7 +95,12 @@ 10.7 + GDK_RGB_DITHER_NORMAL, 10.8 + 0, 0); 10.9 + /* Draw version and backends under the logo */ 10.10 +- version = g_strdup_printf (_("Version %s"), VERSION); 10.11 ++ version = g_strdup_printf (_("Version %s"), 10.12 ++#ifdef VERSION_VENDOR 10.13 ++ VERSION_VENDOR); 10.14 ++#else 10.15 ++ VERSION); 10.16 ++#endif 10.17 + backends = backend_names(); 10.18 + if (backends) 10.19 + {
11.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 11.2 +++ b/kazehakase/stuff/kazehakase-0.5.7-external-rev938-libegg-parallel_make.patch Sat Nov 07 03:08:19 2015 +0200 11.3 @@ -0,0 +1,13 @@ 11.4 +Index: libegg/pixbufthumbnail/Makefile.am 11.5 +=================================================================== 11.6 +--- kazehakase-0.5.7-svn938_trunk/libegg/pixbufthumbnail/Makefile.am (revision 938) 11.7 ++++ kazehakase-0.5.7-svn938_trunk/libegg/pixbufthumbnail/Makefile.am (working copy) 11.8 +@@ -26,7 +26,7 @@ 11.9 + 11.10 + testeggpixbufthumbnail_LDADD = \ 11.11 + $(EGG_LIBS) \ 11.12 +- $(top_builddir)/libegg/pixbufthumbnail/libeggpixbufthumbnail.la 11.13 ++ libeggpixbufthumbnail.la 11.14 + 11.15 + testeggpixbufthumbnail_SOURCES = \ 11.16 + testeggpixbufthumbnail.c
12.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 12.2 +++ b/kazehakase/stuff/kazehakase-0.5.8-svn3873_trunk-default-to-webkit.patch Sat Nov 07 03:08:19 2015 +0200 12.3 @@ -0,0 +1,21 @@ 12.4 +--- kazehakase-0.5.8-svn3873_trunk/src/kz-window.c.default 2010-05-04 00:38:44.000000000 +0900 12.5 ++++ kazehakase-0.5.8-svn3873_trunk/src/kz-window.c 2012-04-04 12:45:05.443193500 +0900 12.6 +@@ -830,15 +830,15 @@ 12.7 + if (engine) 12.8 + { 12.9 + if (engine[0]) 12.10 +- web = KZ_WEB(kz_web_new(engine, "gecko")); 12.11 ++ web = KZ_WEB(kz_web_new(engine, "webkit_gtk")); 12.12 + g_free(engine); 12.13 + } 12.14 + 12.15 + if (!web) 12.16 +- web = KZ_WEB(kz_web_new("gecko", "gecko")); 12.17 +- if (!web) 12.18 + web = KZ_WEB(kz_web_new("webkit_gtk", "webkit_gtk")); 12.19 + if (!web) 12.20 ++ web = KZ_WEB(kz_web_new("gecko", "gecko")); 12.21 ++ if (!web) 12.22 + web = KZ_WEB(kz_web_new("ie", "ie")); 12.23 + 12.24 + return web;
13.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 13.2 +++ b/kazehakase/stuff/kazehakase-0.5.8-svn3873_trunk-egg.patch Sat Nov 07 03:08:19 2015 +0200 13.3 @@ -0,0 +1,22 @@ 13.4 +--- kazehakase-0.5.8-svn3873_trunk/module/search/kz-hyper-estraier-search.c.egg 2009-02-27 13:28:44.000000000 +0900 13.5 ++++ kazehakase-0.5.8-svn3873_trunk/module/search/kz-hyper-estraier-search.c 2012-04-04 14:12:59.588721573 +0900 13.6 +@@ -401,7 +401,7 @@ 13.7 + strlen(G_DIR_SEPARATOR_S)); 13.8 + 13.9 + thumb_filename = 13.10 +- egg_pixbuf_get_thumb_filename(uri, 13.11 ++ egg_pixbuf_get_thumbnail_filename(uri, 13.12 + EGG_PIXBUF_THUMBNAIL_LARGE); 13.13 + thumb_uri = g_strdup_printf("history-search:?image=%s", 13.14 + thumb_filename); 13.15 +--- kazehakase-0.5.8-svn3873_trunk/module/search/rast-search.c.egg 2009-01-28 04:25:06.000000000 +0900 13.16 ++++ kazehakase-0.5.8-svn3873_trunk/module/search/rast-search.c 2012-04-04 14:12:53.801803391 +0900 13.17 +@@ -186,7 +186,7 @@ 13.18 + gchar *summary = get_value(line); 13.19 + 13.20 + desc = remove_tag(summary, g_strlen(summary)); 13.21 +- thumb_filename = egg_pixbuf_get_thumb_filename(uri, 13.22 ++ thumb_filename = egg_pixbuf_get_thumbnail_filename(uri, 13.23 + EGG_PIXBUF_THUMB_LARGE); 13.24 + thumb_uri = g_strdup_printf("history-search:?image=%s", 13.25 + thumb_filename);
14.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 14.2 +++ b/kazehakase/stuff/kazehakase-0.5.8-svn3873_trunk-gnutls3-gcry_control.patch Sat Nov 07 03:08:19 2015 +0200 14.3 @@ -0,0 +1,12 @@ 14.4 +--- kazehakase-0.5.8-svn3873_trunk/src/kz-app.c.gnutls3 2009-09-14 01:51:10.000000000 +0900 14.5 ++++ kazehakase-0.5.8-svn3873_trunk/src/kz-app.c 2013-02-09 21:18:04.000000000 +0900 14.6 +@@ -494,7 +494,9 @@ 14.7 + 14.8 + #ifdef USE_SSL 14.9 + /* initialize gnutls. this function should be called once. */ 14.10 ++#if GNUTLS_VERSION_NUMBER <= 0x020b00 14.11 + gcry_control(GCRYCTL_SET_THREAD_CBS, &gcry_threads_pthread); 14.12 ++#endif 14.13 + gnutls_global_init(); 14.14 + #endif 14.15 +
15.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 15.2 +++ b/kazehakase/stuff/kazehakase-0.5.8-svn3873_trunk-ruby19.patch Sat Nov 07 03:08:19 2015 +0200 15.3 @@ -0,0 +1,147 @@ 15.4 +--- kazehakase-0.5.8-svn3873_trunk/configure.ac.ruby19 2010-05-04 00:38:45.000000000 +0900 15.5 ++++ kazehakase-0.5.8-svn3873_trunk/configure.ac 2012-04-04 14:00:45.795119865 +0900 15.6 +@@ -421,14 +421,21 @@ 15.7 + rbconfig="$RUBY -rrbconfig -e " 15.8 + 15.9 + changequote(<<, >>) 15.10 +- for var_name in archdir sitearchdir CFLAGS LIBRUBYARG LIBS libdir; do 15.11 ++ for var_name in archdir sitearchdir vendorarchdir CFLAGS LIBRUBYARG LIBS libdir; do 15.12 + rbconfig_tmp=`$rbconfig "print Config::CONFIG['$var_name']"` 15.13 + eval "rbconfig_$var_name=\"$rbconfig_tmp\"" 15.14 + done 15.15 + changequote([, ]) 15.16 + 15.17 ++ changequote(<<, >>) 15.18 ++ RUBY_CONFIGH_DIR=`$rbconfig "print Config::CONFIG['includedir']"` 15.19 ++ RUBY_CONFIGH_DIR=${RUBY_CONFIGH_DIR}/`$rbconfig "print Config::CONFIG['arch']"` 15.20 ++ changequote([, ]) 15.21 ++ 15.22 + RUBY_CFLAGS="$RUBY_CFLAGS -I$rbconfig_archdir " 15.23 + RUBY_CFLAGS="$RUBY_CFLAGS -I$rbconfig_sitearchdir " 15.24 ++ RUBY_CFLAGS="$RUBY_CFLAGS -I$rbconfig_vendorarchdir " 15.25 ++ RUBY_CFLAGS="$RUBY_CFLAGS -I$RUBY_CONFIGH_DIR" 15.26 + RUBY_CFLAGS="$RUBY_CFLAGS $rbconfig_CFLAGS " 15.27 + RUBY_LIBS="$rbconfig_LIBRUBYARG $rbconfig_LIBS" 15.28 + RUBY_LDFLAGS="-L$rbconfig_libdir" 15.29 +@@ -602,8 +609,8 @@ 15.30 + GENHTML_OPTIONS="--title 'Kazehakase Code Coverage'" 15.31 + 15.32 + KAZEHAKASE_CFLAGS="$GTK_CFLAGS $LIBGNUTLS_CFLAGS $GIO_CFLAGS $DBUS_GLIB_CFLAGS" 15.33 +-KAZEHAKASE_CFLAGS="$KAZEHAKASE_CFLAGS -DGDK_DISABLE_DEPRECATED -DGTK_DISABLE_DEPRECATED" 15.34 +-KAZEHAKASE_CFLAGS="$KAZEHAKASE_CFLAGS -DG_DISABLE_DEPRECATED" 15.35 ++KAZEHAKASE_CFLAGS="$KAZEHAKASE_CFLAGS -DGDK_NOTDISABLE_DEPRECATED -DGTK_NOTDISABLE_DEPRECATED" 15.36 ++KAZEHAKASE_CFLAGS="$KAZEHAKASE_CFLAGS -DG_NOTDISABLE_DEPRECATED" 15.37 + KAZEHAKASE_CFLAGS="$KAZEHAKASE_CFLAGS -DSYSDATADIR=\\\"\"\$(datadir)\"\\\"" 15.38 + KAZEHAKASE_CFLAGS="$KAZEHAKASE_CFLAGS -DLOCALEDIR=\\\"\"\$(localedir)\"\\\"" 15.39 + KAZEHAKASE_CFLAGS="$KAZEHAKASE_CFLAGS -DKZ_DATADIR=\\\"\"\$(datadir)/\$(PACKAGE)\"\\\"" 15.40 +--- kazehakase-0.5.8-svn3873_trunk/ext/ruby/kz-rb-embed.c.ruby19 2009-09-27 22:18:07.000000000 +0900 15.41 ++++ kazehakase-0.5.8-svn3873_trunk/ext/ruby/kz-rb-embed.c 2012-04-04 14:00:45.605121458 +0900 15.42 +@@ -112,7 +112,7 @@ 15.43 + rb_kz_embed_find(VALUE self, VALUE keyword, VALUE backward) 15.44 + { 15.45 + gboolean find; 15.46 +- find = kz_embed_find(_SELF(self), STR2CSTR(keyword), RVAL2CBOOL(backward)); 15.47 ++ find = kz_embed_find(_SELF(self), StringValuePtr(keyword), RVAL2CBOOL(backward)); 15.48 + return CBOOL2RVAL(find); 15.49 + } 15.50 + 15.51 +@@ -120,7 +120,7 @@ 15.52 + rb_kz_embed_incremental_search(VALUE self, VALUE keyword, VALUE backward) 15.53 + { 15.54 + gboolean search; 15.55 +- search = kz_embed_incremental_search(_SELF(self), STR2CSTR(keyword), 15.56 ++ search = kz_embed_incremental_search(_SELF(self), StringValuePtr(keyword), 15.57 + RVAL2CBOOL(backward)); 15.58 + return CBOOL2RVAL(search); 15.59 + } 15.60 +@@ -330,7 +330,7 @@ 15.61 + static VALUE 15.62 + rb_kz_embed_set_encoding(VALUE self, VALUE encoding) 15.63 + { 15.64 +- kz_embed_set_encoding(_SELF(self), STR2CSTR(encoding)); 15.65 ++ kz_embed_set_encoding(_SELF(self), StringValuePtr(encoding)); 15.66 + return self; 15.67 + } 15.68 + 15.69 +@@ -384,7 +384,7 @@ 15.70 + rb_kz_embed_save_with_content(VALUE self, VALUE rawfilename) 15.71 + { 15.72 + gboolean save; 15.73 +- save = kz_embed_save_with_content(_SELF(self), STR2CSTR(rawfilename)); 15.74 ++ save = kz_embed_save_with_content(_SELF(self), StringValuePtr(rawfilename)); 15.75 + return RVAL2CBOOL(save); 15.76 + } 15.77 + 15.78 +--- kazehakase-0.5.8-svn3873_trunk/ext/ruby/kz-rb-sidebar.c.ruby19 2009-01-28 04:25:13.000000000 +0900 15.79 ++++ kazehakase-0.5.8-svn3873_trunk/ext/ruby/kz-rb-sidebar.c 2012-04-04 14:00:45.605121458 +0900 15.80 +@@ -69,16 +69,16 @@ 15.81 + 15.82 + entries = rb_funcall(mKzSidebarFactory, rb_intern("entries"), 0); 15.83 + 15.84 +- len = RARRAY(entries)->len; 15.85 ++ len = RARRAY_LEN(entries); 15.86 + for (i = 0; i < len; i++) { 15.87 + VALUE entry_info; 15.88 + KzSidebarEntry *entry; 15.89 + 15.90 +- entry_info = RARRAY(entries)->ptr[i]; 15.91 ++ entry_info = (RARRAY_PTR(entries))[i]; 15.92 + entry = g_new0(KzSidebarEntry, 1); 15.93 +- entry->priority_hint = NUM2INT(RARRAY(entry_info)->ptr[0]); 15.94 +- entry->label = RVAL2CSTR(RARRAY(entry_info)->ptr[1]); 15.95 +- entry->icon = RVAL2CSTR2(RARRAY(entry_info)->ptr[2]); 15.96 ++ entry->priority_hint = NUM2INT((RARRAY_PTR(entry_info))[0]); 15.97 ++ entry->label = RVAL2CSTR((RARRAY_PTR(entry_info))[1]); 15.98 ++ entry->icon = RVAL2CSTR2((RARRAY_PTR(entry_info))[2]); 15.99 + entry->create = rb_kz_sidebar_entry_create; 15.100 + kz_sidebar_append_entry(entry); 15.101 + } 15.102 +--- kazehakase-0.5.8-svn3873_trunk/ext/ruby/kz-rb-web.c.ruby19 2009-09-27 22:18:07.000000000 +0900 15.103 ++++ kazehakase-0.5.8-svn3873_trunk/ext/ruby/kz-rb-web.c 2012-04-04 14:05:41.973991342 +0900 15.104 +@@ -161,7 +161,7 @@ 15.105 + rb_kz_web_find(VALUE self, VALUE keyword, VALUE backward) 15.106 + { 15.107 + gboolean find; 15.108 +- find = kz_web_find(_SELF(self), STR2CSTR(keyword), RVAL2CBOOL(backward)); 15.109 ++ find = kz_web_find(_SELF(self), StringValuePtr(keyword), RVAL2CBOOL(backward)); 15.110 + return CBOOL2RVAL(find); 15.111 + } 15.112 + 15.113 +@@ -169,7 +169,7 @@ 15.114 + rb_kz_web_incremental_search(VALUE self, VALUE keyword, VALUE backward) 15.115 + { 15.116 + gboolean search; 15.117 +- search = kz_web_incremental_search(_SELF(self), STR2CSTR(keyword), 15.118 ++ search = kz_web_incremental_search(_SELF(self), StringValuePtr(keyword), 15.119 + RVAL2CBOOL(backward)); 15.120 + return CBOOL2RVAL(search); 15.121 + } 15.122 +@@ -409,7 +409,7 @@ 15.123 + static VALUE 15.124 + rb_kz_web_set_encoding(VALUE self, VALUE encoding) 15.125 + { 15.126 +- kz_web_set_encoding(_SELF(self), STR2CSTR(encoding)); 15.127 ++ kz_web_set_encoding(_SELF(self), StringValuePtr(encoding)); 15.128 + return self; 15.129 + } 15.130 + 15.131 +@@ -463,7 +463,7 @@ 15.132 + rb_kz_web_save_with_content(VALUE self, VALUE rawfilename) 15.133 + { 15.134 + gboolean save; 15.135 +- save = kz_web_save_with_content(_SELF(self), STR2CSTR(rawfilename)); 15.136 ++ save = kz_web_save_with_content(_SELF(self), StringValuePtr(rawfilename)); 15.137 + return RVAL2CBOOL(save); 15.138 + } 15.139 + 15.140 +--- kazehakase-0.5.8-svn3873_trunk/ext/ruby/kz-rb-window.c.ruby19 2009-09-27 22:18:07.000000000 +0900 15.141 ++++ kazehakase-0.5.8-svn3873_trunk/ext/ruby/kz-rb-window.c 2012-04-04 14:00:45.605121458 +0900 15.142 +@@ -44,7 +44,7 @@ 15.143 + static VALUE 15.144 + rb_kz_window_set_default(VALUE self, VALUE window) 15.145 + { 15.146 +- rb_cvar_set(self, id_default, window, Qfalse); 15.147 ++ rb_cvar_set(self, id_default, window); 15.148 + return Qnil; 15.149 + } 15.150 +
16.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 16.2 +++ b/kazehakase/stuff/kazehakase-rev3873-gtk222.patch Sat Nov 07 03:08:19 2015 +0200 16.3 @@ -0,0 +1,107 @@ 16.4 +--- kazehakase-0.5.8-svn3873_trunk/src/kz-notebook.c.gtk222 2009-10-16 23:53:10.000000000 +0900 16.5 ++++ kazehakase-0.5.8-svn3873_trunk/src/kz-notebook.c 2010-09-08 23:44:28.000000000 +0900 16.6 +@@ -82,7 +82,11 @@ 16.7 + guint page_num, 16.8 + gpointer data); 16.9 + static void switch_page (GtkNotebook *notebook, 16.10 ++#if GTK_CHECK_VERSION(2, 21, 6) 16.11 ++ gpointer page, 16.12 ++#else 16.13 + GtkNotebookPage *page, 16.14 ++#endif 16.15 + guint page_num); 16.16 + 16.17 + static void cb_page_reordered (GtkNotebook *notebook, 16.18 +@@ -322,7 +326,13 @@ 16.19 + } 16.20 + 16.21 + static void 16.22 +-switch_page (GtkNotebook *notebook, GtkNotebookPage *page, guint page_num) 16.23 ++switch_page (GtkNotebook *notebook, 16.24 ++#if GTK_CHECK_VERSION(2, 21, 6) 16.25 ++ gpointer page, 16.26 ++#else 16.27 ++ GtkNotebookPage *page, 16.28 ++#endif 16.29 ++ guint page_num) 16.30 + { 16.31 + KzTabLabel *tab; 16.32 + gchar *title; 16.33 +--- kazehakase-0.5.8-svn3873_trunk/src/kz-window.c.gtk222 2010-05-04 00:38:44.000000000 +0900 16.34 ++++ kazehakase-0.5.8-svn3873_trunk/src/kz-window.c 2010-09-08 23:40:40.000000000 +0900 16.35 +@@ -213,11 +213,19 @@ 16.36 + guint page_num, 16.37 + KzWindow *kz); 16.38 + static void cb_notebook_switch_page (GtkNotebook *notebook, 16.39 ++#if GTK_CHECK_VERSION(2, 21, 6) 16.40 ++ gpointer page, 16.41 ++#else 16.42 + GtkNotebookPage *page, 16.43 ++#endif 16.44 + guint page_num, 16.45 + KzWindow *kz); 16.46 + static void cb_notebook_switch_page_after (GtkNotebook *notebook, 16.47 ++#if GTK_CHECK_VERSION(2, 21, 6) 16.48 ++ gpointer page, 16.49 ++#else 16.50 + GtkNotebookPage *page, 16.51 ++#endif 16.52 + guint page_num, 16.53 + KzWindow *kz); 16.54 + static void cb_gesture_stack_motion (KzGesture *gesture, 16.55 +@@ -1912,7 +1920,12 @@ 16.56 + } 16.57 + 16.58 + static void 16.59 +-cb_notebook_switch_page (GtkNotebook *notebook, GtkNotebookPage *page, 16.60 ++cb_notebook_switch_page (GtkNotebook *notebook, 16.61 ++#if GTK_CHECK_VERSION(2, 21, 6) 16.62 ++ gpointer page, 16.63 ++#else 16.64 ++ GtkNotebookPage *page, 16.65 ++#endif 16.66 + guint page_num, KzWindow *kz) 16.67 + { 16.68 + KzWeb *kzweb = KZ_WINDOW_NTH_WEB(kz, page_num); 16.69 +@@ -1971,7 +1984,12 @@ 16.70 + } 16.71 + 16.72 + static void 16.73 +-cb_notebook_switch_page_after (GtkNotebook *notebook, GtkNotebookPage *page, 16.74 ++cb_notebook_switch_page_after (GtkNotebook *notebook, 16.75 ++#if GTK_CHECK_VERSION(2, 21, 6) 16.76 ++ gpointer page, 16.77 ++#else 16.78 ++ GtkNotebookPage *page, 16.79 ++#endif 16.80 + guint page_num, KzWindow *kz) 16.81 + { 16.82 + kz_feed_info_change_state(KZ_FEED_INFO(kz->feed_info)); 16.83 +--- kazehakase-0.5.8-svn3873_trunk/src/sidebar/kz-tabtree.c.gtk222 2009-10-16 23:53:09.000000000 +0900 16.84 ++++ kazehakase-0.5.8-svn3873_trunk/src/sidebar/kz-tabtree.c 2010-09-08 23:36:25.000000000 +0900 16.85 +@@ -85,7 +85,11 @@ 16.86 + 16.87 + /* signal handlers for Notebook on KzWindow */ 16.88 + static void cb_switch_page (GtkNotebook *notebook, 16.89 ++#if GTK_CHECK_VERSION(2, 21, 6) 16.90 ++ gpointer page, 16.91 ++#else 16.92 + GtkNotebookPage *page, 16.93 ++#endif 16.94 + guint page_num, 16.95 + KzTabTree *tabtree); 16.96 + 16.97 +@@ -696,7 +700,12 @@ 16.98 + 16.99 + 16.100 + static void 16.101 +-cb_switch_page (GtkNotebook *notebook, GtkNotebookPage *page, 16.102 ++cb_switch_page (GtkNotebook *notebook, 16.103 ++#if GTK_CHECK_VERSION(2, 21, 6) 16.104 ++ gpointer page, 16.105 ++#else 16.106 ++ GtkNotebookPage *page, 16.107 ++#endif 16.108 + guint page_num, KzTabTree *tabtree) 16.109 + { 16.110 + KzWeb *web;
17.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 17.2 +++ b/kazehakase/stuff/kazehakase.spec Sat Nov 07 03:08:19 2015 +0200 17.3 @@ -0,0 +1,731 @@ 17.4 +# svnroot: http://svn.sourceforge.jp/svnroot/kazehakase/kazehakase/trunk 17.5 +# To create svn based tarball, follow: 17.6 +# $ svn ro $svnroot 17.7 +# $ mv trunk %%name-%%version-svn%%svnver 17.8 +# $ tar czf %%name-%%version-svn%%svnver.tar.gz %%name-%%version-svn%%svnver 17.9 + 17.10 +# Filtering out unwanted Provides 17.11 +%define _use_internal_dependency_generator 0 17.12 + 17.13 +%define support_anthy 0 17.14 +%define support_ruby 1 17.15 +%if 0%{?fedora} < 19 17.16 +%define rubyabi 1.9.1 17.17 +%endif 17.18 +%define support_webkit 1 17.19 + 17.20 +%define usesvn 1 17.21 +%define need_autogen 0 17.22 + 17.23 +%define min_webkit_EVR 1.1.1 17.24 + 17.25 +%if 0%{?fedora} >= 13 17.26 +%define Geckover 1.9.2.3 17.27 +%endif 17.28 + 17.29 +%if 0%{?usesvn} > 0 17.30 +%define need_autogen 1 17.31 +%endif 17.32 + 17.33 +%define obsolete_plugin_ver 0.4.5-1 17.34 + 17.35 +%define repoid 43802 17.36 +%define svnver 3873_trunk 17.37 + 17.38 + 17.39 +# 17.40 +# When changing release number, please make it sure that 17.41 +# the new EVR won't be higher than the one of higher branch!! 17.42 +# 17.43 +%define fedorarel 17 17.44 +%define _release %{fedorarel}%{?usesvn:.svn%svnver} 17.45 + 17.46 +%if 0%{?fedora} < 1 17.47 +# WebKit does not seem to be ready 17.48 +%define support_webkit 0 17.49 +%endif 17.50 + 17.51 +# Patch17 needs autotools 17.52 +%define need_autogen 1 17.53 + 17.54 +Name: kazehakase 17.55 +Version: 0.5.8 17.56 +# 17.57 +# When changing release number, please make it sure that 17.58 +# the new EVR won't be higher than the one of higher branch!! 17.59 +# 17.60 +Release: %{_release}%{?dist}.2 17.61 +Summary: Kazehakase browser using Gecko rendering engine 17.62 + 17.63 +Group: Applications/Internet 17.64 +License: GPLv2+ 17.65 +URL: http://kazehakase.sourceforge.jp/ 17.66 +Source0: http://dl.sourceforge.jp/kazehakase/%{repoid}/%{name}-%{version}%{?usesvn:-svn%svnver}.tar.gz 17.67 +Patch14: kazehakase-0.5.6-rev3769-embed-vendor-version.patch 17.68 +Patch17: kazehakase-0.5.7-external-rev938-libegg-parallel_make.patch 17.69 +Patch19: kazehakase-rev3873-gtk222.patch 17.70 +Patch20: kazehakase-0.5.8-svn3873_trunk-default-to-webkit.patch 17.71 +Patch21: kazehakase-0.5.8-svn3873_trunk-ruby19.patch 17.72 +Patch22: kazehakase-0.5.8-svn3873_trunk-egg.patch 17.73 +# http://lists.gnu.org/archive/html/gnutls-devel/2011-03/msg00034.html 17.74 +# http://lists.fedoraproject.org/pipermail/devel/2013-February/178231.html 17.75 +Patch23: kazehakase-0.5.8-svn3873_trunk-gnutls3-gcry_control.patch 17.76 + 17.77 +BuildRequires: dbus-devel 17.78 +BuildRequires: expat-devel 17.79 +BuildRequires: gnutls-devel 17.80 +BuildRequires: gtk2-devel 17.81 +BuildRequires: libgcrypt-devel 17.82 +BuildRequires: libSM-devel 17.83 +BuildRequires: perl(XML::Parser) 17.84 + 17.85 +BuildRequires: hyperestraier-devel 17.86 +%if %{support_anthy} 17.87 +BuildRequires: anthy-devel 17.88 +BuildRequires: mecab-devel 17.89 +%endif 17.90 +%if %{support_ruby} 17.91 +BuildRequires: rubygem(gettext) 17.92 +BuildRequires: rubygem-gtk2-devel 17.93 +BuildRequires: rubygems-devel 17.94 +%if 0%{?fedora} < 19 17.95 +BuildRequires: ruby(abi) = %{rubyabi} 17.96 +%endif 17.97 +BuildRequires: ruby-devel 17.98 +%endif 17.99 +%if %{support_webkit} 17.100 +BuildRequires: webkitgtk-devel %{?min_webkit_EVR:>= %{min_webkit_EVR}} 17.101 +%endif 17.102 + 17.103 +BuildRequires: desktop-file-utils 17.104 +BuildRequires: gettext 17.105 + 17.106 +Requires: %{name}-base = %{version}-%{release} 17.107 + 17.108 +# GLib version dependency 17.109 +# Borrowed from pidgin spec file 17.110 + 17.111 +# Require Binary Compatible glib 17.112 +# returns bogus value if glib2-devel is not installed in order for parsing to succeed 17.113 +# bogus value wont make it into a real package 17.114 +%define glib_ver %([ -a %{_libdir}/pkgconfig/glib-2.0.pc ] && pkg-config --modversion glib-2.0 || echo -n "999") 17.115 +BuildRequires: glib2-devel 17.116 +# drop this for now 17.117 +# Requires: glib2 >= %{glib_ver} 17.118 + 17.119 +BuildRequires: gecko-devel %{?Geckover:>= %{Geckover}} 17.120 +BuildRequires: gecko-devel-unstable 17.121 +%if 0%{?fedora} >= 15 17.122 +Requires: %{name}-webkit = %{version}-%{release} 17.123 +%else 17.124 +Requires: gecko-libs %{?Geckover:>= %{Geckover}} 17.125 +%endif 17.126 + 17.127 +BuildRequires: intltool 17.128 +%if %{need_autogen} 17.129 +BuildRequires: libtool 17.130 +BuildRequires: automake 17.131 +%endif 17.132 + 17.133 +%description 17.134 +Kazehakase is a Web browser which aims to provide 17.135 +a user interface that is truly user-friendly & fully customizable. 17.136 + 17.137 +%if 0%{?fedora} >= 15 17.138 +Note that kazehakase no longer supports Gecko and this 17.139 +package will always pulls %{name}-webkit subpackage in. 17.140 +%else 17.141 +This package uses Gecko for HTML rendering engine. 17.142 +%endif 17.143 + 17.144 +%package base 17.145 +Summary: Base package of Kazehakase 17.146 +Group: Applications/Internet 17.147 +%if %{support_ruby} < 1 17.148 +Obsoletes: %{name}-ruby < %{version}-%{release} 17.149 +%endif 17.150 + 17.151 +%description base 17.152 +This package contains base files for Kazehakase. 17.153 +To use Kazehakase, you also need to install a package 17.154 +containing HTML rendering engine module for Kazehakase. 17.155 + 17.156 + 17.157 +%package hyperestraier 17.158 +Summary: Kazehakase search engine of hyperestraier 17.159 +Group: Applications/Internet 17.160 +Requires: %{name}-base = %{version}-%{release} 17.161 +Obsoletes: %{name}-plugins < %{obsolete_plugin_ver} 17.162 +Obsoletes: %{name}-plugins-hyperestraier < %{obsolete_plugin_ver} 17.163 +Provides: %{name}-plugins = %{version}-%{release} 17.164 +Provides: %{name}-plugins-hyperestraier = %{version}-%{release} 17.165 + 17.166 +%description hyperestraier 17.167 +This package contains the search plugin of hyperstraier for 17.168 +Kazehakase. 17.169 + 17.170 +%if %{support_anthy} 17.171 +%package anthy 17.172 +Summary: Kazehakase search engine of Anthy 17.173 +Group: Applications/Internet 17.174 +Requires: %{name}-base = %{version}-%{release} 17.175 +Obsoletes: %{name}-plugins-anthy < %{obsolete_plugin_ver} 17.176 +Provides: %{name}-plugins-anthy = %{version}-%{release} 17.177 + 17.178 +%description anthy 17.179 +This package contains the search plugin of Anthy for 17.180 +Kazehakase. 17.181 +%endif 17.182 + 17.183 +%if %{support_ruby} 17.184 +%package ruby 17.185 +Summary: Ruby interpretter support for Kazehakase 17.186 +Group: Applications/Internet 17.187 +Requires: %{name}-base = %{version}-%{release} 17.188 +Requires: ruby(gtk2) 17.189 +%if 0%{?fedora} >= 19 17.190 +Requires: ruby(release) 17.191 +%else 17.192 +Requires: ruby(abi) = %{rubyabi} 17.193 +%endif 17.194 + 17.195 +%description ruby 17.196 +This package contains the binding of Kazehakase for 17.197 +Ruby interpretter. 17.198 +%endif 17.199 + 17.200 +%if %{support_webkit} 17.201 +%package webkit 17.202 +Summary: Kazehakase browser using WebKit rendering engine 17.203 +Group: Applications/Internet 17.204 +Requires: %{name}-base = %{version}-%{release} 17.205 +Requires: webkitgtk %{?min_webkit_EVR:>= %{min_webkit_EVR}} 17.206 + 17.207 +%description webkit 17.208 +Kazehakase is a Web browser which aims to provide 17.209 +a user interface that is truly user-friendly & fully customizable. 17.210 + 17.211 +This package uses WebKit for HTML rendering engine. 17.212 +%endif 17.213 + 17.214 +%prep 17.215 +%setup -q -n %{name}-%{version}%{?usesvn:-svn%svnver} 17.216 + 17.217 +%patch14 -p1 -b .evr 17.218 +%patch17 -p0 -b .libegg_mak 17.219 +%patch19 -p1 -b .gtk 17.220 +#%%patch18 -p0 -b .xul192 17.221 +%patch20 -p1 -b .default 17.222 +%if 0%{?fedora} >= 17 17.223 +%patch21 -p1 -b .ruby19 17.224 +%endif 17.225 +%patch22 -p1 -b .egg 17.226 +%patch23 -p1 -b .gnutls3 17.227 + 17.228 +%if %{support_anthy} 17.229 +%{__sed} -i.anthy -e '/^anthy_available/d' configure 17.230 +%endif 17.231 + 17.232 +for f in README.ja TODO.ja ; do 17.233 + iconv -f EUCJP -t UTF8 $f > ${f}.tmp && \ 17.234 + ( touch -r ${f} ${f}.tmp ; %{__mv} -f ${f}.tmp ${f} ) || \ 17.235 + %{__rm} -f ${f}.tmp 17.236 +done 17.237 + 17.238 +# Filtering unwanted Provides 17.239 +%{__cat} > %{name}-filter-provides.sh <<EOF 17.240 +#!/bin/bash 17.241 + 17.242 +unset exclude_provides 17.243 +for f in \$(find %{buildroot}%{_libdir}/%{name}/*/ -type f -name '*.so' -or -name '*.so.*' ) 17.244 +do 17.245 + exclude_provides="\$exclude_provides \$(basename \$f)" 17.246 +done 17.247 + 17.248 +%{__find_provides} "\$@" | while read prov 17.249 +do 17.250 + skip=0 17.251 + for f in \$exclude_provides 17.252 + do 17.253 + if echo "\$prov" | grep -q "\$f" 17.254 + then 17.255 + skip=1 17.256 + break 17.257 + fi 17.258 + done 17.259 + if [ \$skip = 1 ] ; then continue ; fi 17.260 + echo \$prov 17.261 +done 17.262 +EOF 17.263 + 17.264 +%{__sed} -e 's|provides|requires|' %{name}-filter-provides.sh \ 17.265 + | %{__sed} -e 's|prov|req|' > %{name}-filter-requires.sh 17.266 +%{__chmod} 0755 %{name}-filter-*.sh 17.267 +%define __find_provides \ 17.268 + %{_builddir}/%{name}-%{version}%{?usesvn:-svn%svnver}/%{name}-filter-provides.sh 17.269 +%define __find_requires \ 17.270 + %{_builddir}/%{name}-%{version}%{?usesvn:-svn%svnver}/%{name}-filter-requires.sh 17.271 + 17.272 +# Enable deprecated for now 17.273 +find . -name Makefile.am -or -name configure.ac | \ 17.274 + xargs sed -i.deprecated -e 's|DISABLE_DEPRECATED|NOTDISABLE_DEPRECATED|g' 17.275 + 17.276 +# Kill xulrunner for F-15+ 17.277 +sed -i.killxul -e '\@^embed_LTLIBRARIES@d' module/embed/gecko/Makefile.am 17.278 + 17.279 +%build 17.280 +%if %{need_autogen} 17.281 +sh autogen.sh 17.282 +%endif 17.283 + 17.284 +export CFLAGS="%{optflags} -DVERSION_VENDOR=\\\"%{version}-%{release}\\\"" 17.285 + 17.286 +rm -rf builddir ; mkdir builddir 17.287 +pushd builddir 17.288 +ln -sf ../configure 17.289 + 17.290 +%configure \ 17.291 + --srcdir=$(pwd)/.. \ 17.292 + --enable-migemo \ 17.293 +%if %{support_ruby} < 1 17.294 + --with-ruby=no \ 17.295 +%endif 17.296 + --with-gecko-engine=libxul \ 17.297 + --disable-gtkmozembed 17.298 + 17.299 +%{__make} %{?_smp_mflags} -k V=1 17.300 +popd 17.301 + 17.302 +%install 17.303 +%{__rm} -rf $RPM_BUILD_ROOT 17.304 + 17.305 +pushd builddir 17.306 +%{__make} install DESTDIR=$RPM_BUILD_ROOT \ 17.307 + INSTALL="%{__install} -c -p" 17.308 +popd 17.309 + 17.310 +%{__rm} -f $RPM_BUILD_ROOT%{_libdir}/%{name}/lib*.so 17.311 +find $RPM_BUILD_ROOT%{_libdir}/%{name} -name \*.la | xargs %{__rm} -f 17.312 + 17.313 +desktop-file-install \ 17.314 +%if 0%{?fedora} < 19 17.315 + --vendor fedora \ 17.316 +%endif 17.317 + --remove-category Application \ 17.318 + --delete-original \ 17.319 + --dir $RPM_BUILD_ROOT%{_datadir}/applications \ 17.320 + $RPM_BUILD_ROOT%{_datadir}/applications/%{name}.desktop 17.321 + 17.322 +%{find_lang} %{name} 17.323 + 17.324 +%clean 17.325 +%{__rm} -rf $RPM_BUILD_ROOT 17.326 + 17.327 +%files -f %{name}.lang base 17.328 +%defattr(-,root,root,-) 17.329 +%doc AUTHORS COPYING* README* TODO* 17.330 + 17.331 +%dir %{_sysconfdir}/%{name}/ 17.332 +%dir %{_sysconfdir}/%{name}/mozilla/ 17.333 +%config(noreplace) %{_sysconfdir}/%{name}/*.xml 17.334 +%config(noreplace) %{_sysconfdir}/%{name}/*rc 17.335 +%config(noreplace) %{_sysconfdir}/%{name}/mozilla/*.xml 17.336 + 17.337 +%{_bindir}/%{name} 17.338 +%{_bindir}/kz-embed-process 17.339 +%dir %{_libdir}/%{name}/ 17.340 +%dir %{_libdir}/%{name}/embed/ 17.341 +%dir %{_libdir}/%{name}/search/ 17.342 + 17.343 +%{_libdir}/%{name}/libkazehakase.so.* 17.344 +%{_libdir}/%{name}/embed/per_process.so 17.345 + 17.346 +%dir %{_datadir}/%{name}/ 17.347 +%if %{support_ruby} 17.348 +%dir %{_libdir}/%{name}/ext/ 17.349 +%dir %{_datadir}/%{name}/ext/ 17.350 +%endif 17.351 +%{_datadir}/%{name}/search-result.* 17.352 +%{_datadir}/%{name}/*.png 17.353 +%{_datadir}/%{name}/icons/ 17.354 +%{_datadir}/pixmaps/%{name}*.png 17.355 +%{_datadir}/applications/*%{name}.desktop 17.356 + 17.357 +%{_mandir}/man1/%{name}.1* 17.358 + 17.359 +%files hyperestraier 17.360 +%defattr(-,root,root,-) 17.361 +%{_libdir}/%{name}/search/hyper-estraier.so 17.362 + 17.363 +%if %{support_anthy} 17.364 +%files anthy 17.365 +%defattr(-,root,root,-) 17.366 +%{_libdir}/%{name}/search/anthy*.so* 17.367 +%endif 17.368 + 17.369 +%if %{support_ruby} 17.370 +%files ruby 17.371 +%defattr(-,root,root,-) 17.372 +%{_libdir}/%{name}/ext/ruby.so 17.373 +%{_datadir}/%{name}/ext/ruby/ 17.374 +%endif 17.375 + 17.376 +%files 17.377 +%defattr(-,root,root,-) 17.378 +%if 0%{?fedora} < 15 17.379 +%{_libdir}/%{name}/embed/gecko.so 17.380 +%endif 17.381 + 17.382 + 17.383 +%if %{support_webkit} 17.384 +%files webkit 17.385 +%defattr(-,root,root,-) 17.386 +%{_libdir}/%{name}/embed/webkit_gtk.so 17.387 +%endif 17.388 + 17.389 +%changelog 17.390 +* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.5.8-17.svn3873_trunk.2 17.391 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild 17.392 + 17.393 +* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.5.8-17.svn3873_trunk.1 17.394 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild 17.395 + 17.396 +* Thu Apr 24 2014 Vít Ondruch <vondruch@redhat.com> - 0.5.8-17.svn3873_trunk 17.397 +- Rebuilt for https://fedoraproject.org/wiki/Changes/Ruby_2.1 17.398 + 17.399 +* Tue Aug 6 2013 Mamoru TASAKA <mtasaka@fedoraproject.org> - 0.5.8-16.svn3873 17.400 +- Add libgcrypt-devel to BR explicitly 17.401 + 17.402 +* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.5.8-15.svn3873_trunk.3 17.403 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild 17.404 + 17.405 +* Mon Apr 8 2013 Mamoru TASAKA <mtasaka@fedoraproject.org> - 0.5.8-15.svn3873_trunk 17.406 +- Change webkitgtk dependency 17.407 + 17.408 +* Thu Mar 21 2013 Mamoru TASAKA <mtasaka@fedoraproject.org> - 0.5.8-14.svn3873_trunk 17.409 +- F-19: rebuild against ruby 2.0 17.410 + 17.411 +* Sat Feb 9 2013 Mamoru TASAKA <mtasaka@fedoraproject.org> - 0.5.8-13.svn3873_trunk 17.412 +- F-19: kill vendorization of desktop file (fpc#247) 17.413 +- Patch for gnutls 3.1.7 17.414 + 17.415 +* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.5.8-12.svn3873_trunk.1 17.416 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild 17.417 + 17.418 +* Wed Apr 4 2012 Mamoru Tasaka <mtasaka@fedoraproject.org> - 0.5.8-12.svn3873_trunk 17.419 +- Actually change the default to webkit (bug 799019) 17.420 +- Fix build with ruby19 17.421 +- Fix type wrt thumbname related funtion 17.422 + 17.423 +* Thu Jan 5 2012 Mamoru Tasaka <mtasaka@fedoraproject.org> - 0.5.8-11.svn3873_trunk 17.424 +- F-17: rebuild against gcc47 17.425 + 17.426 +* Tue Dec 06 2011 Adam Jackson <ajax@redhat.com> - 0.5.8-10.svn3873_trunk.1 17.427 +- Rebuild for new libpng 17.428 + 17.429 +* Wed Jul 13 2011 Mamoru Tasaka <mtasaka@fedoraproject.org> - 0.5.8-10.svn3873_trunk 17.430 +- Kill xulrunner support 17.431 + 17.432 +* Thu Sep 9 2010 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.5.8-9.svn3873_trunk 17.433 +- Patch to compile with GTK >= 2.21.6 17.434 + 17.435 +* Sat Jul 3 2010 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.5.8-8.svn3873_trunk 17.436 +- Rebuild against new webkitgtk 17.437 + 17.438 +* Tue May 4 2010 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.5.8-7.svn3873_trunk 17.439 +- Update to the latest trunk 17.440 + 17.441 +* Fri Nov 20 2009 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.5.8-5.svn3870_trunk 17.442 +- Just to make kazehakase built with xulrunner 1.9.2.1 17.443 + ( Does not work actually... However webkit support still works ) 17.444 + 17.445 +* Sat Nov 7 2009 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> 17.446 +- release++ 17.447 + 17.448 +* Sat Oct 17 2009 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.5.8-2 17.449 +- Fix crash when trying to view source or cert with no page loaded 17.450 + (bug 529334) 17.451 + 17.452 +* Tue Sep 29 2009 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.5.8-1 17.453 +- Update to 0.5.8 17.454 + 17.455 +* Tue Sep 29 2009 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> 17.456 +- rev 3859 17.457 +- Enable ruby support again 17.458 + 17.459 +* Mon Sep 7 2009 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.5.7-3.svn3832_trunk 17.460 +- Try rev 3832 for new dbus feature 17.461 +- Kill ruby support until it gets compiled 17.462 + 17.463 +* Sat Aug 29 2009 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.5.7-1 17.464 +- Update to 0.5.7 17.465 + 17.466 +* Thu Aug 27 2009 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> 17.467 +- rev 3783 17.468 + 17.469 +* Sun Jul 26 2009 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> 17.470 +- rev 3778 17.471 + 17.472 +* Sat Jul 25 2009 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.5.6-15.svn3773_trunk 17.473 +- F-12: Mass rebuild 17.474 + 17.475 +* Tue Jul 21 2009 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.5.6-14.svn3773_trunk 17.476 +- Attempt to compile with GTK 2.17.5 17.477 + 17.478 +* Wed Jul 1 2009 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> 17.479 +- Rebuild 17.480 + 17.481 +* Sun May 31 2009 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> 17.482 +- rev 3773 17.483 + 17.484 +* Mon Apr 27 2009 Christopher Aillon <caillon@redhat.com> - 0.5.6-11.svn3771_trunk.1 17.485 +- Rebuild against newer gecko 17.486 + 17.487 +* Wed Apr 22 2009 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.5.6-11.svn3771_trunk 17.488 +- rev 3771 17.489 +- Fix crash when downloading is cancalled 17.490 +- Fix the issue that downloading won't work when file already exists. 17.491 + 17.492 +* Mon Apr 20 2009 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.5.6-10.svn3770_trunk 17.493 +- rev 3770 17.494 +- spec file cleanup 17.495 + 17.496 +* Sun Apr 12 2009 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.5.6-9.svn3769_trunk 17.497 +- Prevent crash even if no modules are installed (related to bug 444569) 17.498 +- Embed Vendor version information 17.499 + 17.500 +* Sun Apr 12 2009 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.5.6-8.svn3769_trunk 17.501 +- Fix crash when kazehakase-webkit only is installed (bug 444569) 17.502 + 17.503 +* Fri Mar 27 2009 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.5.6-7.svn3769_trunk 17.504 +- Fix Group tag (bug 486452) 17.505 + 17.506 +* Mon Mar 23 2009 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> 17.507 +- Try rev 3769 17.508 + 17.509 +* Sun Mar 8 2009 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> 17.510 +- Try rev 3766, along with WebKit soname bump 17.511 + 17.512 +* Fri Feb 27 2009 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.5.6-6.svn3761_trunk 17.513 +- rev3756-compile.patch merged upstream 17.514 + 17.515 +* Tue Feb 24 2009 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> 17.516 +- F-11: Mass rebuild 17.517 + 17.518 +* Tue Feb 24 2009 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.5.6-5.svn3756_trunk 17.519 +- Filter out unwanted Provides 17.520 + 17.521 +* Mon Feb 23 2009 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> 17.522 +- Try rev 3756 17.523 + 17.524 +* Fri Jan 30 2009 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> 17.525 +- Try rev 3598 17.526 +- Now WebKit >= rev 39421 is needed 17.527 + 17.528 +* Tue Dec 23 2008 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> 17.529 +- F-11: Rebuild against xulrunner 1.9.1 17.530 + 17.531 +* Fri Oct 31 2008 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.5.6-1 17.532 +- 0.5.6 17.533 +- -UGTK_DISABLE_DEPRECATED hack removed (hack introduced in upstream) 17.534 + 17.535 +* Wed Sep 24 2008 Christopher Aillon <caillon@redhat.com> 17.536 +- Rebuild against newer gecko (F-9/8) 17.537 + 17.538 +* Tue Aug 5 2008 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> 17.539 +- Try rev. 3509 17.540 + 17.541 +* Wed Jul 30 2008 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.5.5-1 17.542 +- 0.5.5 17.543 + 17.544 +* Sat Jul 19 2008 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.5.4-7.svn3506_trunk 17.545 +- F-9+: relax gecko libs dependency (as GRE_GetGREPathWithProperties properly 17.546 + finds out GRE) 17.547 +- F-10+: add -UGTK_DISABLE_DEPRECATED temporarily 17.548 + 17.549 +* Tue Jul 15 2008 Christopher Aillon <caillon@redhat.com> 17.550 +- Rebuild against newer gecko (F-8) 17.551 + 17.552 +* Wed Jul 02 2008 Christopher Aillon <caillon@redhat.com> 17.553 +- Rebuild against newer gecko (F-8) 17.554 + 17.555 +* Sat Jun 28 2008 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.5.4-6.svn3506_trunk 17.556 +- Try rev 3506 17.557 +- Workaround for bug 447444 (xulrunner vs hunspell conflict) (F-9+) 17.558 + 17.559 +* Wed Jun 25 2008 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.5.4-5 17.560 +- Apply xulrunner related patches from debian by Mike Hommey 17.561 + (debian bug 480796, rh bug 402641) 17.562 + This time kazehakase actually works with xulrunner! 17.563 + 17.564 +* Tue Apr 29 2008 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.5.4-4 17.565 +- Remove redundant description per rel-eng team request 17.566 + 17.567 +* Wed Apr 23 2008 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.5.4-3 17.568 +- F-9: temporizing fix for xulrunner 17.569 + * Enable gtk-mozembed - don't work at all, however does not crash 17.570 + * force to install WebKit version 17.571 + 17.572 +* Wed Apr 16 2008 Christopher Aillon <caillon@redhat.com> - 0.5.4-2.1 17.573 +- Rebuild against newer gecko (F-8/9) 17.574 + 17.575 +* Mon Apr 14 2008 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.5.4-2 17.576 +- Rebuild for new WebKit (F-7/8: bug 438531) 17.577 + 17.578 +* Sun Mar 30 2008 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.5.4-1 17.579 +- 0.5.4 17.580 + 17.581 +* Fri Mar 28 2008 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.5.3-6.svn3501_trunk 17.582 +- Try svn 3501 (still not work against xulrunner :( ) 17.583 + 17.584 +* Tue Mar 25 2008 Christopher Aillon <caillon@redhat.com> - 0.5.3-5 17.585 +- Rebuild against newer gecko (F-7/8) 17.586 + 17.587 +* Wed Mar 5 2008 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.5.3-4 17.588 +- Create kazehakase-base, split gecko.so from -base package 17.589 + so that users can install only WebKit based package. 17.590 + 17.591 +* Sun Mar 2 2008 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.5.3-3 17.592 +- Support WebGTK 17.593 + 17.594 +* Sat Mar 1 2008 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.5.3-1 17.595 +- 0.5.3 17.596 + 17.597 +* Fri Feb 29 2008 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.5.2-8.svn3410_trunk 17.598 +- More try to use xulrunner 17.599 + * GRE version fix 17.600 + * Remove seemingly undesirable linking 17.601 + 17.602 +* Sun Feb 24 2008 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.5.2-7.svn3391_trunk 17.603 +- More try to use xulrunner 17.604 + * Fix linkage for gecko.so 17.605 + * Don't use MOZILLA_INTERNAL_API anymore 17.606 + * NS_NewStorageStream should be changed to use xpcom 17.607 + http://developer.mozilla.org/en/docs/Migrating_from_Internal_Linkage_to_Frozen_Linkage 17.608 + 17.609 +* Sat Feb 23 2008 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.5.2-2.svn3391_trunk 17.610 +- F-9: Try latest svn for xulrunner 17.611 + 17.612 +* Fri Feb 15 2008 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.5.2-1.2.svn3358 17.613 +- F-9: Try latest svn for xulrunner 17.614 + (Still build explicitly disabled. Now it builds, does not crash 17.615 + but hangs eternally...) 17.616 + 17.617 +* Sat Feb 9 2008 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> 17.618 +- Rebuild for new gecko engine (F-7/F-8) 17.619 + 17.620 +* Wed Jan 30 2008 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.5.2-1 17.621 +- 0.5.2 17.622 + 17.623 +* Tue Nov 27 2007 Christopher Aillon <caillon@redhat.com> 17.624 +- F-7/8: Rebuild against newer gecko 17.625 + 17.626 +* Wed Nov 12 2007 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.5.0-2 17.627 +- F-9: try to switch to xulrunner 17.628 + 17.629 +* Tue Nov 6 2007 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.5.0-1.dist.1 17.630 +- Rebuild against new gecko engine 17.631 +- Switch to use gecko virtual dependency (bug 352091) 17.632 + 17.633 +* Mon Oct 29 2007 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.5.0-1 17.634 +- 0.5.0 17.635 + 17.636 +* Fri Oct 26 2007 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.4.9-2.svn3312 17.637 +- Try svn 3312 17.638 + 17.639 +* Tue Oct 23 2007 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.4.9-2.dist.1 17.640 +- Rebuild against new gecko engine. 17.641 + 17.642 +* Mon Oct 8 2007 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.4.9-2 17.643 +- Readd accidentally deleted obsolete_plugin_ver macro 17.644 + 17.645 +* Sat Sep 29 2007 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.4.9-1 17.646 +- 0.4.9 17.647 + 17.648 +* Thu Aug 30 2007 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.4.8-1 17.649 +- 0.4.8 17.650 + 17.651 +* Wed Aug 22 2007 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.4.7-9.svn3228.dist.1 17.652 +- Mass rebuild (buildID or binutils issue) 17.653 + 17.654 +* Thu Aug 9 2007 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.4.7-9.svn3228 17.655 +- Rebuild against new gecko engine. 17.656 + 17.657 +* Fri Aug 3 2007 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.4.7-8.svn3228 17.658 +- Try svn 3228 17.659 +- Disable GTK_DISABLE_DEPRECATED for now 17.660 +- License update 17.661 + 17.662 +* Sat Jul 21 2007 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.4.7-7.svn3227 17.663 +- Try svn 3227 to drop GLib patch 17.664 + 17.665 +* Wed Jun 18 2007 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.4.7-5 17.666 +- Rebuild against new gecko engine 17.667 + 17.668 +* Tue Jun 5 2007 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.4.7-3 17.669 +- Patch to follow the newest GLib symbol 17.670 + 17.671 +* Tue Jun 5 2007 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.4.7-2 17.672 +- Parse GLib version dependency 17.673 + 17.674 +* Wed May 30 2007 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.4.7-1 17.675 +- 0.4.7 17.676 + 17.677 +* Mon May 28 2007 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.4.6-5.svn3221 17.678 +- Try svn 3221 17.679 + 17.680 +* Tue May 22 2007 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.4.6-4 17.681 +- Workaround for glib 2.13.1+ 17.682 + 17.683 +* Tue May 22 2007 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.4.6-2 17.684 +- Support Ruby/Migemo 17.685 + 17.686 +* Sun Apr 29 2007 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.4.6-1 17.687 +- 0.4.6 17.688 + 17.689 +* Tue Apr 10 2007 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.4.5-2 17.690 +- Enable ruby-gtk2 support 17.691 + 17.692 +* Tue Apr 3 2007 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.4.5-1 17.693 +- 0.4.5 17.694 +- Clean up spec file (rename plugins, drop "plugins" string from name) 17.695 +- Add ruby-gtk support (disabled until the review #232160 is completed) 17.696 + 17.697 +* Sat Mar 24 2007 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.4.4.1-4 17.698 +- gecko engine update 17.699 + 17.700 +* Tue Feb 27 2007 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.4.4.1-3.dist.1 17.701 +- gecko engine update 17.702 + 17.703 +* Sat Feb 24 2007 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> 17.704 +- enable anthy/mecab support (currently disabled) 17.705 + 17.706 +* Thu Feb 22 2007 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.4.4.1-3 17.707 +- enable hyperestraier support. 17.708 + 17.709 +* Sat Feb 4 2007 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.4.4.1-2.dist.1 17.710 +- modify configure for split of mozilla-config.h for multilib 17.711 + 17.712 +* Sat Feb 3 2007 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.4.4.1-2 17.713 +- Remove -Werror staff 17.714 + 17.715 +* Fri Feb 2 2007 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.4.4.1-1 17.716 +- 0.4.4.1 17.717 + 17.718 +* Fri Feb 2 2007 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.4.4-2 17.719 +- Add more BuildRequires: anthy-devel, libSM-devel 17.720 + 17.721 +* Tue Jan 30 2007 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.4.4-1 17.722 +- 0.4.4 17.723 + 17.724 +* Thu Jan 18 2007 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.4.3-4 17.725 +- Do not call autoconf, just fix configure. 17.726 + 17.727 +* Sat Dec 23 2006 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.4.3-3 17.728 +- Add firefox version dependency for gecko engine 17.729 + 17.730 +* Wed Dec 13 2006 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.4.3-2 17.731 +- Own %%{_libdir}/%%{name} correctly 17.732 + 17.733 +* Tue Dec 12 2006 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.4.3-1 17.734 +- Initial packaging to import to Fedora Extras.
18.1 --- a/lxde/stuff/lxde-logout.desktop Fri Nov 06 22:23:40 2015 +0100 18.2 +++ b/lxde/stuff/lxde-logout.desktop Sat Nov 07 03:08:19 2015 +0200 18.3 @@ -7,6 +7,6 @@ 18.4 Name[pt_BR]=Encerrar sessão do LXDE 18.5 Name[ru]=Завершить сеанс 18.6 Exec=lxde-logout 18.7 -Icon=slitaz-logout 18.8 +Icon=system-log-out 18.9 Categories=System; 18.10 OnlyShowIn=LXDE;
19.1 --- a/lxinput/receipt Fri Nov 06 22:23:40 2015 +0100 19.2 +++ b/lxinput/receipt Sat Nov 07 03:08:19 2015 +0200 19.3 @@ -30,4 +30,6 @@ 19.4 cp -a $install/usr/bin $fs/usr 19.5 cp -a $install/usr/share/$PACKAGE $fs/usr/share 19.6 rm -rf $fs/usr/share/$PACKAGE/*.png 19.7 + sed -i 's|^Icon=.*$|Icon=preferences-desktop-keyboard|' \ 19.8 + $fs/usr/share/applications/lxinput.desktop 19.9 }
20.1 --- a/lxrandr/receipt Fri Nov 06 22:23:40 2015 +0100 20.2 +++ b/lxrandr/receipt Sat Nov 07 03:08:19 2015 +0200 20.3 @@ -35,5 +35,8 @@ 20.4 20.5 # Remove man & locales 20.6 rm -rf $fs/usr/share/man 20.7 - rm -rf $fs/usr/share/locale 20.8 + rm -rf $fs/usr/share/locale 20.9 + 20.10 + sed -i 's|^Icon=.*$|Icon=preferences-desktop-display|' \ 20.11 + $fs/usr/share/applications/lxrandr.desktop 20.12 }
21.1 --- a/lxsession/receipt Fri Nov 06 22:23:40 2015 +0100 21.2 +++ b/lxsession/receipt Sat Nov 07 03:08:19 2015 +0200 21.3 @@ -31,4 +31,7 @@ 21.4 # Use SliTaz Icon them for lxsession-logout 21.5 cp -a $stuff/desktop.conf $fs/etc/xdg/lxsession/LXDE 21.6 chown -R 0.0 $fs 21.7 + 21.8 + sed -i 's|^Icon=.*$|Icon=session-properties|' \ 21.9 + $fs/usr/share/applications/lxsession-edit.desktop 21.10 }
22.1 --- a/make-slitaz-icons/receipt Fri Nov 06 22:23:40 2015 +0100 22.2 +++ b/make-slitaz-icons/receipt Sat Nov 07 03:08:19 2015 +0200 22.3 @@ -1,7 +1,7 @@ 22.4 # SliTaz package receipt. 22.5 22.6 PACKAGE="make-slitaz-icons" 22.7 -VERSION="151105" 22.8 +VERSION="151106" 22.9 CATEGORY="development" 22.10 SHORT_DESC="Make SliTaz icon theme" 22.11 MAINTAINER="al.bobylev@gmail.com"
23.1 --- a/make-slitaz-icons/stuff/mksit.sh Fri Nov 06 22:23:40 2015 +0100 23.2 +++ b/make-slitaz-icons/stuff/mksit.sh Sat Nov 07 03:08:19 2015 +0200 23.3 @@ -3,7 +3,7 @@ 23.4 # Aleksej Bobylev <al.bobylev@gmail.com>, 2014-2015 23.5 # (Started in November 2014) 23.6 23.7 -VERSION="151105" 23.8 +VERSION="151106" 23.9 23.10 . /lib/libtaz.sh 23.11 23.12 @@ -337,7 +337,7 @@ 23.13 #--------------------------- 23.14 # PCManFM panel and menu 23.15 c tab-new 23.16 -c view-choose 23.17 +c view-choose preferences-desktop 23.18 c view-filter 23.19 c view-sidetree 23.20 23.21 @@ -345,6 +345,7 @@ 23.22 c system-shutdown-panel-restart # LXPanel menu: logout 23.23 c gtk-close # Yad close button 23.24 c gtk-go-forward gtk-go-forward-ltr # tazbox tz Yad dialog 23.25 +c bookmark-new # Midori 23.26 23.27 23.28 ############################ 23.29 @@ -673,6 +674,7 @@ 23.30 c text-x-readme 23.31 c text-x-tazpkg-receipt text-x-script 23.32 23.33 +c application-x-shockwave-flash # Midori 23.34 23.35 23.36 ########################
24.1 --- a/mc/stuff/mc-root.desktop Fri Nov 06 22:23:40 2015 +0100 24.2 +++ b/mc/stuff/mc-root.desktop Sat Nov 07 03:08:19 2015 +0200 24.3 @@ -2,6 +2,6 @@ 24.4 Type=Application 24.5 Name=Midnight Commander (root) 24.6 Exec=subox terminal -e mc -S modarcon16root -a 24.7 -Icon=computer 24.8 +Icon=terminal 24.9 Comment=To enable all syntax-hilight features: switch vte(sakura) to "tango" palette, or use xterm-256color 24.10 Categories=FileTools;Development;
25.1 --- a/mc/stuff/mc.desktop Fri Nov 06 22:23:40 2015 +0100 25.2 +++ b/mc/stuff/mc.desktop Sat Nov 07 03:08:19 2015 +0200 25.3 @@ -2,5 +2,5 @@ 25.4 Type=Application 25.5 Name=Midnight Commander 25.6 Exec=terminal -e /usr/bin/mc 25.7 -Icon=computer 25.8 +Icon=terminal 25.9 Categories=ConsoleOnly;Utility;FileTools;
26.1 --- a/nanochess/receipt Fri Nov 06 22:23:40 2015 +0100 26.2 +++ b/nanochess/receipt Sat Nov 07 03:08:19 2015 +0200 26.3 @@ -42,18 +42,5 @@ 26.4 mkdir -p $fs/var/www/chess $fs/usr/share/applications 26.5 cp $src/* $fs/var/www/chess 26.6 chown -R 80.80 $fs/var/www/chess 26.7 - cat > $fs/usr/share/applications/chess.desktop <<EOT 26.8 -[Desktop Entry] 26.9 -Type=Application 26.10 -Name=Chess 26.11 -Name[fr]=Echecs 26.12 -Name[zh_CN]=国际象棋 26.13 -Exec=sh -c "url=file:///var/www/chess/index.html ; tazweb --notoolbar \$url || browser \$url" 26.14 -Icon=gnome-glchess 26.15 -Terminal=false 26.16 -Categories=Game; 26.17 -Comment=Chess game 26.18 -Comment[fr]=Jeu d'échecs 26.19 -EOT 26.20 } 26.21
27.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 27.2 +++ b/nanochess/stuff/nanochess.desktop Sat Nov 07 03:08:19 2015 +0200 27.3 @@ -0,0 +1,11 @@ 27.4 +[Desktop Entry] 27.5 +Type=Application 27.6 +Name=NanoChess 27.7 +Name[fr]=Echecs 27.8 +Name[zh_CN]=国际象棋 27.9 +Comment=Chess game 27.10 +Comment[fr]=Jeu d'échecs 27.11 +Exec=sh -c "url=file:///var/www/chess/index.html ; tazweb --notoolbar \$url || browser \$url" 27.12 +Icon=gnome-glchess 27.13 +Terminal=false 27.14 +Categories=Game;BoardGame;
28.1 --- a/obconf/stuff/obconf.desktop Fri Nov 06 22:23:40 2015 +0100 28.2 +++ b/obconf/stuff/obconf.desktop Sat Nov 07 03:08:19 2015 +0200 28.3 @@ -11,6 +11,6 @@ 28.4 Comment[zh_TW]=管理 Openbox 組態設定 28.5 StartupNotify=true 28.6 Exec=obconf %f 28.7 -Icon=obconf 28.8 +Icon=preferences-system-windows 28.9 Categories=GTK;Settings;DesktopSettings; 28.10 MimeType=application/x-openbox-theme;
29.1 --- a/pcmanfm/receipt Fri Nov 06 22:23:40 2015 +0100 29.2 +++ b/pcmanfm/receipt Sat Nov 07 03:08:19 2015 +0200 29.3 @@ -27,6 +27,7 @@ 29.4 # Rules to configure and make the package. 29.5 compile_rules() 29.6 { 29.7 + patch -p1 -i $stuff/pcmanfm-network-icon.patch 29.8 ./autogen.sh 29.9 ./configure $CONFIGURE_ARGS && 29.10 make && make install 29.11 @@ -43,9 +44,6 @@ 29.12 # XDG autostart desktop file (lxsession will use it automatically) 29.13 cp -a $stuff/autostart $fs/etc/xdg 29.14 29.15 - # Change icon in pcmanfm.desktop 29.16 - sed -i 's/Icon=.*/Icon=folder/' \ 29.17 - $install/usr/share/applications/pcmanfm.desktop 29.18 cp -a $install/usr/share/applications $fs/usr/share 29.19 29.20 # Add custom actions
30.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 30.2 +++ b/pcmanfm/stuff/pcmanfm-network-icon.patch Sat Nov 07 03:08:19 2015 +0200 30.3 @@ -0,0 +1,11 @@ 30.4 +--- a/src/main-win-ui.c 30.5 ++++ b/src/main-win-ui.c 30.6 +@@ -239,7 +239,7 @@ 30.7 + {"Root", "drive-harddisk", N_("Filesyste_m Root"), NULL, N_("Go fo filesystem root"), NULL}, 30.8 + {"Apps", "system-software-install", N_("_Applications"), NULL, N_("Go to root of applications menu folder"), G_CALLBACK(on_go_apps)}, 30.9 + {"Computer", "computer", N_("Dev_ices"), NULL, N_("Go to list of devices connected to the computer"), G_CALLBACK(on_go_computer)}, 30.10 +- {"Network", GTK_STOCK_NETWORK, N_("Net_work"), NULL, N_("Go to list of places on the network"), G_CALLBACK(on_go_network)}, 30.11 ++ {"Network", "network-workgroup", N_("Net_work"), NULL, N_("Go to list of places on the network"), G_CALLBACK(on_go_network)}, 30.12 + {"Location", GTK_STOCK_JUMP_TO, N_("_Go to Location..."), "<Ctrl>L", NULL, G_CALLBACK(on_location)}, 30.13 + {"Connect", NULL, N_("_Connect to Server..."), NULL, N_("Open a window to choose remote folder location"), G_CALLBACK(on_go_connect)}, 30.14 + {"Go", GTK_STOCK_JUMP_TO, NULL, NULL, N_("Go to the path in the location bar"), G_CALLBACK(on_go)},
31.1 --- a/slitaz-boot-scripts/receipt Fri Nov 06 22:23:40 2015 +0100 31.2 +++ b/slitaz-boot-scripts/receipt Sat Nov 07 03:08:19 2015 +0200 31.3 @@ -1,7 +1,7 @@ 31.4 # SliTaz package receipt. 31.5 31.6 PACKAGE="slitaz-boot-scripts" 31.7 -VERSION="414" 31.8 +VERSION="415" 31.9 CATEGORY="base-system" 31.10 SHORT_DESC="Provide all the initialisation scripts used at boot time." 31.11 MAINTAINER="pankso@slitaz.org" 31.12 @@ -54,9 +54,11 @@ 31.13 post_install() 31.14 { 31.15 case "$SLITAZ_ARCH" in 31.16 - i?86) chroot $1/ /usr/bin/rcSconf up ;; 31.17 - arm) if [ ! -d "/var/lib/tazpkg/installed/slitaz-arm-configs" ]; then 31.18 - spk-add slitaz-arm-configs 31.19 - fi ;; 31.20 + i?86) 31.21 + chroot $1/ /usr/bin/rcSconf up ;; 31.22 + arm) 31.23 + if [ ! -d "/var/lib/tazpkg/installed/slitaz-arm-configs" ]; then 31.24 + spk-add slitaz-arm-configs 31.25 + fi ;; 31.26 esac 31.27 }
32.1 --- a/slitaz-icons-faenza-dark/receipt Fri Nov 06 22:23:40 2015 +0100 32.2 +++ b/slitaz-icons-faenza-dark/receipt Sat Nov 07 03:08:19 2015 +0200 32.3 @@ -32,6 +32,7 @@ 32.4 fi 32.5 done 32.6 32.7 - for d in 16x16/status 48x48; do rm -r $f/$d; done 32.8 + cp -f $f/16x16/apps/system-log-out.png $f/16x16/actions 32.9 + for d in 16x16/status 16x16/apps 48x48; do rm -r $f/$d; done 32.10 cp -f $stuff/index.theme $f 32.11 }
33.1 --- a/slitaz-icons-faenza-dark/stuff/index.theme Fri Nov 06 22:23:40 2015 +0100 33.2 +++ b/slitaz-icons-faenza-dark/stuff/index.theme Sat Nov 07 03:08:19 2015 +0200 33.3 @@ -1,18 +1,13 @@ 33.4 [Icon Theme] 33.5 Name=SliTaz-Faenza-Dark 33.6 Inherits=SliTaz-Faenza 33.7 -Directories=16x16/actions,16x16/apps,22x22/status 33.8 +Directories=16x16/actions,22x22/status 33.9 33.10 [16x16/actions] 33.11 Size=16 33.12 Context=Actions 33.13 Type=Threshold 33.14 33.15 -[16x16/apps] 33.16 -Size=16 33.17 -Context=Applications 33.18 -Type=Threshold 33.19 - 33.20 [22x22/status] 33.21 Size=22 33.22 Context=Status
34.1 --- a/slitaz-icons-faenza/receipt Fri Nov 06 22:23:40 2015 +0100 34.2 +++ b/slitaz-icons-faenza/receipt Sat Nov 07 03:08:19 2015 +0200 34.3 @@ -24,4 +24,6 @@ 34.4 { 34.5 cp -f $stuff/start-here-slitaz-48.png \ 34.6 $fs/usr/share/icons/SliTaz-Faenza/48x48/places/start-here.png 34.7 + cp $stuff/view-filter.png $stuff/view-sidetree.png \ 34.8 + $fs/usr/share/icons/SliTaz-Faenza/16x16/actions 34.9 }
35.1 Binary file slitaz-icons-faenza/stuff/view-filter.png has changed
36.1 Binary file slitaz-icons-faenza/stuff/view-sidetree.png has changed
37.1 --- a/slitaz-tools-boxes/receipt Fri Nov 06 22:23:40 2015 +0100 37.2 +++ b/slitaz-tools-boxes/receipt Sat Nov 07 03:08:19 2015 +0200 37.3 @@ -1,7 +1,7 @@ 37.4 # SliTaz package receipt. 37.5 37.6 PACKAGE="slitaz-tools-boxes" 37.7 -VERSION="950" 37.8 +VERSION="951" 37.9 CATEGORY="system-tools" 37.10 SHORT_DESC="All SliTaz GTK/Yad boxes to command line tools." 37.11 MAINTAINER="pankso@slitaz.org"
38.1 --- a/slitaz-tools/receipt Fri Nov 06 22:23:40 2015 +0100 38.2 +++ b/slitaz-tools/receipt Sat Nov 07 03:08:19 2015 +0200 38.3 @@ -1,7 +1,7 @@ 38.4 # SliTaz package receipt. 38.5 38.6 PACKAGE="slitaz-tools" 38.7 -VERSION="950" 38.8 +VERSION="951" 38.9 CATEGORY="system-tools" 38.10 SHORT_DESC="SliTaz tools provide installer and utils usable on terminal." 38.11 MAINTAINER="pankso@slitaz.org"
39.1 --- a/tazbug/receipt Fri Nov 06 22:23:40 2015 +0100 39.2 +++ b/tazbug/receipt Sat Nov 07 03:08:19 2015 +0200 39.3 @@ -1,9 +1,9 @@ 39.4 # SliTaz package receipt. 39.5 39.6 PACKAGE="tazbug" 39.7 -VERSION="1.2.1" 39.8 +VERSION="88" 39.9 CATEGORY="network" 39.10 -SHORT_DESC="SliTaz Bug Tracker Client side tools." 39.11 +SHORT_DESC="SliTaz Bug Tracker - Client side tools" 39.12 MAINTAINER="pankso@slitaz.org" 39.13 TARBALL="$PACKAGE-$VERSION.tar.gz" 39.14 LICENSE="BSD" 39.15 @@ -17,7 +17,6 @@ 39.16 # Rules to configure and make the package. 39.17 compile_rules() 39.18 { 39.19 - cd $src 39.20 make && make DESTDIR=$DESTDIR install 39.21 } 39.22
40.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 40.2 +++ b/tazbug/stuff/tazbug.desktop Sat Nov 07 03:08:19 2015 +0200 40.3 @@ -0,0 +1,10 @@ 40.4 +[Desktop Entry] 40.5 +Type=Application 40.6 +Name=SliTaz bug report 40.7 +Name[fr]=Rapport de bug SliTaz 40.8 +Name[pt]=Aviso de Bugs do SliTaz 40.9 +Name[pt_BR]=Aviso de Bugs do SliTaz 40.10 +Name[ru]=Баг-репорт SliTaz 40.11 +Exec=tazbug-box 40.12 +Icon=tazbug 40.13 +Categories=Development;ProjectManagement;
41.1 --- a/tazpanel/receipt Fri Nov 06 22:23:40 2015 +0100 41.2 +++ b/tazpanel/receipt Sat Nov 07 03:08:19 2015 +0200 41.3 @@ -1,7 +1,7 @@ 41.4 # SliTaz package receipt. 41.5 41.6 PACKAGE="tazpanel" 41.7 -VERSION="529" 41.8 +VERSION="543" 41.9 CATEGORY="system-tools" 41.10 SHORT_DESC="SliTaz administration and configuration panel." 41.11 MAINTAINER="pankso@slitaz.org"
42.1 --- a/tazpkg-test/receipt Fri Nov 06 22:23:40 2015 +0100 42.2 +++ b/tazpkg-test/receipt Sat Nov 07 03:08:19 2015 +0200 42.3 @@ -1,7 +1,7 @@ 42.4 # SliTaz package receipt. 42.5 42.6 PACKAGE="tazpkg-test" 42.7 -VERSION="852" 42.8 +VERSION="853" 42.9 CATEGORY="base-system" 42.10 SHORT_DESC="SliTaz packages manager" 42.11 MAINTAINER="al.bobylev@gmail.com"
43.1 --- a/tazusb/receipt Fri Nov 06 22:23:40 2015 +0100 43.2 +++ b/tazusb/receipt Sat Nov 07 03:08:19 2015 +0200 43.3 @@ -1,7 +1,7 @@ 43.4 # SliTaz package receipt. 43.5 43.6 PACKAGE="tazusb" 43.7 -VERSION="181" 43.8 +VERSION="182" 43.9 CATEGORY="base-system" 43.10 SHORT_DESC="SliTaz LiveUSB utility" 43.11 MAINTAINER="erjo@slitaz.org"
44.1 --- a/tazwikiss/receipt Fri Nov 06 22:23:40 2015 +0100 44.2 +++ b/tazwikiss/receipt Sat Nov 07 03:08:19 2015 +0200 44.3 @@ -1,7 +1,7 @@ 44.4 # SliTaz package receipt. 44.5 44.6 PACKAGE="tazwikiss" 44.7 -VERSION="248" 44.8 +VERSION="250" 44.9 CATEGORY="office" 44.10 SHORT_DESC="Tiny SliTaz Wiki" 44.11 MAINTAINER="pascal.bellard@slitaz.org"