# HG changeset patch # User Aleksej Bobylev # Date 1538445224 -10800 # Node ID fc8399b41cdab914587ca689e3fd307e1e12e94b # Parent a18af897de8eaceaf8e9eb6aaecb21dc5d3ac0cc Update cairo-dock-plugins, combine firefox-langpack-* and thunderbird-langpack-*, small fixes diff -r a18af897de8e -r fc8399b41cda cairo-dock-plugins/.icon.png --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/cairo-dock-plugins/.icon.png Tue Oct 02 04:53:44 2018 +0300 @@ -0,0 +1,1 @@ +../cairo-dock/.icon.png \ No newline at end of file diff -r a18af897de8e -r fc8399b41cda cairo-dock-plugins/receipt --- a/cairo-dock-plugins/receipt Mon Oct 01 01:18:37 2018 +0300 +++ b/cairo-dock-plugins/receipt Tue Oct 02 04:53:44 2018 +0300 @@ -1,32 +1,61 @@ -# SliTaz package receipt. +# SliTaz package receipt v2. PACKAGE="cairo-dock-plugins" -VERSION="3.3.2" +VERSION="3.4.1" CATEGORY="x-window" -SHORT_DESC="Set of plugins for Cairo-Dock" -MAINTAINER="pankso@slitaz.org" +SHORT_DESC="Plugins for Cairo-Dock" +MAINTAINER="al.bobylev@gmail.com" LICENSE="GPL3" WEB_SITE="http://www.glx-dock.org/" -TARBALL="$PACKAGE-$VERSION.tar.gz" -WGET_URL="https://github.com/Cairo-Dock/cairo-dock-plug-ins/archive/$VERSION.tar" +TARBALL="cairo-dock-plug-ins-$VERSION.tar.gz" +WGET_URL="https://github.com/Cairo-Dock/cairo-dock-plug-ins/releases/download/$VERSION/$TARBALL" -BUILD_DEPENDS="wget dbus-glib-dev cairo-dock-dev cmake alsa-lib \ -gtk+-dev cairo-dev librsvg-dev dbus-dev libxml2-dev gtkglext-dev mesa-dev \ -xorg-libXtst-dev xorg-libXcomposite-dev alsa-lib-dev libical-dev glu-dev \ -libdbusmenu-gtk2-dev libindicator-gtk2-dev gnome-menus-dev" +BUILD_DEPENDS="cmake cairo-dock-dev gettext libdbusmenu-gtk3-dev \ +libindicator-gtk3-dev upower-dev alsa-lib-dev libical-dev python3 ruby \ +ruby-stdlib mono vala pulseaudio-dev fftw-dev libxklavier-dev libetpan-dev \ +libzeitgeist-dev libexif-dev lm-sensors-dev vte-dev " +SPLIT="$PACKAGE-python $PACKAGE-python3 $PACKAGE-ruby $PACKAGE $PACKAGE-dev" compile_rules() { + sed -i 's|gmcs|mcs|' CMakeLists.txt + mkdir build cd build cmake \ -DCMAKE_INSTALL_PREFIX=/usr \ .. && make && - make DESTDIR=$DESTDIR install + make install } genpkg_rules() { - copy @std - DEPENDS="dbus-glib cairo-dock" + case $PACKAGE in + *-python) + copy python2*/ + CAT="python|Python2 bindings" + DEPENDS="cairo-dock-plugins python" + ;; + *-python3) + copy python3*/ + CAT="python|Python3 bindings" + DEPENDS="cairo-dock-plugins python3" + ;; + *-ruby) + copy ruby/ + CAT="ruby|Ruby bindings" + DEPENDS="cairo-dock-plugins ruby" + ;; + *-dev) + copy @dev + DEPENDS="cairo-dock-plugins glib-dev" + ;; + *) + copy @std @rm + DEPENDS="alsa-lib cairo dbus-glib fftw gdk-pixbuf glib gtk+3 \ + libdbusmenu-gtk3 libetpan libexif libical libindicator-gtk3 \ + librsvg libxklavier libxml2 libzeitgeist lm-sensors mesa pango \ + pulseaudio upower vte xorg-libX11 xorg-libXrandr xorg-libXxf86vm" + ;; + esac } diff -r a18af897de8e -r fc8399b41cda cairo-dock-plugins/stuff/patches/cairo-dock-plug-ins-mono.patch --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/cairo-dock-plugins/stuff/patches/cairo-dock-plug-ins-mono.patch Tue Oct 02 04:53:44 2018 +0300 @@ -0,0 +1,106 @@ +diff -rupN cairo-dock-plug-ins-3.4.1.orig/CMakeLists.txt cairo-dock-plug-ins-3.4.1/CMakeLists.txt +--- cairo-dock-plug-ins-3.4.1.orig/CMakeLists.txt 2015-03-12 09:43:57.171067365 +0100 ++++ cairo-dock-plug-ins-3.4.1/CMakeLists.txt 2015-03-12 09:46:20.717120675 +0100 +@@ -573,11 +573,11 @@ if (enable-mono-interface) + if (NOT GMCS_EXECUTABLE OR NOT EXISTS ${GMCS_EXECUTABLE}) + message (STATUS "Could not find Mono compiler gmcs, won't build Mono interface.") + else() +- pkg_check_modules (MONO_PACKAGE glib-sharp-2.0 ndesk-dbus-1.0 ndesk-dbus-glib-1.0) ++ pkg_check_modules (MONO_PACKAGE dbus-sharp-2.0 dbus-sharp-glib-2.0 glib-sharp-3.0) + if (NOT MONO_PACKAGE_FOUND) +- message (STATUS "Could not find glib-sharp-2.0, ndesk-dbus-1.0 or ndesk-dbus-glib-1.0; won't be built Mono interface.") +- message (WARNING "These modules are required to compile DBus applet with Mono interface: glib-sharp-2.0, ndesk-dbus-1.0 and ndesk-dbus-glib-1.0") +- set (MODULES_MISSING "${MODULES_MISSING} glib-sharp-2.0 ndesk-dbus-1.0 ndesk-dbus-glib-1.0") ++ message (STATUS "Could not find dbus-sharp-2.0, dbus-sharp-glib-2.0 or glib-sharp-3.0; won't be built Mono interface.") ++ message (WARNING "These modules are required to compile DBus applet with Mono interface: dbus-sharp-2.0, dbus-sharp-glib-2.0 and glib-sharp-3.0") ++ set (MODULES_MISSING "${MODULES_MISSING} dbus-sharp-2.0 dbus-sharp-glib-2.0 glib-sharp-3.0") + else() + set (MONO_FOUND TRUE) + set (with_mono yes) +diff -rupN cairo-dock-plug-ins-3.4.1.orig/Dbus/interfaces/mono/CDApplet.cs cairo-dock-plug-ins-3.4.1/Dbus/interfaces/mono/CDApplet.cs +--- cairo-dock-plug-ins-3.4.1.orig/Dbus/interfaces/mono/CDApplet.cs 2015-03-12 09:52:56.491934965 +0100 ++++ cairo-dock-plug-ins-3.4.1/Dbus/interfaces/mono/CDApplet.cs 2015-03-12 09:56:50.191652099 +0100 +@@ -21,7 +21,7 @@ + // Make your own class derive from a CDApplet, and override the functions you need (the ones which don't start with an underscore). + + // Compile it with the following command, then rename 'demo_mono.exe' to 'demo_mono'. +-// gmcs /target:library CDApplet.cs ISubApplet.cs IApplet.cs -pkg:glib-sharp-2.0 -pkg:ndesk-dbus-1.0 -pkg:ndesk-dbus-glib-1.0 ++// gmcs /target:library CDApplet.cs ISubApplet.cs IApplet.cs -pkg:dbus-sharp-2.0 -pkg:dbus-sharp-glib-2.0 -pkg:glib-sharp-3.0 + ////////////////////////// + ////// dependancies ////// + ////////////////////////// +@@ -29,7 +29,7 @@ using System; // Environment + using System.IO; // Path, Directory + using System.Reflection; + using GLib; +-using NDesk.DBus; ++using DBus; + using CairoDock.Applet; + + //namespace CairoDock.Applet +@@ -258,8 +258,8 @@ public class CDApplet + + private void _connect_to_dock () + { +- NDesk.DBus.BusG.Init(); +- NDesk.DBus.Bus bus = NDesk.DBus.Bus.Session; ++ DBus.BusG.Init(); ++ DBus.Bus bus = DBus.Bus.Session; + this.icon = bus.GetObject ("org.cairodock.CairoDock", new ObjectPath (this.cBusPath)); + this.icon.on_click += new OnClickEvent (on_click); + this.icon.on_middle_click += new OnMiddleClickEvent (on_middle_click); +diff -rupN cairo-dock-plug-ins-3.4.1.orig/Dbus/interfaces/mono/CMakeLists.txt cairo-dock-plug-ins-3.4.1/Dbus/interfaces/mono/CMakeLists.txt +--- cairo-dock-plug-ins-3.4.1.orig/Dbus/interfaces/mono/CMakeLists.txt 2015-03-12 09:52:56.491934965 +0100 ++++ cairo-dock-plug-ins-3.4.1/Dbus/interfaces/mono/CMakeLists.txt 2015-03-12 09:54:07.418777441 +0100 +@@ -3,7 +3,7 @@ + + execute_process(COMMAND ${GMCS_EXECUTABLE} + -target:library +- -pkg:glib-sharp-2.0 -pkg:ndesk-dbus-1.0 -pkg:ndesk-dbus-glib-1.0 ++ -pkg:dbus-sharp-2.0 -pkg:dbus-sharp-glib-2.0 -pkg:glib-sharp-3.0 + -out:${CMAKE_CURRENT_BINARY_DIR}/CDApplet.dll + ${CMAKE_CURRENT_SOURCE_DIR}/CDApplet.cs ${CMAKE_CURRENT_SOURCE_DIR}/ISubApplet.cs ${CMAKE_CURRENT_SOURCE_DIR}/IApplet.cs) + ### find how to register to GAC ... +diff -rupN cairo-dock-plug-ins-3.4.1.orig/Dbus/demos/demo_mono/demo_mono.cs cairo-dock-plug-ins-3.4.1/Dbus/demos/demo_mono/demo_mono.cs +--- cairo-dock-plug-ins-3.4.1.orig/Dbus/demos/demo_mono/demo_mono.cs 2015-03-12 09:59:41.064312097 +0100 ++++ cairo-dock-plug-ins-3.4.1/Dbus/demos/demo_mono/demo_mono.cs 2015-03-12 10:02:39.473424651 +0100 +@@ -138,7 +138,7 @@ public class Applet : CDApplet + public override void on_build_menu () + { + Console.WriteLine("*** build menu"); +- /// Warning : teh AddMenuItems fails with NDesk-DBus 0.6.0; until this is fixed, use the PopulateMenu method. ++ /// Warning : the AddMenuItems fails with DBus Sharp 0.6.0; until this is fixed, use the PopulateMenu method. + /**Dictionary[] pItems = new Dictionary[] { + new Dictionary() + { +diff -rupN cairo-dock-plug-ins-3.4.1.orig/Dbus/interfaces/mono/IApplet.cs cairo-dock-plug-ins-3.4.1/Dbus/interfaces/mono/IApplet.cs +--- cairo-dock-plug-ins-3.4.1.orig/Dbus/interfaces/mono/IApplet.cs 2015-03-12 09:59:41.067645289 +0100 ++++ cairo-dock-plug-ins-3.4.1/Dbus/interfaces/mono/IApplet.cs 2015-03-12 10:00:35.395334804 +0100 +@@ -1,6 +1,6 @@ + using System; + using System.Collections.Generic; // Dictionnary +-using NDesk.DBus; ++using DBus; + + namespace CairoDock.Applet + { +@@ -27,7 +27,7 @@ namespace CairoDock.Applet + Left + } + +- [NDesk.DBus.Interface("org.cairodock.CairoDock.applet")] ++ [DBus.Interface("org.cairodock.CairoDock.applet")] + public interface IApplet + { + object Get(string cProperty); +diff -rupN cairo-dock-plug-ins-3.4.1.orig/Dbus/interfaces/mono/ISubApplet.cs cairo-dock-plug-ins-3.4.1/Dbus/interfaces/mono/ISubApplet.cs +--- cairo-dock-plug-ins-3.4.1.orig/Dbus/interfaces/mono/ISubApplet.cs 2015-03-12 09:59:41.067645289 +0100 ++++ cairo-dock-plug-ins-3.4.1/Dbus/interfaces/mono/ISubApplet.cs 2015-03-12 10:00:16.522802989 +0100 +@@ -1,6 +1,6 @@ + using System; + using System.Collections.Generic; // Dictionnary +-using NDesk.DBus; ++using DBus; + + namespace CairoDock.Applet + { diff -r a18af897de8e -r fc8399b41cda cairo-dock-plugins/stuff/patches/cairo-dock-plugins-3.4.1-time_h-confict.patch --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/cairo-dock-plugins/stuff/patches/cairo-dock-plugins-3.4.1-time_h-confict.patch Tue Oct 02 04:53:44 2018 +0300 @@ -0,0 +1,137 @@ +--- cairo-dock-plugins-3.4.1/Sound-Effects/src/applet-config.c.glibc 2016-12-11 16:10:41.656840262 +0900 ++++ cairo-dock-plugins-3.4.1/Sound-Effects/src/applet-config.c 2016-12-11 16:23:31.875117800 +0900 +@@ -17,6 +17,7 @@ + * along with this program. If not, see . + */ + ++#include "applet-time_h-struct.h" + #include + + #include "applet-struct.h" +--- cairo-dock-plugins-3.4.1/Sound-Effects/src/applet-init.c.glibc 2016-12-11 16:10:41.657840257 +0900 ++++ cairo-dock-plugins-3.4.1/Sound-Effects/src/applet-init.c 2016-12-11 16:22:24.465443591 +0900 +@@ -17,6 +17,7 @@ + * along with this program. If not, see . + */ + ++#include "applet-time_h-struct.h" + #include "stdlib.h" + + #include "applet-struct.h" +--- cairo-dock-plugins-3.4.1/Sound-Effects/src/applet-notifications.c.glibc 2015-02-20 01:13:47.000000000 +0900 ++++ cairo-dock-plugins-3.4.1/Sound-Effects/src/applet-notifications.c 2016-12-11 16:24:08.991938415 +0900 +@@ -17,6 +17,7 @@ + * along with this program. If not, see . + */ + ++#include "applet-time_h-struct.h" + #include + #include + +@@ -66,4 +67,4 @@ + + + return GLDI_NOTIFICATION_LET_PASS; +-} +\ ファイル末尾に改行がありません ++} +--- cairo-dock-plugins-3.4.1/Sound-Effects/src/applet-sound.c.glibc 2015-02-20 01:13:47.000000000 +0900 ++++ cairo-dock-plugins-3.4.1/Sound-Effects/src/applet-sound.c 2016-12-11 16:23:55.137005376 +0900 +@@ -19,6 +19,7 @@ + * along with this program. If not, see . + */ + ++#include "applet-time_h-struct.h" + #include + #ifndef __FreeBSD__ + #include +--- cairo-dock-plugins-3.4.1/Sound-Effects/src/applet-struct.h.glibc 2016-12-11 16:10:41.657840257 +0900 ++++ cairo-dock-plugins-3.4.1/Sound-Effects/src/applet-struct.h 2016-12-11 16:22:59.589273837 +0900 +@@ -21,6 +21,7 @@ + #ifndef __CD_APPLET_STRUCT__ + #define __CD_APPLET_STRUCT__ + ++#include "applet-time_h-struct.h" + #include + #include + #define _STRUCT_TIMEVAL +--- cairo-dock-plugins-3.4.1/Sound-Effects/src/applet-time_h-struct.h.glibc 2016-12-11 16:11:55.464483550 +0900 ++++ cairo-dock-plugins-3.4.1/Sound-Effects/src/applet-time_h-struct.h 2016-12-11 16:19:52.003180440 +0900 +@@ -0,0 +1,27 @@ ++/** ++* This file is a part of the Cairo-Dock project ++* ++* Copyright : (C) see the 'copyright' file. ++* E-mail : see the 'copyright' file. ++* ++* This program is free software; you can redistribute it and/or ++* modify it under the terms of the GNU General Public License ++* as published by the Free Software Foundation; either version 3 ++* of the License, or (at your option) any later version. ++* ++* This program is distributed in the hope that it will be useful, ++* but WITHOUT ANY WARRANTY; without even the implied warranty of ++* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ++* GNU General Public License for more details. ++* You should have received a copy of the GNU General Public License ++* along with this program. If not, see . ++*/ ++ ++#ifndef __CD_APPLET_TIME_H_STRUCT__ ++#define __CD_APPLET_TIME_H_STRUCT__ ++ ++#define _POSIX_C_SOURCE 200809L ++#include ++ ++#endif ++ +--- cairo-dock-plugins-3.4.1/alsaMixer/src/applet-generic.c.glibc 2015-02-20 01:13:47.000000000 +0900 ++++ cairo-dock-plugins-3.4.1/alsaMixer/src/applet-generic.c 2016-12-11 16:20:44.168928323 +0900 +@@ -20,6 +20,7 @@ + * along with this program. If not, see . + */ + ++#include "applet-time_h-struct.h" + #include + + #include "applet-struct.h" +--- cairo-dock-plugins-3.4.1/alsaMixer/src/applet-struct.h.glibc 2015-02-20 01:13:47.000000000 +0900 ++++ cairo-dock-plugins-3.4.1/alsaMixer/src/applet-struct.h 2016-12-11 16:19:47.713201174 +0900 +@@ -20,6 +20,7 @@ + #ifndef __CD_APPLET_STRUCT__ + #define __CD_APPLET_STRUCT__ + ++#include "applet-time_h-struct.h" + #include + #include + #define _STRUCT_TIMEVAL +--- cairo-dock-plugins-3.4.1/alsaMixer/src/applet-time_h-struct.h.glibc 2016-12-11 16:11:55.464483550 +0900 ++++ cairo-dock-plugins-3.4.1/alsaMixer/src/applet-time_h-struct.h 2016-12-11 16:19:52.003180440 +0900 +@@ -0,0 +1,27 @@ ++/** ++* This file is a part of the Cairo-Dock project ++* ++* Copyright : (C) see the 'copyright' file. ++* E-mail : see the 'copyright' file. ++* ++* This program is free software; you can redistribute it and/or ++* modify it under the terms of the GNU General Public License ++* as published by the Free Software Foundation; either version 3 ++* of the License, or (at your option) any later version. ++* ++* This program is distributed in the hope that it will be useful, ++* but WITHOUT ANY WARRANTY; without even the implied warranty of ++* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ++* GNU General Public License for more details. ++* You should have received a copy of the GNU General Public License ++* along with this program. If not, see . ++*/ ++ ++#ifndef __CD_APPLET_TIME_H_STRUCT__ ++#define __CD_APPLET_TIME_H_STRUCT__ ++ ++#define _POSIX_C_SOURCE 200809L ++#include ++ ++#endif ++ diff -r a18af897de8e -r fc8399b41cda cairo-dock-plugins/stuff/patches/series --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/cairo-dock-plugins/stuff/patches/series Tue Oct 02 04:53:44 2018 +0300 @@ -0,0 +1,4 @@ +# from Arch Linux +# https://www.archlinux.org/packages/community/x86_64/cairo-dock-plug-ins/ +cairo-dock-plug-ins-mono.patch +cairo-dock-plugins-3.4.1-time_h-confict.patch diff -r a18af897de8e -r fc8399b41cda cairo-dock/receipt --- a/cairo-dock/receipt Mon Oct 01 01:18:37 2018 +0300 +++ b/cairo-dock/receipt Tue Oct 02 04:53:44 2018 +0300 @@ -1,21 +1,20 @@ # SliTaz package receipt v2. PACKAGE="cairo-dock" -VERSION="3.3.2" +VERSION="3.4.1" CATEGORY="x-window" -SHORT_DESC="Cairo-Dock is a light and eye-candy dock to launch" -MAINTAINER="pankso@slitaz.org" +SHORT_DESC="Light and eye-candy dock to launch" +MAINTAINER="al.bobylev@gmail.com" LICENSE="GPL3" WEB_SITE="http://www.glx-dock.org/" TARBALL="$PACKAGE-$VERSION.tar.gz" -WGET_URL="https://github.com/Cairo-Dock/cairo-dock-core/archive/$VERSION.tar.gz" +WGET_URL="https://github.com/Cairo-Dock/cairo-dock-core/releases/download/$VERSION/$TARBALL" -BUILD_DEPENDS="gtk+ cairo librsvg xorg-xcompmgr mesa gtkglext dbus libcurl \ -cmake gtk+-dev cairo-dev librsvg-dev mesa-dev \ -gtkglext-dev dbus-dev dbus-glib-dev curl-dev libcroco wget libxml2-dev \ -xorg-libXtst-dev xorg-libXcomposite-dev glu-dev gettext-tools" -SPLIT="cairo-dock cairo-dock-dev" +BUILD_DEPENDS="cmake glib-dev cairo-dev librsvg-dev dbus-dev dbus-glib-dev \ +libxml2-dev mesa-dev glu-dev curl-dev xorg-libXtst-dev xorg-libXcomposite-dev \ +xorg-libXrandr-dev gtk+3-dev gettext" +SPLIT="$PACKAGE-dev" compile_rules() { mkdir build @@ -24,22 +23,27 @@ -DCMAKE_INSTALL_PREFIX=/usr \ .. && make && - make DESTDIR=$DESTDIR install + make install || return 1 + + chmod a+x $install/usr/lib/libgldi.so.$VERSION } genpkg_rules() { case $PACKAGE in cairo-dock) copy @std - DEPENDS="cairo dbus-glib gdk-pixbuf glib glu gtk+ libcurl librsvg \ - libxml2 mesa pango" # xorg-xcompmgr gtkglext dbus + DEPENDS="cairo dbus-glib gdk-pixbuf glib glu gtk+3 libcurl librsvg \ + libxml2 mesa pango xorg-libX11 xorg-libXcomposite xorg-libXinerama \ + xorg-libXrandr xorg-libXrender xorg-libXtst bash" # xorg-xcompmgr SUGGESTED="cairo-dock-plugins" ;; *-dev) copy @dev DEPENDS="cairo-dock \ cairo-dev curl-dev dbus-dev dbus-glib-dev glib-dev glu-dev \ - gtk+-dev librsvg-dev libxml2-dev mesa-dev xorg-libX11-dev" + gtk+3-dev librsvg-dev libxml2-dev mesa-dev wayland-dev \ + xorg-libX11-dev xorg-libXcomposite-dev xorg-libXrandr-dev \ + xorg-libXrender-dev xorg-libXtst-dev" ;; esac } diff -r a18af897de8e -r fc8399b41cda cairo-dock/stuff/cairo-dock.png Binary file cairo-dock/stuff/cairo-dock.png has changed diff -r a18af897de8e -r fc8399b41cda firefox-langpack-da/receipt --- a/firefox-langpack-da/receipt Mon Oct 01 01:18:37 2018 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,23 +0,0 @@ -# SliTaz package receipt. - -PACKAGE="firefox-langpack-da" -VERSION="17.0.11esr" -CATEGORY="localization" -SHORT_DESC="Danish Language Package for firefox" -MAINTAINER="lufeng369@slitaz.org" -LICENSE="MPL2" -WEB_SITE="http://www.mozilla.com" -LANG=$(echo $PACKAGE | cut -d'-' -f3 | tr '_' '-') -LANG_DIR="langpack-$LANG@firefox.mozilla.org" -TARBALL="$PACKAGE-$VERSION.zip" -WGET_URL="ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/$VERSION/linux-i686/xpi/$LANG.xpi" - -DEPENDS="firefox" - -# Rules to gen a SliTaz package suitable for Tazpkg. -genpkg_rules() -{ - EXTDIR="$fs/usr/lib/firefox-$VERSION/extensions/$LANG_DIR" - mkdir -p $EXTDIR - cp -a $src/* $EXTDIR -} diff -r a18af897de8e -r fc8399b41cda firefox-langpack-de/receipt --- a/firefox-langpack-de/receipt Mon Oct 01 01:18:37 2018 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,23 +0,0 @@ -# SliTaz package receipt. - -PACKAGE="firefox-langpack-de" -VERSION="17.0.11esr" -CATEGORY="localization" -SHORT_DESC="German Language Package for firefox" -MAINTAINER="lufeng369@slitaz.org" -LICENSE="MPL2" -WEB_SITE="http://www.mozilla.com" -LANG=$(echo $PACKAGE | cut -d'-' -f3 | tr '_' '-') -LANG_DIR="langpack-$LANG@firefox.mozilla.org" -TARBALL="$PACKAGE-$VERSION.zip" -WGET_URL="ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/$VERSION/linux-i686/xpi/$LANG.xpi" - -DEPENDS="firefox" - -# Rules to gen a SliTaz package suitable for Tazpkg. -genpkg_rules() -{ - EXTDIR="$fs/usr/lib/firefox-$VERSION/extensions/$LANG_DIR" - mkdir -p $EXTDIR - cp -a $src/* $EXTDIR -} diff -r a18af897de8e -r fc8399b41cda firefox-langpack-en_GB/receipt --- a/firefox-langpack-en_GB/receipt Mon Oct 01 01:18:37 2018 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,23 +0,0 @@ -# SliTaz package receipt. - -PACKAGE="firefox-langpack-en_GB" -VERSION="17.0.11esr" -CATEGORY="localization" -SHORT_DESC="British English Language Package for firefox" -MAINTAINER="lufeng369@slitaz.org" -LICENSE="MPL2" -WEB_SITE="http://www.mozilla.com" -LANG=$(echo $PACKAGE | cut -d'-' -f3 | tr '_' '-') -LANG_DIR="langpack-$LANG@firefox.mozilla.org" -TARBALL="$PACKAGE-$VERSION.zip" -WGET_URL="ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/$VERSION/linux-i686/xpi/$LANG.xpi" - -DEPENDS="firefox" - -# Rules to gen a SliTaz package suitable for Tazpkg. -genpkg_rules() -{ - EXTDIR="$fs/usr/lib/firefox-$VERSION/extensions/$LANG_DIR" - mkdir -p $EXTDIR - cp -a $src/* $EXTDIR -} diff -r a18af897de8e -r fc8399b41cda firefox-langpack-es_ES/receipt --- a/firefox-langpack-es_ES/receipt Mon Oct 01 01:18:37 2018 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,23 +0,0 @@ -# SliTaz package receipt. - -PACKAGE="firefox-langpack-es_ES" -VERSION="17.0.11esr" -CATEGORY="localization" -SHORT_DESC="Spanish Language Package for firefox" -MAINTAINER="lufeng369@slitaz.org" -LICENSE="MPL2" -WEB_SITE="http://www.mozilla.com" -LANG=$(echo $PACKAGE | cut -d'-' -f3 | tr '_' '-') -LANG_DIR="langpack-$LANG@firefox.mozilla.org" -TARBALL="$PACKAGE-$VERSION.zip" -WGET_URL="ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/$VERSION/linux-i686/xpi/$LANG.xpi" - -DEPENDS="firefox" - -# Rules to gen a SliTaz package suitable for Tazpkg. -genpkg_rules() -{ - EXTDIR="$fs/usr/lib/firefox-$VERSION/extensions/$LANG_DIR" - mkdir -p $EXTDIR - cp -a $src/* $EXTDIR -} diff -r a18af897de8e -r fc8399b41cda firefox-langpack-fr/receipt --- a/firefox-langpack-fr/receipt Mon Oct 01 01:18:37 2018 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,23 +0,0 @@ -# SliTaz package receipt. - -PACKAGE="firefox-langpack-fr" -VERSION="17.0.11esr" -CATEGORY="localization" -SHORT_DESC="French Language Package for firefox" -MAINTAINER="lufeng369@slitaz.org" -LICENSE="MPL2" -WEB_SITE="http://www.mozilla.com" -LANG=$(echo $PACKAGE | cut -d'-' -f3 | tr '_' '-') -LANG_DIR="langpack-$LANG@firefox.mozilla.org" -TARBALL="$PACKAGE-$VERSION.zip" -WGET_URL="ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/$VERSION/linux-i686/xpi/$LANG.xpi" - -DEPENDS="firefox" - -# Rules to gen a SliTaz package suitable for Tazpkg. -genpkg_rules() -{ - EXTDIR="$fs/usr/lib/firefox-$VERSION/extensions/$LANG_DIR" - mkdir -p $EXTDIR - cp -a $src/* $EXTDIR -} diff -r a18af897de8e -r fc8399b41cda firefox-langpack-id/receipt --- a/firefox-langpack-id/receipt Mon Oct 01 01:18:37 2018 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,23 +0,0 @@ -# SliTaz package receipt. - -PACKAGE="firefox-langpack-id" -VERSION="17.0.11esr" -CATEGORY="localization" -SHORT_DESC="Indonesian Language Package for firefox" -MAINTAINER="lufeng369@slitaz.org" -LICENSE="MPL2" -WEB_SITE="http://www.mozilla.com" -LANG=$(echo $PACKAGE | cut -d'-' -f3 | tr '_' '-') -LANG_DIR="langpack-$LANG@firefox.mozilla.org" -TARBALL="$PACKAGE-$VERSION.zip" -WGET_URL="ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/$VERSION/linux-i686/xpi/$LANG.xpi" - -DEPENDS="firefox" - -# Rules to gen a SliTaz package suitable for Tazpkg. -genpkg_rules() -{ - EXTDIR="$fs/usr/lib/firefox-$VERSION/extensions/$LANG_DIR" - mkdir -p $EXTDIR - cp -a $src/* $EXTDIR -} diff -r a18af897de8e -r fc8399b41cda firefox-langpack-it/receipt --- a/firefox-langpack-it/receipt Mon Oct 01 01:18:37 2018 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,23 +0,0 @@ -# SliTaz package receipt. - -PACKAGE="firefox-langpack-it" -VERSION="17.0.11esr" -CATEGORY="localization" -SHORT_DESC="Italian Language Package for firefox" -MAINTAINER="monghitri@aruba.it" -LICENSE="MPL2" -WEB_SITE="http://www.mozilla.com" -LANG=$(echo $PACKAGE | cut -d'-' -f3 | tr '_' '-') -LANG_DIR="langpack-$LANG@firefox.mozilla.org" -TARBALL="$PACKAGE-$VERSION.zip" -WGET_URL="ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/$VERSION/linux-i686/xpi/$LANG.xpi" - -DEPENDS="firefox" - -# Rules to gen a SliTaz package suitable for Tazpkg. -genpkg_rules() -{ - EXTDIR="$fs/usr/lib/firefox-$VERSION/extensions/$LANG_DIR" - mkdir -p $EXTDIR - cp -a $src/* $EXTDIR -} diff -r a18af897de8e -r fc8399b41cda firefox-langpack-pt_BR/receipt --- a/firefox-langpack-pt_BR/receipt Mon Oct 01 01:18:37 2018 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,23 +0,0 @@ -# SliTaz package receipt. - -PACKAGE="firefox-langpack-pt_BR" -VERSION="17.0.11esr" -CATEGORY="localization" -SHORT_DESC="Brazilian Portuguese Language Package for firefox" -MAINTAINER="claudinei@slitaz.org" -LICENSE="MPL2" -WEB_SITE="http://www.mozilla.com" -LANG=$(echo $PACKAGE | cut -d'-' -f3 | tr '_' '-') -LANG_DIR="langpack-$LANG@firefox.mozilla.org" -TARBALL="$PACKAGE-$VERSION.zip" -WGET_URL="ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/$VERSION/linux-i686/xpi/$LANG.xpi" - -DEPENDS="firefox" - -# Rules to gen a SliTaz package suitable for Tazpkg. -genpkg_rules() -{ - EXTDIR="$fs/usr/lib/firefox-$VERSION/extensions/$LANG_DIR" - mkdir -p $EXTDIR - cp -a $src/* $EXTDIR -} diff -r a18af897de8e -r fc8399b41cda firefox-langpack-pt_PT/receipt --- a/firefox-langpack-pt_PT/receipt Mon Oct 01 01:18:37 2018 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,23 +0,0 @@ -# SliTaz package receipt. - -PACKAGE="firefox-langpack-pt_PT" -VERSION="17.0.11esr" -CATEGORY="localization" -SHORT_DESC="Portuguese Language Package for firefox" -MAINTAINER="lufeng369@slitaz.org" -LICENSE="MPL2" -WEB_SITE="http://www.mozilla.com" -LANG=$(echo $PACKAGE | cut -d'-' -f3 | tr '_' '-') -LANG_DIR="langpack-$LANG@firefox.mozilla.org" -TARBALL="$PACKAGE-$VERSION.zip" -WGET_URL="ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/$VERSION/linux-i686/xpi/$LANG.xpi" - -DEPENDS="firefox" - -# Rules to gen a SliTaz package suitable for Tazpkg. -genpkg_rules() -{ - EXTDIR="$fs/usr/lib/firefox-$VERSION/extensions/$LANG_DIR" - mkdir -p $EXTDIR - cp -a $src/* $EXTDIR -} diff -r a18af897de8e -r fc8399b41cda firefox-langpack-ru/receipt --- a/firefox-langpack-ru/receipt Mon Oct 01 01:18:37 2018 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,23 +0,0 @@ -# SliTaz package receipt. - -PACKAGE="firefox-langpack-ru" -VERSION="17.0.11esr" -CATEGORY="localization" -SHORT_DESC="Russian Language Package for firefox" -MAINTAINER="lufeng369@slitaz.org" -LICENSE="MPL2" -WEB_SITE="http://www.mozilla.com" -LANG=$(echo $PACKAGE | cut -d'-' -f3 | tr '_' '-') -LANG_DIR="langpack-$LANG@firefox.mozilla.org" -TARBALL="$PACKAGE-$VERSION.zip" -WGET_URL="ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/$VERSION/linux-i686/xpi/$LANG.xpi" - -DEPENDS="firefox" - -# Rules to gen a SliTaz package suitable for Tazpkg. -genpkg_rules() -{ - EXTDIR="$fs/usr/lib/firefox-$VERSION/extensions/$LANG_DIR" - mkdir -p $EXTDIR - cp -a $src/* $EXTDIR -} diff -r a18af897de8e -r fc8399b41cda firefox-langpack-zh_CN/receipt --- a/firefox-langpack-zh_CN/receipt Mon Oct 01 01:18:37 2018 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,23 +0,0 @@ -# SliTaz package receipt. - -PACKAGE="firefox-langpack-zh_CN" -VERSION="17.0.11esr" -CATEGORY="localization" -SHORT_DESC="Chinese Language Package for firefox" -MAINTAINER="lufeng369@slitaz.org" -LICENSE="MPL2" -WEB_SITE="http://www.mozilla.com" -LANG=$(echo $PACKAGE | cut -d'-' -f3 | tr '_' '-') -LANG_DIR="langpack-$LANG@firefox.mozilla.org" -TARBALL="$PACKAGE-$VERSION.zip" -WGET_URL="ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/$VERSION/linux-i686/xpi/$LANG.xpi" - -DEPENDS="firefox" - -# Rules to gen a SliTaz package suitable for Tazpkg. -genpkg_rules() -{ - EXTDIR="$fs/usr/lib/firefox-$VERSION/extensions/$LANG_DIR" - mkdir -p $EXTDIR - cp -a $src/* $EXTDIR -} diff -r a18af897de8e -r fc8399b41cda firefox-langpack-zh_TW/receipt --- a/firefox-langpack-zh_TW/receipt Mon Oct 01 01:18:37 2018 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,23 +0,0 @@ -# SliTaz package receipt. - -PACKAGE="firefox-langpack-zh_TW" -VERSION="17.0.11esr" -CATEGORY="localization" -SHORT_DESC="Chinese Language Package for firefox" -MAINTAINER="lufeng369@slitaz.org" -LICENSE="MPL2" -WEB_SITE="http://www.mozilla.com" -LANG=$(echo $PACKAGE | cut -d'-' -f3 | tr '_' '-') -LANG_DIR="langpack-$LANG@firefox.mozilla.org" -TARBALL="$PACKAGE-$VERSION.zip" -WGET_URL="ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/$VERSION/linux-i686/xpi/$LANG.xpi" - -DEPENDS="firefox" - -# Rules to gen a SliTaz package suitable for Tazpkg. -genpkg_rules() -{ - EXTDIR="$fs/usr/lib/firefox-$VERSION/extensions/$LANG_DIR" - mkdir -p $EXTDIR - cp -a $src/* $EXTDIR -} diff -r a18af897de8e -r fc8399b41cda firefox-langpack/.icon.png Binary file firefox-langpack/.icon.png has changed diff -r a18af897de8e -r fc8399b41cda firefox-langpack/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/firefox-langpack/receipt Tue Oct 02 04:53:44 2018 +0300 @@ -0,0 +1,57 @@ +# SliTaz package receipt v2. + +PACKAGE="firefox-langpack" +VERSION="17.0.11esr" +CATEGORY="meta" +SHORT_DESC="Firefox language pack" +MAINTAINER="al.bobylev@gmail.com" +LICENSE="MPL2" +WEB_SITE="http://www.mozilla.org/firefox" +HOST_ARCH="any" +REPOLOGY="-" + +SPLIT="$PACKAGE-da $PACKAGE-de $PACKAGE-en_GB $PACKAGE-es_ES $PACKAGE-fr \ +$PACKAGE-id $PACKAGE-it $PACKAGE-pt_BR $PACKAGE-pt_PT $PACKAGE-ru \ +$PACKAGE-zh_CN $PACKAGE-zh_TW" +COOKOPTS="!strip" # waste of time to search, nothing to strip + +compile_rules() { + for i in $SPLIT; do + lang=${i##*-} + Lang=${lang/_/-} + TARBALL="$PACKAGE-$lang-$VERSION.zip" + WGET_URL="http://ftp.mozilla.org/pub/firefox/releases/$VERSION/linux-i686/xpi/$Lang.xpi" + [ -e "$SRC/$TARBALL" ] || wget -O $SRC/$TARBALL $WGET_URL + + extdir="$install/usr/lib/firefox-$VERSION/extensions/langpack-$Lang@firefox.mozilla.org" + mkdir -p $extdir + unzip -q $SRC/$TARBALL -d $extdir + + find $install -type f -name '.mkdir.done' -delete + for i in mac win; do + rm -r $extdir/chrome/$Lang/locale/$Lang/global-platform/$i + done + done +} + +genpkg_rules() { + [ "$PACKAGE" == 'firefox-langpack' ] && return + lang="${PACKAGE##*-}" + copy langpack-${lang/_/-}@firefox.mozilla.org/ + case $lang in + da) desc="Danish";; + de) desc="German";; + en_GB) desc="British English";; + es_ES) desc="Spanish";; + fr) desc="French";; + id) desc="Indonesian";; + it) desc="Italian";; + pt_BR) desc="Brazilian Portuguese";; + pt_PT) desc="Portuguese";; + ru) desc="Russian";; + zh_CN) desc="Simplified Chinese";; + zh_TW) desc="Chinese Traditional";; + esac + CAT="localization|$desc" + DEPENDS="firefox" +} diff -r a18af897de8e -r fc8399b41cda mate116/receipt --- a/mate116/receipt Mon Oct 01 01:18:37 2018 +0300 +++ b/mate116/receipt Tue Oct 02 04:53:44 2018 +0300 @@ -10,3 +10,4 @@ LICENSE="GPL" WEB_SITE="https://github.com/mate-desktop" REPOLOGY="-" +HOST_ARCH="skip" diff -r a18af897de8e -r fc8399b41cda py3k3/.icon.png --- a/py3k3/.icon.png Mon Oct 01 01:18:37 2018 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1 +0,0 @@ -../python/.icon.png \ No newline at end of file diff -r a18af897de8e -r fc8399b41cda py3k3/receipt --- a/py3k3/receipt Mon Oct 01 01:18:37 2018 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,60 +0,0 @@ -# SliTaz package receipt v2. - -PACKAGE="py3k3" -VERSION="3.3.6" -CATEGORY="development" -SHORT_DESC="The Python 3000 programming language" -MAINTAINER="nneul@neulinger.org" -LICENSE="GPL" -WEB_SITE="https://www.python.org/download/releases/" -REPOLOGY="python3" - -SOURCE="Python" -TARBALL="$SOURCE-$VERSION.tgz" -WGET_URL="https://www.python.org/ftp/python/$VERSION/$TARBALL" - -BUILD_DEPENDS="readline-dev gdbm-dev openssl-dev sqlite3-dev zlib-dev tk-dev \ -ncurses-dev xz-dev bzip2-dev" -SPLIT="py3k3-dev" -COOKOPTS="!zip" - -# Rules to configure and make the package. -compile_rules() -{ - mkdir -p $DESTDIR/usr/lib/pkgconfig - ./configure \ - --enable-shared \ - --prefix=/usr \ - --infodir=/usr/share/info \ - --mandir=/usr/share/man \ - $CONFIGURE_ARGS && - make && - make DESTDIR=$DESTDIR install -} - -# Rules to gen a SliTaz package suitable for Tazpkg. -genpkg_rules() -{ - case $PACKAGE in - py3k3) - python_version=${VERSION:0:3} - mkdir -p $fs/usr/include/python${python_version}m - cp -a $install/usr/bin $fs/usr - cp -a $install/usr/lib $fs/usr - # needed for python3 to work - cp -a $install/usr/include/python${python_version}m/pyconfig.h \ - $fs/usr/include/python${python_version}m - rm -f $fs/usr/bin/*-config - DEPENDS="openssl bzlib readline sqlite3 zlib xorg-libXScrnSaver \ - ncurses gdbm tk xorg-libXext" - PROVIDE="py3k" - ;; - *-dev) - mkdir -p $fs/usr/bin - cp -a $install/usr/include $fs/usr - cp -a $install/usr/bin/*-config $fs/usr/bin - chmod 755 $fs/usr/bin/*-config - rm $fs/usr/include/*/pyconfig.h - ;; - esac -} diff -r a18af897de8e -r fc8399b41cda python-docutils/receipt --- a/python-docutils/receipt Mon Oct 01 01:18:37 2018 +0300 +++ b/python-docutils/receipt Tue Oct 02 04:53:44 2018 +0300 @@ -19,7 +19,7 @@ } genpkg_rules() { - copy @std + copy @std include/ # here include/ contains not @dev files py=${PACKAGE%%-*} # python/python3 DEPENDS="$py" SUGGESTED="$py-pil" diff -r a18af897de8e -r fc8399b41cda python-idna/receipt --- a/python-idna/receipt Mon Oct 01 01:18:37 2018 +0300 +++ b/python-idna/receipt Tue Oct 02 04:53:44 2018 +0300 @@ -15,7 +15,9 @@ SPLIT="${PACKAGE/python/python3}:3" compile_rules() { - pip$SET install --no-compile --root=$install $ORIGIN==$VERSION + pip$SET install --no-compile --root=$install $ORIGIN==$VERSION || return 1 + + find $install -type f -exec chmod a-x '{}' \; } genpkg_rules() { diff -r a18af897de8e -r fc8399b41cda python-nose/receipt --- a/python-nose/receipt Mon Oct 01 01:18:37 2018 +0300 +++ b/python-nose/receipt Tue Oct 02 04:53:44 2018 +0300 @@ -15,7 +15,13 @@ SPLIT="${PACKAGE/python/python3}:3" compile_rules() { - pip$SET install --no-compile --root=$install $ORIGIN==$VERSION + pip$SET install --no-compile --root=$install $ORIGIN==$VERSION || return 1 + + mkdir -p $install/usr/share/ + mv $install/usr/man/ $install/usr/share/ + # fix displaying (it just work :-) + sed -i '/^\.de/,/\.\./d; /^\.INDENT/d; /^\.UNINDENT/d' \ + $install/usr/share/man/man1/nosetests.1 } genpkg_rules() { diff -r a18af897de8e -r fc8399b41cda thunderbird-langpack-cs/receipt --- a/thunderbird-langpack-cs/receipt Mon Oct 01 01:18:37 2018 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,23 +0,0 @@ -# SliTaz package receipt. - -PACKAGE="thunderbird-langpack-cs" -VERSION="17.0.11esr" -CATEGORY="localization" -SHORT_DESC="Czech Language Pack for thunderbird" -MAINTAINER="domcox@slitaz.org" -LICENSE="MPL" -WEB_SITE="https://www.mozillamessaging.com/" -LANG=$(echo $PACKAGE | cut -d'-' -f3 | tr '_' '-') -TARBALL="$PACKAGE-$VERSION.xpi" -WGET_URL="ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/$VERSION/linux-i686/xpi/$LANG.xpi" - -DEPENDS="thunderbird" - -# Rules to gen a SliTaz package suitable for Tazpkg. -genpkg_rules() -{ - LANG_DIR="langpack-$LANG@thunderbird.mozilla.org" - EXTDIR="$fs/usr/lib/thunderbird-$VERSION/extensions/$LANG_DIR" - mkdir -p $EXTDIR - cp -a $src/* $EXTDIR -} diff -r a18af897de8e -r fc8399b41cda thunderbird-langpack-da/receipt --- a/thunderbird-langpack-da/receipt Mon Oct 01 01:18:37 2018 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,23 +0,0 @@ -# SliTaz package receipt. - -PACKAGE="thunderbird-langpack-da" -VERSION="17.0.11esr" -CATEGORY="localization" -SHORT_DESC="Danish Language Pack for thunderbird" -MAINTAINER="domcox@slitaz.org" -LICENSE="MPL" -WEB_SITE="https://www.mozillamessaging.com/" -LANG=$(echo $PACKAGE | cut -d'-' -f3 | tr '_' '-') -TARBALL="$PACKAGE-$VERSION.xpi" -WGET_URL="ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/$VERSION/linux-i686/xpi/$LANG.xpi" - -DEPENDS="thunderbird" - -# Rules to gen a SliTaz package suitable for Tazpkg. -genpkg_rules() -{ - LANG_DIR="langpack-$LANG@thunderbird.mozilla.org" - EXTDIR="$fs/usr/lib/thunderbird-$VERSION/extensions/$LANG_DIR" - mkdir -p $EXTDIR - cp -a $src/* $EXTDIR -} diff -r a18af897de8e -r fc8399b41cda thunderbird-langpack-de/receipt --- a/thunderbird-langpack-de/receipt Mon Oct 01 01:18:37 2018 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,23 +0,0 @@ -# SliTaz package receipt. - -PACKAGE="thunderbird-langpack-de" -VERSION="17.0.11esr" -CATEGORY="localization" -SHORT_DESC="German Language Pack for thunderbird" -MAINTAINER="domcox@slitaz.org" -LICENSE="MPL" -WEB_SITE="https://www.mozillamessaging.com/" -LANG=$(echo $PACKAGE | cut -d'-' -f3 | tr '_' '-') -TARBALL="$PACKAGE-$VERSION.xpi" -WGET_URL="ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/$VERSION/linux-i686/xpi/$LANG.xpi" - -DEPENDS="thunderbird" - -# Rules to gen a SliTaz package suitable for Tazpkg. -genpkg_rules() -{ - LANG_DIR="langpack-$LANG@thunderbird.mozilla.org" - EXTDIR="$fs/usr/lib/thunderbird-$VERSION/extensions/$LANG_DIR" - mkdir -p $EXTDIR - cp -a $src/* $EXTDIR -} diff -r a18af897de8e -r fc8399b41cda thunderbird-langpack-el/receipt --- a/thunderbird-langpack-el/receipt Mon Oct 01 01:18:37 2018 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,23 +0,0 @@ -# SliTaz package receipt. - -PACKAGE="thunderbird-langpack-el" -VERSION="17.0.11esr" -CATEGORY="localization" -SHORT_DESC="Greek Language Pack for thunderbird" -MAINTAINER="domcox@slitaz.org" -LICENSE="MPL" -WEB_SITE="https://www.mozillamessaging.com/" -LANG=$(echo $PACKAGE | cut -d'-' -f3 | tr '_' '-') -TARBALL="$PACKAGE-$VERSION.xpi" -WGET_URL="ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/$VERSION/linux-i686/xpi/$LANG.xpi" - -DEPENDS="thunderbird" - -# Rules to gen a SliTaz package suitable for Tazpkg. -genpkg_rules() -{ - LANG_DIR="langpack-$LANG@thunderbird.mozilla.org" - EXTDIR="$fs/usr/lib/thunderbird-$VERSION/extensions/$LANG_DIR" - mkdir -p $EXTDIR - cp -a $src/* $EXTDIR -} diff -r a18af897de8e -r fc8399b41cda thunderbird-langpack-en_GB/receipt --- a/thunderbird-langpack-en_GB/receipt Mon Oct 01 01:18:37 2018 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,23 +0,0 @@ -# SliTaz package receipt. - -PACKAGE="thunderbird-langpack-en_GB" -VERSION="17.0.11esr" -CATEGORY="localization" -SHORT_DESC="British English Language Pack for thunderbird" -MAINTAINER="domcox@slitaz.org" -LICENSE="MPL" -WEB_SITE="https://www.mozillamessaging.com/" -LANG=$(echo $PACKAGE | cut -d'-' -f3 | tr '_' '-') -TARBALL="$PACKAGE-$VERSION.xpi" -WGET_URL="ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/$VERSION/linux-i686/xpi/$LANG.xpi" - -DEPENDS="thunderbird" - -# Rules to gen a SliTaz package suitable for Tazpkg. -genpkg_rules() -{ - LANG_DIR="langpack-$LANG@thunderbird.mozilla.org" - EXTDIR="$fs/usr/lib/thunderbird-$VERSION/extensions/$LANG_DIR" - mkdir -p $EXTDIR - cp -a $src/* $EXTDIR -} diff -r a18af897de8e -r fc8399b41cda thunderbird-langpack-en_US/receipt --- a/thunderbird-langpack-en_US/receipt Mon Oct 01 01:18:37 2018 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,23 +0,0 @@ -# SliTaz package receipt. - -PACKAGE="thunderbird-langpack-en_US" -VERSION="17.0.11esr" -CATEGORY="localization" -SHORT_DESC="American English Language Pack for thunderbird" -MAINTAINER="domcox@slitaz.org" -LICENSE="MPL" -WEB_SITE="https://www.mozillamessaging.com/" -LANG=$(echo $PACKAGE | cut -d'-' -f3 | tr '_' '-') -TARBALL="$PACKAGE-$VERSION.xpi" -WGET_URL="ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/$VERSION/linux-i686/xpi/$LANG.xpi" - -DEPENDS="thunderbird" - -# Rules to gen a SliTaz package suitable for Tazpkg. -genpkg_rules() -{ - LANG_DIR="langpack-$LANG@thunderbird.mozilla.org" - EXTDIR="$fs/usr/lib/thunderbird-$VERSION/extensions/$LANG_DIR" - mkdir -p $EXTDIR - cp -a $src/* $EXTDIR -} diff -r a18af897de8e -r fc8399b41cda thunderbird-langpack-es_AR/receipt --- a/thunderbird-langpack-es_AR/receipt Mon Oct 01 01:18:37 2018 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,23 +0,0 @@ -# SliTaz package receipt. - -PACKAGE="thunderbird-langpack-es_AR" -VERSION="17.0.11esr" -CATEGORY="localization" -SHORT_DESC="Argentinean Spanish Language Pack for thunderbird" -MAINTAINER="domcox@slitaz.org" -LICENSE="MPL" -WEB_SITE="https://www.mozillamessaging.com/" -LANG=$(echo $PACKAGE | cut -d'-' -f3 | tr '_' '-') -TARBALL="$PACKAGE-$VERSION.xpi" -WGET_URL="ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/$VERSION/linux-i686/xpi/$LANG.xpi" - -DEPENDS="thunderbird" - -# Rules to gen a SliTaz package suitable for Tazpkg. -genpkg_rules() -{ - LANG_DIR="langpack-$LANG@thunderbird.mozilla.org" - EXTDIR="$fs/usr/lib/thunderbird-$VERSION/extensions/$LANG_DIR" - mkdir -p $EXTDIR - cp -a $src/* $EXTDIR -} diff -r a18af897de8e -r fc8399b41cda thunderbird-langpack-es_ES/receipt --- a/thunderbird-langpack-es_ES/receipt Mon Oct 01 01:18:37 2018 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,23 +0,0 @@ -# SliTaz package receipt. - -PACKAGE="thunderbird-langpack-es_ES" -VERSION="17.0.11esr" -CATEGORY="localization" -SHORT_DESC="Spanish Language Pack for thunderbird" -MAINTAINER="domcox@slitaz.org" -LICENSE="MPL" -WEB_SITE="https://www.mozillamessaging.com/" -LANG=$(echo $PACKAGE | cut -d'-' -f3 | tr '_' '-') -TARBALL="$PACKAGE-$VERSION.xpi" -WGET_URL="ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/$VERSION/linux-i686/xpi/$LANG.xpi" - -DEPENDS="thunderbird" - -# Rules to gen a SliTaz package suitable for Tazpkg. -genpkg_rules() -{ - LANG_DIR="langpack-$LANG@thunderbird.mozilla.org" - EXTDIR="$fs/usr/lib/thunderbird-$VERSION/extensions/$LANG_DIR" - mkdir -p $EXTDIR - cp -a $src/* $EXTDIR -} diff -r a18af897de8e -r fc8399b41cda thunderbird-langpack-fr/receipt --- a/thunderbird-langpack-fr/receipt Mon Oct 01 01:18:37 2018 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,23 +0,0 @@ -# SliTaz package receipt. - -PACKAGE="thunderbird-langpack-fr" -VERSION="17.0.11esr" -CATEGORY="localization" -SHORT_DESC="French Language Pack for thunderbird" -MAINTAINER="domcox@slitaz.org" -LICENSE="MPL" -WEB_SITE="https://www.mozillamessaging.com/" -LANG=$(echo $PACKAGE | cut -d'-' -f3 | tr '_' '-') -TARBALL="$PACKAGE-$VERSION.xpi" -WGET_URL="ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/$VERSION/linux-i686/xpi/$LANG.xpi" - -DEPENDS="thunderbird" - -# Rules to gen a SliTaz package suitable for Tazpkg. -genpkg_rules() -{ - LANG_DIR="langpack-$LANG@thunderbird.mozilla.org" - EXTDIR="$fs/usr/lib/thunderbird-$VERSION/extensions/$LANG_DIR" - mkdir -p $EXTDIR - cp -a $src/* $EXTDIR -} diff -r a18af897de8e -r fc8399b41cda thunderbird-langpack-hu/receipt --- a/thunderbird-langpack-hu/receipt Mon Oct 01 01:18:37 2018 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,23 +0,0 @@ -# SliTaz package receipt. - -PACKAGE="thunderbird-langpack-hu" -VERSION="17.0.11esr" -CATEGORY="localization" -SHORT_DESC="Hungarian Language Pack for thunderbird" -MAINTAINER="domcox@slitaz.org" -LICENSE="MPL" -WEB_SITE="https://www.mozillamessaging.com/" -LANG=$(echo $PACKAGE | cut -d'-' -f3 | tr '_' '-') -TARBALL="$PACKAGE-$VERSION.xpi" -WGET_URL="ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/$VERSION/linux-i686/xpi/$LANG.xpi" - -DEPENDS="thunderbird" - -# Rules to gen a SliTaz package suitable for Tazpkg. -genpkg_rules() -{ - LANG_DIR="langpack-$LANG@thunderbird.mozilla.org" - EXTDIR="$fs/usr/lib/thunderbird-$VERSION/extensions/$LANG_DIR" - mkdir -p $EXTDIR - cp -a $src/* $EXTDIR -} diff -r a18af897de8e -r fc8399b41cda thunderbird-langpack-id/receipt --- a/thunderbird-langpack-id/receipt Mon Oct 01 01:18:37 2018 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,23 +0,0 @@ -# SliTaz package receipt. - -PACKAGE="thunderbird-langpack-id" -VERSION="17.0.11esr" -CATEGORY="localization" -SHORT_DESC="Indonesian Language Pack for thunderbird" -MAINTAINER="domcox@slitaz.org" -LICENSE="MPL" -WEB_SITE="https://www.mozillamessaging.com/" -LANG=$(echo $PACKAGE | cut -d'-' -f3 | tr '_' '-') -TARBALL="$PACKAGE-$VERSION.xpi" -WGET_URL="ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/$VERSION/linux-i686/xpi/$LANG.xpi" - -DEPENDS="thunderbird" - -# Rules to gen a SliTaz package suitable for Tazpkg. -genpkg_rules() -{ - LANG_DIR="langpack-$LANG@thunderbird.mozilla.org" - EXTDIR="$fs/usr/lib/thunderbird-$VERSION/extensions/$LANG_DIR" - mkdir -p $EXTDIR - cp -a $src/* $EXTDIR -} diff -r a18af897de8e -r fc8399b41cda thunderbird-langpack-it/receipt --- a/thunderbird-langpack-it/receipt Mon Oct 01 01:18:37 2018 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,23 +0,0 @@ -# SliTaz package receipt. - -PACKAGE="thunderbird-langpack-it" -VERSION="17.0.11esr" -CATEGORY="localization" -SHORT_DESC="Italian Language Pack for thunderbird" -MAINTAINER="domcox@slitaz.org" -LICENSE="MPL" -WEB_SITE="https://www.mozillamessaging.com/" -LANG=$(echo $PACKAGE | cut -d'-' -f3 | tr '_' '-') -TARBALL="$PACKAGE-$VERSION.xpi" -WGET_URL="ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/$VERSION/linux-i686/xpi/$LANG.xpi" - -DEPENDS="thunderbird" - -# Rules to gen a SliTaz package suitable for Tazpkg. -genpkg_rules() -{ - LANG_DIR="langpack-$LANG@thunderbird.mozilla.org" - EXTDIR="$fs/usr/lib/thunderbird-$VERSION/extensions/$LANG_DIR" - mkdir -p $EXTDIR - cp -a $src/* $EXTDIR -} diff -r a18af897de8e -r fc8399b41cda thunderbird-langpack-pl/receipt --- a/thunderbird-langpack-pl/receipt Mon Oct 01 01:18:37 2018 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,23 +0,0 @@ -# SliTaz package receipt. - -PACKAGE="thunderbird-langpack-pl" -VERSION="17.0.11esr" -CATEGORY="localization" -SHORT_DESC="Polish Language Pack for thunderbird" -MAINTAINER="domcox@slitaz.org" -LICENSE="MPL" -WEB_SITE="https://www.mozillamessaging.com/" -LANG=$(echo $PACKAGE | cut -d'-' -f3 | tr '_' '-') -TARBALL="$PACKAGE-$VERSION.xpi" -WGET_URL="ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/$VERSION/linux-i686/xpi/$LANG.xpi" - -DEPENDS="thunderbird" - -# Rules to gen a SliTaz package suitable for Tazpkg. -genpkg_rules() -{ - LANG_DIR="langpack-$LANG@thunderbird.mozilla.org" - EXTDIR="$fs/usr/lib/thunderbird-$VERSION/extensions/$LANG_DIR" - mkdir -p $EXTDIR - cp -a $src/* $EXTDIR -} diff -r a18af897de8e -r fc8399b41cda thunderbird-langpack-pt_BR/receipt --- a/thunderbird-langpack-pt_BR/receipt Mon Oct 01 01:18:37 2018 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,23 +0,0 @@ -# SliTaz package receipt. - -PACKAGE="thunderbird-langpack-pt_BR" -VERSION="17.0.11esr" -CATEGORY="localization" -SHORT_DESC="Brazilian Portuguese Language Pack for thunderbird" -MAINTAINER="domcox@slitaz.org" -LICENSE="MPL" -WEB_SITE="https://www.mozillamessaging.com/" -LANG=$(echo $PACKAGE | cut -d'-' -f3 | tr '_' '-') -TARBALL="$PACKAGE-$VERSION.xpi" -WGET_URL="ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/$VERSION/linux-i686/xpi/$LANG.xpi" - -DEPENDS="thunderbird" - -# Rules to gen a SliTaz package suitable for Tazpkg. -genpkg_rules() -{ - LANG_DIR="langpack-$LANG@thunderbird.mozilla.org" - EXTDIR="$fs/usr/lib/thunderbird-$VERSION/extensions/$LANG_DIR" - mkdir -p $EXTDIR - cp -a $src/* $EXTDIR -} diff -r a18af897de8e -r fc8399b41cda thunderbird-langpack-pt_PT/receipt --- a/thunderbird-langpack-pt_PT/receipt Mon Oct 01 01:18:37 2018 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,23 +0,0 @@ -# SliTaz package receipt. - -PACKAGE="thunderbird-langpack-pt_PT" -VERSION="17.0.11esr" -CATEGORY="localization" -SHORT_DESC="Portuguese Language Pack for thunderbird" -MAINTAINER="domcox@slitaz.org" -LICENSE="MPL" -WEB_SITE="https://www.mozillamessaging.com/" -LANG=$(echo $PACKAGE | cut -d'-' -f3 | tr '_' '-') -TARBALL="$PACKAGE-$VERSION.xpi" -WGET_URL="ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/$VERSION/linux-i686/xpi/$LANG.xpi" - -DEPENDS="thunderbird" - -# Rules to gen a SliTaz package suitable for Tazpkg. -genpkg_rules() -{ - LANG_DIR="langpack-$LANG@thunderbird.mozilla.org" - EXTDIR="$fs/usr/lib/thunderbird-$VERSION/extensions/$LANG_DIR" - mkdir -p $EXTDIR - cp -a $src/* $EXTDIR -} diff -r a18af897de8e -r fc8399b41cda thunderbird-langpack-ru/receipt --- a/thunderbird-langpack-ru/receipt Mon Oct 01 01:18:37 2018 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,23 +0,0 @@ -# SliTaz package receipt. - -PACKAGE="thunderbird-langpack-ru" -VERSION="17.0.11esr" -CATEGORY="localization" -SHORT_DESC="Russian Language Pack for thunderbird" -MAINTAINER="domcox@slitaz.org" -LICENSE="MPL" -WEB_SITE="https://www.mozillamessaging.com/" -LANG=$(echo $PACKAGE | cut -d'-' -f3 | tr '_' '-') -TARBALL="$PACKAGE-$VERSION.xpi" -WGET_URL="ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/$VERSION/linux-i686/xpi/$LANG.xpi" - -DEPENDS="thunderbird" - -# Rules to gen a SliTaz package suitable for Tazpkg. -genpkg_rules() -{ - LANG_DIR="langpack-$LANG@thunderbird.mozilla.org" - EXTDIR="$fs/usr/lib/thunderbird-$VERSION/extensions/$LANG_DIR" - mkdir -p $EXTDIR - cp -a $src/* $EXTDIR -} diff -r a18af897de8e -r fc8399b41cda thunderbird-langpack-sl/receipt --- a/thunderbird-langpack-sl/receipt Mon Oct 01 01:18:37 2018 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,23 +0,0 @@ -# SliTaz package receipt. - -PACKAGE="thunderbird-langpack-sl" -VERSION="17.0.11esr" -CATEGORY="localization" -SHORT_DESC="Slovenian Language Pack for thunderbird" -MAINTAINER="domcox@slitaz.org" -LICENSE="MPL" -WEB_SITE="https://www.mozillamessaging.com/" -LANG=$(echo $PACKAGE | cut -d'-' -f3 | tr '_' '-') -TARBALL="$PACKAGE-$VERSION.xpi" -WGET_URL="ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/$VERSION/linux-i686/xpi/$LANG.xpi" - -DEPENDS="thunderbird" - -# Rules to gen a SliTaz package suitable for Tazpkg. -genpkg_rules() -{ - LANG_DIR="langpack-$LANG@thunderbird.mozilla.org" - EXTDIR="$fs/usr/lib/thunderbird-$VERSION/extensions/$LANG_DIR" - mkdir -p $EXTDIR - cp -a $src/* $EXTDIR -} diff -r a18af897de8e -r fc8399b41cda thunderbird-langpack-sv_SE/receipt --- a/thunderbird-langpack-sv_SE/receipt Mon Oct 01 01:18:37 2018 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,23 +0,0 @@ -# SliTaz package receipt. - -PACKAGE="thunderbird-langpack-sv_SE" -VERSION="17.0.11esr" -CATEGORY="localization" -SHORT_DESC="Swedish Language Pack for thunderbird" -MAINTAINER="domcox@slitaz.org" -LICENSE="MPL" -WEB_SITE="https://www.mozillamessaging.com/" -LANG=$(echo $PACKAGE | cut -d'-' -f3 | tr '_' '-') -TARBALL="$PACKAGE-$VERSION.xpi" -WGET_URL="ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/$VERSION/linux-i686/xpi/$LANG.xpi" - -DEPENDS="thunderbird" - -# Rules to gen a SliTaz package suitable for Tazpkg. -genpkg_rules() -{ - LANG_DIR="langpack-$LANG@thunderbird.mozilla.org" - EXTDIR="$fs/usr/lib/thunderbird-$VERSION/extensions/$LANG_DIR" - mkdir -p $EXTDIR - cp -a $src/* $EXTDIR -} diff -r a18af897de8e -r fc8399b41cda thunderbird-langpack-zh_CN/receipt --- a/thunderbird-langpack-zh_CN/receipt Mon Oct 01 01:18:37 2018 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,23 +0,0 @@ -# SliTaz package receipt. - -PACKAGE="thunderbird-langpack-zh_CN" -VERSION="17.0.11esr" -CATEGORY="localization" -SHORT_DESC="Simplified Chinese Language Pack for thunderbird" -MAINTAINER="domcox@slitaz.org" -LICENSE="MPL" -WEB_SITE="https://www.mozillamessaging.com/" -LANG=$(echo $PACKAGE | cut -d'-' -f3 | tr '_' '-') -TARBALL="$PACKAGE-$VERSION.xpi" -WGET_URL="ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/$VERSION/linux-i686/xpi/$LANG.xpi" - -DEPENDS="thunderbird" - -# Rules to gen a SliTaz package suitable for Tazpkg. -genpkg_rules() -{ - LANG_DIR="langpack-$LANG@thunderbird.mozilla.org" - EXTDIR="$fs/usr/lib/thunderbird-$VERSION/extensions/$LANG_DIR" - mkdir -p $EXTDIR - cp -a $src/* $EXTDIR -} diff -r a18af897de8e -r fc8399b41cda thunderbird-langpack-zh_TW/receipt --- a/thunderbird-langpack-zh_TW/receipt Mon Oct 01 01:18:37 2018 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,23 +0,0 @@ -# SliTaz package receipt. - -PACKAGE="thunderbird-langpack-zh_TW" -VERSION="17.0.11esr" -CATEGORY="localization" -SHORT_DESC="Traditional Chinese Language Pack for thunderbird" -MAINTAINER="domcox@slitaz.org" -LICENSE="MPL" -WEB_SITE="https://www.mozillamessaging.com/" -LANG=$(echo $PACKAGE | cut -d'-' -f3 | tr '_' '-') -TARBALL="$PACKAGE-$VERSION.xpi" -WGET_URL="ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/$VERSION/linux-i686/xpi/$LANG.xpi" - -DEPENDS="thunderbird" - -# Rules to gen a SliTaz package suitable for Tazpkg. -genpkg_rules() -{ - LANG_DIR="langpack-$LANG@thunderbird.mozilla.org" - EXTDIR="$fs/usr/lib/thunderbird-$VERSION/extensions/$LANG_DIR" - mkdir -p $EXTDIR - cp -a $src/* $EXTDIR -} diff -r a18af897de8e -r fc8399b41cda thunderbird-langpack/.icon.png Binary file thunderbird-langpack/.icon.png has changed diff -r a18af897de8e -r fc8399b41cda thunderbird-langpack/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/thunderbird-langpack/receipt Tue Oct 02 04:53:44 2018 +0300 @@ -0,0 +1,66 @@ +# SliTaz package receipt v2. + +PACKAGE="thunderbird-langpack" +VERSION="17.0.11esr" +CATEGORY="meta" +SHORT_DESC="Thunderbird language pack" +MAINTAINER="al.bobylev@gmail.com" +LICENSE="MPL2" +WEB_SITE="https://www.thunderbird.net/en-GB/" +HOST_ARCH="any" +REPOLOGY="-" + +SPLIT="$PACKAGE-cs $PACKAGE-da $PACKAGE-de $PACKAGE-el $PACKAGE-en_GB \ +$PACKAGE-en_US $PACKAGE-es_AR $PACKAGE-es_ES $PACKAGE-fr $PACKAGE-hu \ +$PACKAGE-id $PACKAGE-it $PACKAGE-pl $PACKAGE-pt_BR $PACKAGE-pt_PT $PACKAGE-ru \ +$PACKAGE-sl $PACKAGE-sv_SE $PACKAGE-zh_CN $PACKAGE-zh_TW" +COOKOPTS="!strip" # waste of time to search, nothing to strip + +compile_rules() { + for i in $SPLIT; do + lang=${i##*-} + Lang=${lang/_/-} + TARBALL="$PACKAGE-$lang-$VERSION.zip" + WGET_URL="http://ftp.mozilla.org/pub/thunderbird/releases/$VERSION/linux-i686/xpi/$Lang.xpi" + [ -e "$SRC/$TARBALL" ] || wget -O $SRC/$TARBALL $WGET_URL + + extdir="$install/usr/lib/thunderbird-$VERSION/extensions/langpack-$Lang@thunderbird.mozilla.org" + mkdir -p $extdir + unzip -q $SRC/$TARBALL -d $extdir + + find $install -type f -name '.mkdir.done' -delete + for i in mac win; do + rm -r $extdir/chrome/$Lang/locale/$Lang/global-platform/$i + done + done +} + +genpkg_rules() { + [ "$PACKAGE" == 'thunderbird-langpack' ] && return + lang="${PACKAGE##*-}" + copy langpack-${lang/_/-}@thunderbird.mozilla.org/ + case $lang in + cs) desc="Czech";; + da) desc="Danish";; + de) desc="German";; + el) desc="Greek";; + en_GB) desc="British English";; + en_US) desc="American English";; + es_AR) desc="Argentinian Spanish";; + es_ES) desc="Spanish";; + fr) desc="French";; + hu) desc="Hungarian";; + id) desc="Indonesian";; + it) desc="Italian";; + pl) desc="Polish";; + pt_BR) desc="Brazilian Portuguese";; + pt_PT) desc="Portuguese";; + ru) desc="Russian";; + sl) desc="Slovenian";; + sv_SE) desc="Swedish";; + zh_CN) desc="Simplified Chinese";; + zh_TW) desc="Chinese Traditional";; + esac + CAT="localization|$desc" + DEPENDS="thunderbird" +}