wok-6.x rev 22613
updated compiz packages ( -> 0.8.14)
author | Hans-G?nter Theisgen |
---|---|
date | Fri Jan 10 16:34:05 2020 +0100 (2020-01-10) |
parents | 55afe4d48ff4 |
children | a2972d1fc4ba |
files | compiz-bcop/receipt compiz-ccsm/receipt compiz-compizconfig-python/receipt compiz-core-dev/receipt compiz-core/receipt compiz-libcompizconfig-dev/receipt compiz-libcompizconfig/receipt compiz-plugins-extra-dev/receipt compiz-plugins-extra/receipt compiz-plugins-main-dev/receipt compiz-plugins-main/receipt compiz-plugins-unsupported-dev/receipt compiz-plugins-unsupported/receipt compiz/receipt |
line diff
1.1 --- a/compiz-bcop/receipt Fri Jan 10 13:36:24 2020 +0100 1.2 +++ b/compiz-bcop/receipt Fri Jan 10 16:34:05 2020 +0100 1.3 @@ -1,23 +1,26 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="compiz-bcop" 1.7 -VERSION="0.8.12" 1.8 +VERSION="0.8.14" 1.9 CATEGORY="x-window" 1.10 -SHORT_DESC="Compiz option code generator" 1.11 +SHORT_DESC="Compiz option code generator." 1.12 MAINTAINER="psychomaniak@xakep.ru" 1.13 LICENSE="GPL2" 1.14 +WEB_SITE="https://github.com/compiz-reloaded" 1.15 + 1.16 TARBALL="$PACKAGE-$VERSION.tar.xz" 1.17 -WEB_SITE="https://github.com/compiz-reloaded" 1.18 WGET_URL="$WEB_SITE/$PACKAGE/releases/download/v$VERSION/$TARBALL" 1.19 -DEPENDS="xorg-libX11 compiz-core libxslt" 1.20 -BUILD_DEPENDS="xorg-dev compiz-core-dev libxslt-dev startup-notification-dev libtool" 1.21 + 1.22 +DEPENDS="compiz-core libxslt xorg-libX11" 1.23 +BUILD_DEPENDS="compiz-core-dev libtool libxslt-dev 1.24 + startup-notification-dev xorg-dev" 1.25 1.26 # Rules to configure and make the package. 1.27 compile_rules() 1.28 { 1.29 - ./configure --prefix=/usr 1.30 + ./configure --prefix=/usr && 1.31 make && 1.32 - make DESTDIR="${DESTDIR}" install 1.33 + make DESTDIR=$DESTDIR install 1.34 } 1.35 1.36 # Rules to gen a SliTaz package suitable for Tazpkg.
2.1 --- a/compiz-ccsm/receipt Fri Jan 10 13:36:24 2020 +0100 2.2 +++ b/compiz-ccsm/receipt Fri Jan 10 16:34:05 2020 +0100 2.3 @@ -1,24 +1,30 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="compiz-ccsm" 2.7 -VERSION="0.8.12.3" 2.8 +VERSION="0.8.14" 2.9 CATEGORY="x-window" 2.10 -SHORT_DESC="Compiz Config Settings Manager." 2.11 +SHORT_DESC="Compiz Configuration Settings Manager." 2.12 MAINTAINER="pankso@slitaz.org" 2.13 LICENSE="GPL2" 2.14 +WEB_SITE="https://github.com/compiz-reloaded/ccsm" 2.15 + 2.16 TARBALL="$PACKAGE-$VERSION.tar.xz" 2.17 -WEB_SITE="https://github.com/compiz-reloaded/ccsm" 2.18 WGET_URL="$WEB_SITE/releases/download/v$VERSION/ccsm-$VERSION.tar.xz" 2.19 2.20 -DEPENDS="python pygobject3 compiz-core compiz-libcompizconfig \ 2.21 -compiz-compizconfig-python gtk-girepository" 2.22 -BUILD_DEPENDS="$DEPENDS python-dev libtool compiz-core-dev \ 2.23 -compiz-libcompizconfig-dev" 2.24 +DEPENDS="compiz-compizconfig-python compiz-core compiz-libcompizconfig 2.25 + gtk-girepository pygobject3 python" 2.26 +BUILD_DEPENDS="compiz-core-dev compiz-libcompizconfig-dev libtool python-dev" 2.27 2.28 # Rules to configure and make the package. 2.29 compile_rules() 2.30 { 2.31 - ./setup.py install --prefix=/usr --with-gtk=2.0 --root="$DESTDIR" 2.32 + # 0.8.14 to avoid: ERROR Cannot find filename: ccsm.appdata.xml.in 2.33 + sed -i '137d' setup.py 2.34 + 2.35 + ./setup.py install \ 2.36 + --prefix=/usr \ 2.37 + --with-gtk=2.0 \ 2.38 + --root="$DESTDIR" 2.39 2.40 find $DESTDIR -name ccsm.desktop | xargs \ 2.41 sed -i 's#Exec=.*#Exec=sh -c \"ccsm \|\| LC_ALL=C LANG=C ccsm\"#' 2.42 @@ -28,9 +34,19 @@ 2.43 genpkg_rules() 2.44 { 2.45 mkdir -p $fs/usr/share/locale 2.46 - cp -a $install/usr/bin $fs/usr 2.47 - cp -a $install/usr/lib $fs/usr 2.48 - cp -a $install/usr/share/locale/ru $fs/usr/share/locale 2.49 - cp -a $install/usr/share/ccsm $fs/usr/share 2.50 - cp -a $install/usr/share/icons $fs/usr/share 2.51 + 2.52 + cp -a $install/usr/bin $fs/usr 2.53 + cp -a $install/usr/lib $fs/usr 2.54 + cp -a $install/usr/share/ccsm $fs/usr/share 2.55 + cp -a $install/usr/share/icons $fs/usr/share 2.56 + 2.57 + # Set list of wanted locales in LOCALE_PACK 2.58 + . $WOK/slitaz-i18n/stuff/locale-pack.conf 2.59 + 2.60 + # Copy message files in wanted languages, if available 2.61 + for locale in $LOCALE_PACK 2.62 + do 2.63 + [ -d $install/usr/share/locale/$locale ] || continue 2.64 + cp -a $install/usr/share/locale/$locale $fs/usr/share/locale 2.65 + done 2.66 }
3.1 --- a/compiz-compizconfig-python/receipt Fri Jan 10 13:36:24 2020 +0100 3.2 +++ b/compiz-compizconfig-python/receipt Fri Jan 10 16:34:05 2020 +0100 3.3 @@ -1,31 +1,34 @@ 3.4 # SliTaz package receipt. 3.5 3.6 PACKAGE="compiz-compizconfig-python" 3.7 -VERSION="0.8.12.1" 3.8 +VERSION="0.8.14" 3.9 CATEGORY="x-window" 3.10 -SHORT_DESC="Compiz Config Python module." 3.11 +SHORT_DESC="Compiz Configuration Python module." 3.12 MAINTAINER="pankso@slitaz.org" 3.13 LICENSE="GPL2" 3.14 +WEB_SITE="https://github.com/compiz-reloaded" 3.15 + 3.16 SOURCE="${PACKAGE/compiz-/}" 3.17 TARBALL="$SOURCE-$VERSION.tar.xz" 3.18 -WEB_SITE="https://github.com/compiz-reloaded" 3.19 WGET_URL="$WEB_SITE/$SOURCE/releases/download/v$VERSION/$TARBALL" 3.20 3.21 -DEPENDS="python compiz-core compiz-libcompizconfig" 3.22 -BUILD_DEPENDS="$DEPENDS python-dev pygtk-dev compiz-core-dev protobuf-dev \ 3.23 -compiz-libcompizconfig-dev python-cython libxslt-dev util-linux-uuid-dev \ 3.24 -startup-notification-dev libtool xcb-util-dev file" 3.25 +DEPENDS="compiz-core compiz-libcompizconfig python" 3.26 +BUILD_DEPENDS="compiz-core-dev compiz-libcompizconfig-dev file 3.27 + libtool libxslt-dev protobuf-dev pygtk-dev python-cython 3.28 + python-dev startup-notification-dev util-linux-uuid-dev 3.29 + xcb-util-dev" 3.30 3.31 # Rules to configure and make the package. 3.32 compile_rules() 3.33 { 3.34 - ./configure --prefix=/usr 3.35 - make && make install 3.36 + ./configure --prefix=/usr && 3.37 + make && 3.38 + make install 3.39 } 3.40 3.41 # Rules to gen a SliTaz package suitable for Tazpkg. 3.42 genpkg_rules() 3.43 { 3.44 mkdir -p $fs 3.45 - cp -a $install/usr $fs 3.46 + cp -a $install/usr $fs 3.47 }
4.1 --- a/compiz-core-dev/receipt Fri Jan 10 13:36:24 2020 +0100 4.2 +++ b/compiz-core-dev/receipt Fri Jan 10 16:34:05 2020 +0100 4.3 @@ -1,22 +1,24 @@ 4.4 # SliTaz package receipt. 4.5 4.6 PACKAGE="compiz-core-dev" 4.7 -VERSION="0.8.12.3" 4.8 +VERSION="0.8.14" 4.9 CATEGORY="development" 4.10 -SHORT_DESC="Compiz devel files." 4.11 +SHORT_DESC="Compiz - development files." 4.12 MAINTAINER="pankso@slitaz.org" 4.13 LICENSE="MIT GPL LGPL" 4.14 -WANTED="compiz-core" 4.15 WEB_SITE="http://www.compiz.org/" 4.16 4.17 -DEPENDS="pkg-config compiz-core" 4.18 +DEPENDS="compiz-core pkg-config" 4.19 +WANTED="compiz-core" 4.20 4.21 # Rules to gen a SliTaz package suitable for Tazpkg. 4.22 genpkg_rules() 4.23 { 4.24 - mkdir -p $fs/usr/lib/compiz $fs/usr/share/compiz 4.25 - cp -a $install/usr/include $fs/usr 4.26 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 4.27 - cp -a $install/usr/lib/*.la $fs/usr/lib 4.28 - cp -a $install/usr/lib/compiz/*.la $fs/usr/lib/compiz/ 4.29 + mkdir -p $fs/usr/lib/compiz 4.30 + mkdir -p $fs/usr/share/compiz 4.31 + 4.32 + cp -a $install/usr/include $fs/usr 4.33 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 4.34 + cp -a $install/usr/lib/*.la $fs/usr/lib 4.35 + cp -a $install/usr/lib/compiz/*.la $fs/usr/lib/compiz/ 4.36 }
5.1 --- a/compiz-core/receipt Fri Jan 10 13:36:24 2020 +0100 5.2 +++ b/compiz-core/receipt Fri Jan 10 16:34:05 2020 +0100 5.3 @@ -1,40 +1,61 @@ 5.4 # SliTaz package receipt. 5.5 5.6 PACKAGE="compiz-core" 5.7 -VERSION="0.8.12.3" 5.8 +VERSION="0.8.14" 5.9 CATEGORY="x-window" 5.10 -SHORT_DESC="Compiz is an OpenGL compositing manager for 3D effect." 5.11 +SHORT_DESC="An OpenGL compositing manager for 3D effect." 5.12 MAINTAINER="pankso@slitaz.org" 5.13 LICENSE="MIT GPL LGPL" 5.14 -TARBALL="$PACKAGE-$VERSION.tar.xz" 5.15 WEB_SITE="https://github.com/compiz-reloaded" 5.16 -WGET_URL="$WEB_SITE/compiz/releases/download/v$VERSION/compiz-$VERSION.tar.xz" 5.17 5.18 -DEPENDS="librsvg libxslt mesa libglu-mesa dbus dbus-glib startup-notification \ 5.19 -compiz-bcop compiz-libcompizconfig" 5.20 -BUILD_DEPENDS="xorg-dev intltool librsvg-dev libxslt-dev pango-dev libtool \ 5.21 -startup-notification-dev mesa-dev file dbus-dev dbus-glib-dev cairo-dev \ 5.22 -util-linux-uuid-dev xcb-util-dev libcroco-dev" 5.23 +TARBALL="$PACKAGE-$VERSION.tar.gz" 5.24 +WGET_URL="$WEB_SITE/compiz/archive/v$VERSION.tar.gz" 5.25 + 5.26 +DEPENDS="compiz-bcop compiz-libcompizconfig dbus dbus-glib 5.27 + librsvg libglu-mesa mesa libxslt startup-notification" 5.28 +BUILD_DEPENDS="autoconf automake cairo-dev dbus-dev dbus-glib-dev 5.29 + file intltool libcroco-dev librsvg-dev libtool libxslt-dev 5.30 + mesa-dev pango-dev startup-notification-dev 5.31 + util-linux-uuid-dev xcb-util-dev xorg-dev" 5.32 5.33 # Rules to configure and make the package. 5.34 compile_rules() 5.35 { 5.36 - ./configure --prefix=/usr --enable-shared --enable-librsvg \ 5.37 - --enable-dbus --enable-dbus-glib --enable-glib \ 5.38 - --disable-static --disable-inotify 5.39 - make && make install 5.40 + ./autogen.sh \ 5.41 + --prefix=/usr \ 5.42 + --enable-shared \ 5.43 + --enable-librsvg \ 5.44 + --enable-dbus \ 5.45 + --enable-dbus-glib \ 5.46 + --enable-glib \ 5.47 + --disable-static \ 5.48 + --disable-inotify 5.49 + make && 5.50 + make install 5.51 } 5.52 5.53 # Rules to gen a SliTaz package suitable for Tazpkg. 5.54 genpkg_rules() 5.55 { 5.56 - mkdir -p $fs/usr/lib $fs/usr/share/locale 5.57 - cp -a $install/usr/bin $fs/usr 5.58 - cp -a $install/usr/lib/compiz $fs/usr/lib 5.59 - cp -a $install/usr/lib/*.so* $fs/usr/lib 5.60 - cp -a $install/usr/share/compiz $fs/usr/share 5.61 - cp -a $install/usr/share/icons $fs/usr/share 5.62 - cp -a $install/usr/share/locale/ru $fs/usr/share 5.63 + mkdir -p $fs/usr/lib 5.64 + mkdir -p $fs/usr/share/locale 5.65 + 5.66 + cp -a $install/usr/bin $fs/usr 5.67 + cp -a $install/usr/lib/compiz $fs/usr/lib 5.68 rm -rf $fs/usr/lib/compiz/*.la 5.69 + cp -a $install/usr/lib/*.so* $fs/usr/lib 5.70 + cp -a $install/usr/share/compiz $fs/usr/share 5.71 + cp -a $install/usr/share/icons $fs/usr/share 5.72 + 5.73 + # Set list of wanted locales in LOCALE_PACK 5.74 + . $WOK/slitaz-i18n/stuff/locale-pack.conf 5.75 + 5.76 + # Copy message files in wanted languages, if available 5.77 + for locale in $LOCALE_PACK 5.78 + do 5.79 + [ -d $install/usr/share/locale/$locale ] || continue 5.80 + cp -a $install/usr/share/locale/$locale $fs/usr/share/locale 5.81 + done 5.82 + 5.83 sed 's|bash|sh|' -i $fs/usr/bin/compiz-decorator 5.84 }
6.1 --- a/compiz-libcompizconfig-dev/receipt Fri Jan 10 13:36:24 2020 +0100 6.2 +++ b/compiz-libcompizconfig-dev/receipt Fri Jan 10 16:34:05 2020 +0100 6.3 @@ -1,21 +1,23 @@ 6.4 # SliTaz package receipt. 6.5 6.6 PACKAGE="compiz-libcompizconfig-dev" 6.7 -VERSION="0.8.12.1" 6.8 +VERSION="0.8.14" 6.9 CATEGORY="development" 6.10 -SHORT_DESC="Compiz libcompizconfig devel files." 6.11 +SHORT_DESC="Compiz libcompizconfig development files." 6.12 MAINTAINER="pankso@slitaz.org" 6.13 LICENSE="GPL2" 6.14 -WANTED="compiz-libcompizconfig" 6.15 WEB_SITE="http://www.compiz.org/" 6.16 6.17 DEPENDS="pkg-config" 6.18 +WANTED="compiz-libcompizconfig" 6.19 6.20 # Rules to gen a SliTaz package suitable for Tazpkg. 6.21 genpkg_rules() 6.22 { 6.23 - mkdir -p $fs/usr/lib $fs/usr/share 6.24 - cp -a $install/usr/include $fs/usr 6.25 - cp -a $install/usr/lib $fs/usr 6.26 + mkdir -p $fs/usr/lib 6.27 + mkdir -p $fs/usr/share 6.28 + 6.29 + cp -a $install/usr/include $fs/usr 6.30 + cp -a $install/usr/lib $fs/usr 6.31 find $fs -name '*so*' -delete 6.32 }
7.1 --- a/compiz-libcompizconfig/receipt Fri Jan 10 13:36:24 2020 +0100 7.2 +++ b/compiz-libcompizconfig/receipt Fri Jan 10 16:34:05 2020 +0100 7.3 @@ -2,33 +2,38 @@ 7.4 7.5 PACKAGE="compiz-libcompizconfig" 7.6 SOURCE="libcompizconfig" 7.7 -VERSION="0.8.12.1" 7.8 +VERSION="0.8.14" 7.9 CATEGORY="x-window" 7.10 SHORT_DESC="Compiz configuration library." 7.11 MAINTAINER="pankso@slitaz.org" 7.12 LICENSE="GPL2" 7.13 +WEB_SITE="https://github.com/compiz-reloaded" 7.14 + 7.15 TARBALL="$SOURCE-$VERSION.tar.xz" 7.16 -WEB_SITE="https://github.com/compiz-reloaded" 7.17 WGET_URL="$WEB_SITE/$SOURCE/releases/download/v$VERSION/$TARBALL" 7.18 7.19 -DEPENDS="compiz-core protobuf glib libgio libxml2" 7.20 -BUILD_DEPENDS="xorg-dev compiz-core-dev glibc-dev libxml2-dev mesa-dev file \ 7.21 -libxslt-dev startup-notification-dev protobuf-dev glib-dev libgio-dev libtool" 7.22 +DEPENDS="compiz-core glib libgio libxml2 protobuf" 7.23 +BUILD_DEPENDS="compiz-core-dev file glib-dev glibc-dev libgio-dev 7.24 + libtool libxml2-dev libxslt-dev mesa-dev 7.25 + protobuf-dev startup-notification-dev xorg-dev" 7.26 7.27 # Rules to configure and make the package. 7.28 compile_rules() 7.29 { 7.30 - ./configure --sysconfdir=/etc 7.31 - make && make install 7.32 + ./configure --sysconfdir=/etc && 7.33 + make && 7.34 + make install 7.35 } 7.36 7.37 # Rules to gen a SliTaz package suitable for Tazpkg. 7.38 genpkg_rules() 7.39 { 7.40 - mkdir -p $fs/usr/lib $fs/usr/share 7.41 - cp -a $install/etc $fs 7.42 - cp -a $install/usr/lib/compiz* $fs/usr/lib 7.43 - cp -a $install/usr/lib/*.so* $fs/usr/lib 7.44 - cp -a $install/usr/share/compiz $fs/usr/share 7.45 + mkdir -p $fs/usr/lib 7.46 + mkdir -p $fs/usr/share 7.47 + 7.48 + cp -a $install/etc $fs 7.49 + cp -a $install/usr/lib/compiz* $fs/usr/lib 7.50 + cp -a $install/usr/lib/*.so* $fs/usr/lib 7.51 + cp -a $install/usr/share/compiz $fs/usr/share 7.52 find $fs -name 'lib*a' -delete 7.53 }
8.1 --- a/compiz-plugins-extra-dev/receipt Fri Jan 10 13:36:24 2020 +0100 8.2 +++ b/compiz-plugins-extra-dev/receipt Fri Jan 10 16:34:05 2020 +0100 8.3 @@ -1,21 +1,22 @@ 8.4 # SliTaz package receipt. 8.5 8.6 PACKAGE="compiz-plugins-extra-dev" 8.7 -VERSION="0.8.12.1" 8.8 +VERSION="0.8.14" 8.9 CATEGORY="development" 8.10 -SHORT_DESC="Compiz plugins-extra devel files." 8.11 +SHORT_DESC="Compiz plugins-extra - development files." 8.12 MAINTAINER="pankso@slitaz.org" 8.13 LICENSE="GPL2" 8.14 -WEB_SITE="http://www.compiz.org/" 8.15 +WEB_SITE="https://github.com/compiz-reloaded" 8.16 8.17 +DEPENDS="pkg-config" 8.18 WANTED="compiz-plugins-extra" 8.19 -DEPENDS="pkg-config" 8.20 8.21 # Rules to gen a SliTaz package suitable for Tazpkg. 8.22 genpkg_rules() 8.23 { 8.24 mkdir -p $fs/usr/lib/compiz 8.25 - cp -a $install/usr/include $fs/usr 8.26 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 8.27 - cp -a $install/usr/lib/compiz/*a $fs/usr/lib/compiz 8.28 + 8.29 + cp -a $install/usr/include $fs/usr 8.30 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 8.31 + cp -a $install/usr/lib/compiz/*a $fs/usr/lib/compiz 8.32 }
9.1 --- a/compiz-plugins-extra/receipt Fri Jan 10 13:36:24 2020 +0100 9.2 +++ b/compiz-plugins-extra/receipt Fri Jan 10 16:34:05 2020 +0100 9.3 @@ -1,40 +1,57 @@ 9.4 # SliTaz package receipt. 9.5 9.6 PACKAGE="compiz-plugins-extra" 9.7 -VERSION="0.8.12.1" 9.8 +VERSION="0.8.14" 9.9 CATEGORY="x-window" 9.10 SHORT_DESC="Compiz extra plugins." 9.11 MAINTAINER="psychomaniak@xakep.ru" 9.12 LICENSE="GPL2" 9.13 +WEB_SITE="https://github.com/compiz-reloaded" 9.14 + 9.15 TARBALL="$PACKAGE-$VERSION.tar.xz" 9.16 -WEB_SITE="https://github.com/compiz-reloaded" 9.17 WGET_URL="$WEB_SITE/$PACKAGE/releases/download/v$VERSION/$TARBALL" 9.18 + 9.19 WGET_URL2="$WEB_SITE/$PACKAGE/commit/0b2a652.diff" 9.20 EXTRA_SOURCE_FILES="$PACKAGE-0b2a652.u" 9.21 9.22 -DEPENDS="xorg-libX11 compiz-core compiz-libcompizconfig gtk+ librsvg \ 9.23 -libnotify compiz-plugins-main" 9.24 -BUILD_DEPENDS="xorg-dev compiz-core-dev compiz-libcompizconfig-dev cmake \ 9.25 -libxslt-dev startup-notification-dev mesa-dev gtk+-dev intltool librsvg-dev \ 9.26 -libnotify-dev compiz-bcop util-linux-uuid-dev compiz-plugins-main-dev libtool \ 9.27 -util-linux-getopt xcb-util-dev file" 9.28 +DEPENDS="compiz-core compiz-libcompizconfig compiz-plugins-main 9.29 + gtk+ libnotify librsvg xorg-libX11" 9.30 +BUILD_DEPENDS="cmake compiz-bcop compiz-core-dev compiz-libcompizconfig-dev 9.31 + compiz-plugins-main-dev file gtk+-dev intltool libnotify-dev 9.32 + librsvg-dev libtool libxslt-dev mesa-dev startup-notification-dev 9.33 + util-linux-getopt util-linux-uuid-dev xcb-util-dev xorg-dev" 9.34 9.35 # Rules to configure and make the package. 9.36 compile_rules() 9.37 { 9.38 - [ -s $SOURCES_REPOSITORY/$EXTRA_SOURCE_FILES ] || \ 9.39 - wget -O $SOURCES_REPOSITORY/$EXTRA_SOURCE_FILES $WGET_URL2 9.40 - patch -p1 -i $SOURCES_REPOSITORY/$EXTRA_SOURCE_FILES 9.41 - ./configure --prefix=/usr 9.42 - make && make install 9.43 + # 0.8.12.1 9.44 +# [ -s $SOURCES_REPOSITORY/$EXTRA_SOURCE_FILES ] || \ 9.45 +# wget -O $SOURCES_REPOSITORY/$EXTRA_SOURCE_FILES $WGET_URL2 9.46 +# patch -p1 -i $SOURCES_REPOSITORY/$EXTRA_SOURCE_FILES 9.47 + 9.48 + ./configure --prefix=/usr && 9.49 + make && 9.50 + make install 9.51 } 9.52 9.53 # Rules to gen a SliTaz package suitable for Tazpkg. 9.54 genpkg_rules() 9.55 { 9.56 - mkdir -p $fs/usr/lib $fs/usr/share/locale 9.57 - cp -a $install/usr/lib/compiz $fs/usr/lib 9.58 - cp -a $install/usr/share/compiz $fs/usr/share 9.59 - cp -a $install/usr/share/locale/ru $fs/usr/share/locale 9.60 + mkdir -p $fs/usr/lib 9.61 + mkdir -p $fs/usr/share/locale 9.62 + 9.63 + cp -a $install/usr/lib/compiz $fs/usr/lib 9.64 + cp -a $install/usr/share/compiz $fs/usr/share 9.65 + 9.66 + # Set list of wanted locales in LOCALE_PACK 9.67 + . $WOK/slitaz-i18n/stuff/locale-pack.conf 9.68 + 9.69 + # Copy message files in wanted languages, if available 9.70 + for locale in $LOCALE_PACK 9.71 + do 9.72 + [ -d $install/usr/share/locale/$locale ] || continue 9.73 + cp -a $install/usr/share/locale/$locale $fs/usr/share/locale 9.74 + done 9.75 + 9.76 cd $fs/usr/lib/compiz; rm -f *.a *.la 9.77 }
10.1 --- a/compiz-plugins-main-dev/receipt Fri Jan 10 13:36:24 2020 +0100 10.2 +++ b/compiz-plugins-main-dev/receipt Fri Jan 10 16:34:05 2020 +0100 10.3 @@ -1,21 +1,22 @@ 10.4 # SliTaz package receipt. 10.5 10.6 PACKAGE="compiz-plugins-main-dev" 10.7 -VERSION="0.8.12.2" 10.8 +VERSION="0.8.14" 10.9 CATEGORY="development" 10.10 -SHORT_DESC="Compiz plugins-main devel files." 10.11 +SHORT_DESC="Compiz plugins-main - development files." 10.12 MAINTAINER="pankso@slitaz.org" 10.13 LICENSE="GPL2" 10.14 +WEB_SITE="https://github.com/compiz-reloaded" 10.15 + 10.16 +DEPENDS="compiz-plugins-main pkg-config" 10.17 WANTED="compiz-plugins-main" 10.18 -WEB_SITE="http://www.compiz.org/" 10.19 - 10.20 -DEPENDS="pkg-config compiz-plugins-main" 10.21 10.22 # Rules to gen a SliTaz package suitable for Tazpkg. 10.23 genpkg_rules() 10.24 { 10.25 mkdir -p $fs/usr/lib/compiz 10.26 - cp -a $install/usr/include $fs/usr 10.27 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 10.28 - cp -a $install/usr/lib/compiz/*a $fs/usr/lib/compiz 10.29 + 10.30 + cp -a $install/usr/include $fs/usr 10.31 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 10.32 + cp -a $install/usr/lib/compiz/*a $fs/usr/lib/compiz 10.33 }
11.1 --- a/compiz-plugins-main/receipt Fri Jan 10 13:36:24 2020 +0100 11.2 +++ b/compiz-plugins-main/receipt Fri Jan 10 16:34:05 2020 +0100 11.3 @@ -1,34 +1,50 @@ 11.4 # SliTaz package receipt. 11.5 11.6 PACKAGE="compiz-plugins-main" 11.7 -VERSION="0.8.12.2" 11.8 +VERSION="0.8.14" 11.9 CATEGORY="x-window" 11.10 SHORT_DESC="Compiz main plugins." 11.11 MAINTAINER="pankso@slitaz.org" 11.12 LICENSE="GPL2" 11.13 +WEB_SITE="https://github.com/compiz-reloaded" 11.14 + 11.15 TARBALL="$PACKAGE-$VERSION.tar.xz" 11.16 -WEB_SITE="https://github.com/compiz-reloaded" 11.17 WGET_URL="$WEB_SITE/$PACKAGE/releases/download/v$VERSION/$TARBALL" 11.18 11.19 -DEPENDS="xorg-libX11 compiz-core librsvg" 11.20 -BUILD_DEPENDS="xorg-dev compiz-core-dev libnotify-dev libxslt-dev \ 11.21 -startup-notification-dev mesa-dev gtk+-dev intltool librsvg-dev \ 11.22 -compiz-libcompizconfig compiz-libcompizconfig-dev compiz-bcop \ 11.23 -util-linux-uuid-dev libtool util-linux-getopt xcb-util-dev file" 11.24 +DEPENDS="compiz-core librsvg xorg-libX11" 11.25 +BUILD_DEPENDS="compiz-bcop compiz-core-dev compiz-libcompizconfig 11.26 + compiz-libcompizconfig-dev file gtk+-dev intltool libnotify-dev 11.27 + librsvg-dev libtool libxslt-dev mesa-dev startup-notification-dev 11.28 + util-linux-getopt util-linux-uuid-dev xcb-util-dev xorg-dev " 11.29 11.30 # Rules to configure and make the package. 11.31 compile_rules() 11.32 { 11.33 - ./configure --prefix=/usr --sysconfdir=/etc 11.34 - make && make install 11.35 + ./configure \ 11.36 + --prefix=/usr \ 11.37 + --sysconfdir=/etc && 11.38 + make && 11.39 + make install 11.40 } 11.41 11.42 # Rules to gen a SliTaz package suitable for Tazpkg. 11.43 genpkg_rules() 11.44 { 11.45 - mkdir -p $fs/usr/lib $fs/usr/share/locale 11.46 - cp -a $install/usr/lib/compiz $fs/usr/lib 11.47 - cp -a $install/usr/share/compiz $fs/usr/share 11.48 - cp -a $install/usr/share/locale/ru $fs/usr/share/locale 11.49 + mkdir -p $fs/usr/lib 11.50 + mkdir -p $fs/usr/share/locale 11.51 + 11.52 + cp -a $install/usr/lib/compiz $fs/usr/lib 11.53 + cp -a $install/usr/share/compiz $fs/usr/share 11.54 + 11.55 + # Set list of wanted locales in LOCALE_PACK 11.56 + . $WOK/slitaz-i18n/stuff/locale-pack.conf 11.57 + 11.58 + # Copy message files in wanted languages, if available 11.59 + for locale in $LOCALE_PACK 11.60 + do 11.61 + [ -d $install/usr/share/locale/$locale ] || continue 11.62 + cp -a $install/usr/share/locale/$locale $fs/usr/share/locale 11.63 + done 11.64 + 11.65 cd $fs/usr/lib/compiz; rm -f *.a *.la 11.66 }
12.1 --- a/compiz-plugins-unsupported-dev/receipt Fri Jan 10 13:36:24 2020 +0100 12.2 +++ b/compiz-plugins-unsupported-dev/receipt Fri Jan 10 16:34:05 2020 +0100 12.3 @@ -1,19 +1,19 @@ 12.4 # SliTaz package receipt. 12.5 12.6 PACKAGE="compiz-plugins-unsupported-dev" 12.7 -VERSION="0.8.12" 12.8 +VERSION="0.8.14" 12.9 CATEGORY="development" 12.10 -SHORT_DESC="Compiz plugins-extra devel files." 12.11 +SHORT_DESC="Compiz plugins-unsupported - development files." 12.12 MAINTAINER="pankso@slitaz.org" 12.13 LICENSE="GPL2" 12.14 -WEB_SITE="http://www.compiz.org/" 12.15 +WEB_SITE="https://github.com/compiz-reloaded" 12.16 12.17 +DEPENDS="pkg-config" 12.18 WANTED="compiz-plugins-unsupported" 12.19 -DEPENDS="pkg-config" 12.20 12.21 # Rules to gen a SliTaz package suitable for Tazpkg. 12.22 genpkg_rules() 12.23 { 12.24 mkdir -p $fs/usr/lib 12.25 - cp -a $install/usr/include $fs/usr 12.26 + cp -a $install/usr/include $fs/usr 12.27 }
13.1 --- a/compiz-plugins-unsupported/receipt Fri Jan 10 13:36:24 2020 +0100 13.2 +++ b/compiz-plugins-unsupported/receipt Fri Jan 10 16:34:05 2020 +0100 13.3 @@ -1,37 +1,51 @@ 13.4 # SliTaz package receipt. 13.5 13.6 PACKAGE="compiz-plugins-unsupported" 13.7 -SOURCE="compiz-plugins-experimental" 13.8 -VERSION="0.8.12" 13.9 +VERSION="0.8.14" 13.10 CATEGORY="x-window" 13.11 SHORT_DESC="Compiz extra plugins." 13.12 MAINTAINER="pankso@slitaz.org" 13.13 LICENSE="GPL2" 13.14 +WEB_SITE="https://github.com/compiz-reloaded" 13.15 + 13.16 +SOURCE="compiz-plugins-experimental" 13.17 TARBALL="$SOURCE-$VERSION.tar.xz" 13.18 -WEB_SITE="https://github.com/compiz-reloaded" 13.19 WGET_URL="$WEB_SITE/$SOURCE/releases/download/v$VERSION/$TARBALL" 13.20 13.21 -DEPENDS="xorg-libX11 compiz-core compiz-libcompizconfig gtk+ librsvg \ 13.22 -libnotify compiz-plugins-main" 13.23 -BUILD_DEPENDS="xorg-dev compiz-core-dev compiz-libcompizconfig-dev cmake \ 13.24 -libxslt-dev startup-notification-dev mesa-dev gtk+-dev intltool librsvg-dev \ 13.25 -libnotify-dev compiz-bcop util-linux-uuid-dev compiz-plugins-main-dev \ 13.26 -compiz-plugins-extra compiz-plugins-extra-dev libtool util-linux-getopt \ 13.27 -xcb-util-dev file" 13.28 +DEPENDS="compiz-core compiz-libcompizconfig compiz-plugins-main 13.29 + gtk+ libnotify librsvg xorg-libX11" 13.30 +BUILD_DEPENDS="cmake compiz-bcop compiz-core-dev compiz-libcompizconfig-dev 13.31 + compiz-plugins-extra compiz-plugins-extra-dev compiz-plugins-main-dev 13.32 + file gtk+-dev intltool libnotify-dev librsvg-dev libtool libxslt-dev 13.33 + mesa-dev startup-notification-dev util-linux-getopt util-linux-uuid-dev 13.34 + xcb-util-dev xorg-dev" 13.35 13.36 # Rules to configure and make the package. 13.37 compile_rules() 13.38 { 13.39 - ./configure --prefix=/usr 13.40 - make && make install 13.41 + ./configure --prefix=/usr && 13.42 + make && 13.43 + make install 13.44 } 13.45 13.46 # Rules to gen a SliTaz package suitable for Tazpkg. 13.47 genpkg_rules() 13.48 { 13.49 - mkdir -p $fs/usr/lib $fs/usr/share/locale 13.50 - cp -a $install/usr/lib/compiz $fs/usr/lib 13.51 - cp -a $install/usr/share/compiz $fs/usr/share 13.52 - cp -a $install/usr/share/locale/ru $fs/usr/share/locale 13.53 + mkdir -p $fs/usr/lib 13.54 + mkdir -p $fs/usr/share/locale 13.55 + 13.56 + cp -a $install/usr/lib/compiz $fs/usr/lib 13.57 + cp -a $install/usr/share/compiz $fs/usr/share 13.58 + 13.59 + # Set list of wanted locales in LOCALE_PACK 13.60 + . $WOK/slitaz-i18n/stuff/locale-pack.conf 13.61 + 13.62 + # Copy message files in wanted languages, if available 13.63 + for locale in $LOCALE_PACK 13.64 + do 13.65 + [ -d $install/usr/share/locale/$locale ] || continue 13.66 + cp -a $install/usr/share/locale/$locale $fs/usr/share/locale 13.67 + done 13.68 + 13.69 cd $fs/usr/lib/compiz; rm -f *.a *.la 13.70 }
14.1 --- a/compiz/receipt Fri Jan 10 13:36:24 2020 +0100 14.2 +++ b/compiz/receipt Fri Jan 10 16:34:05 2020 +0100 14.3 @@ -1,26 +1,26 @@ 14.4 # SliTaz package receipt. 14.5 14.6 PACKAGE="compiz" 14.7 -VERSION="0.8.12" 14.8 +VERSION="0.8.14" 14.9 CATEGORY="meta" 14.10 +TAGS="window-manager" 14.11 SHORT_DESC="Compiz 3D effect support on SliTaz." 14.12 MAINTAINER="pankso@slitaz.org" 14.13 LICENSE="MIT GPL LGPL" 14.14 WEB_SITE="http://www.compiz.org/" 14.15 -TAGS="window-manager" 14.16 14.17 -DEPENDS="emerald compiz-core compiz-plugins-main compiz-libcompizconfig \ 14.18 -slitaz-configs cairo-gl" 14.19 SUGGESTED="compiz-ccsm compiz-plugins-extra emerald-themes" 14.20 +DEPENDS="cairo-gl compiz-core compiz-libcompizconfig compiz-plugins-main 14.21 + emerald slitaz-configs" 14.22 14.23 # Rules to gen a SliTaz package suitable for Tazpkg. 14.24 genpkg_rules() 14.25 { 14.26 mkdir -p $fs/usr/bin 14.27 - cp -r $stuff/xsessions $fs/usr/share 14.28 - install -m 0777 $stuff/compiz-session $fs/usr/bin 14.29 - install -m 0777 $stuff/compiz-startwm $fs/usr/bin 14.30 - chown -R 0.0 $fs 14.31 + cp -r $stuff/xsessions $fs/usr/share 14.32 + install -m 0777 $stuff/compiz-session $fs/usr/bin 14.33 + install -m 0777 $stuff/compiz-startwm $fs/usr/bin 14.34 + chown -R 0.0 $fs 14.35 } 14.36 14.37 post_install() 14.38 @@ -29,30 +29,37 @@ 14.39 14.40 res=$(cat $root/etc/slim.conf | grep ^session | sed s/"sessions. *"//) 14.41 # Adding WM to SLIM available sessions. 14.42 - if ! echo "$res" | grep -q $PACKAGE; then 14.43 + if ! echo "$res" | grep -q $PACKAGE 14.44 + then 14.45 echo 14.46 echo -n "Adding $PACKAGE to /etc/slim.conf..." 14.47 - sed -i "s/^sessions.*/sessions ${res},$PACKAGE/" $root/etc/slim.conf 14.48 + sed -i "s/^sessions.*/sessions ${res},$PACKAGE/" \ 14.49 + $root/etc/slim.conf 14.50 status 14.51 fi 14.52 - for i in $(ls -d "$1"/home/* 2> /dev/null); 14.53 - do [ -d "$i" ] && \ 14.54 - sed '/WINDOW_MANAGER=/s|"\([^"]*\)"|"compiz"|' -i \ 14.55 - "$i/.config/slitaz/applications.conf" \ 14.56 - "$1/etc/slitaz/applications.conf" 14.57 - done 14.58 + 14.59 + for i in $(ls -d "$1"/home/* 2> /dev/null) 14.60 + do 14.61 + [ -d "$i" ] && 14.62 + sed '/WINDOW_MANAGER=/s|"\([^"]*\)"|"compiz"|' -i \ 14.63 + "$i/.config/slitaz/applications.conf" \ 14.64 + "$1/etc/slitaz/applications.conf" 14.65 + done 14.66 } 14.67 14.68 post_remove() 14.69 { 14.70 # Remove WM from SLIM available sessions. 14.71 - if grep -q $PACKAGE $root/etc/slim.conf; then 14.72 + if grep -q $PACKAGE $root/etc/slim.conf 14.73 + then 14.74 sed -i s/,$PACKAGE// $root/etc/slim.conf 14.75 fi 14.76 - for i in $(ls -d "$1"/home/* 2> /dev/null); 14.77 - do [ -d "$i" ] && \ 14.78 - sed '/WINDOW_MANAGER=/s|"\([^"]*\)"|"lxde-session"|' -i \ 14.79 - "$i/.config/slitaz/applications.conf" \ 14.80 - "$1/etc/slitaz/applications.conf" 14.81 - done 14.82 + 14.83 + for i in $(ls -d "$1"/home/* 2> /dev/null) 14.84 + do 14.85 + [ -d "$i" ] && 14.86 + sed '/WINDOW_MANAGER=/s|"\([^"]*\)"|"lxde-session"|' -i \ 14.87 + "$i/.config/slitaz/applications.conf" \ 14.88 + "$1/etc/slitaz/applications.conf" 14.89 + done 14.90 }