# HG changeset patch # User Aleksej Bobylev # Date 1405167370 -10800 # Node ID 7aac542e058aa356615ef1fd21414f5ee059c613 # Parent b924a72615fe0a5da2d89f4c44976bfdd2009bd2 Add LXQt (now in beta state, need to review most of packages). diff -r b924a72615fe -r 7aac542e058a compton-conf/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/compton-conf/receipt Sat Jul 12 15:16:10 2014 +0300 @@ -0,0 +1,30 @@ +# SliTaz package receipt. + +PACKAGE="compton-conf" +VERSION="0.1.0" +CATEGORY="system" +SHORT_DESC="GUI configuration tool for compton X composite manager" +MAINTAINER="al.bobylev@gmail.com" +LICENSE="LGPL2.1" +WEB_SITE="https://github.com/lxde/compton-conf" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WGET_URL="https://github.com/lxde/$PACKAGE/archive/$VERSION.tar.gz" +TAGS="LXQt" + +DEPENDS="compton libQtCore libQtDBus libQtGui libconfig" +BUILD_DEPENDS="wget cacerts cmake Qt4-dev qmake libconfig-dev " + +# Rules to configure and make the package. +compile_rules() +{ + mkdir build; cd build + cmake -DCMAKE_INSTALL_PREFIX=/usr .. && + make && + make DESTDIR=$install install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cp -a $install/* $fs +} diff -r b924a72615fe -r 7aac542e058a liblxqt-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/liblxqt-dev/receipt Sat Jul 12 15:16:10 2014 +0300 @@ -0,0 +1,21 @@ +# SliTaz package receipt. + +PACKAGE="liblxqt-dev" +VERSION="0.7.0" +CATEGORY="development" +SHORT_DESC="Development files for liblxqt" +MAINTAINER="al.bobylev@gmail.com" +LICENSE="LGPL2.1" +WEB_SITE="https://github.com/lxde/liblxqt" +WANTED="liblxqt" +DEPENDS="liblxqt" +TAGS="LXQt" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib $fs/usr/share + cp -a $install/usr/include $fs/usr + cp -a $install/usr/lib/pkgconfig $fs/usr/lib + cp -a $install/usr/share/cmake $fs/usr/share +} diff -r b924a72615fe -r 7aac542e058a liblxqt-mount-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/liblxqt-mount-dev/receipt Sat Jul 12 15:16:10 2014 +0300 @@ -0,0 +1,21 @@ +# SliTaz package receipt. + +PACKAGE="liblxqt-mount-dev" +VERSION="0.7.0" +CATEGORY="development" +SHORT_DESC="Development files for liblxqt-mount" +MAINTAINER="al.bobylev@gmail.com" +LICENSE="LGPL2.1" +WEB_SITE="https://github.com/lxde/liblxqt-mount" +WANTED="liblxqt-mount" +DEPENDS="liblxqt-mount" +TAGS="LXQt" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $install/usr/include $fs/usr + cp -a $install/usr/lib/pkgconfig $fs/usr/lib + cp -a $install/usr/share $fs/usr +} diff -r b924a72615fe -r 7aac542e058a liblxqt-mount/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/liblxqt-mount/receipt Sat Jul 12 15:16:10 2014 +0300 @@ -0,0 +1,31 @@ +# SliTaz package receipt. + +PACKAGE="liblxqt-mount" +VERSION="0.7.0" +CATEGORY="system" +SHORT_DESC="Library used to manage removable devices" +MAINTAINER="al.bobylev@gmail.com" +LICENSE="LGPL2.1" +WEB_SITE="https://github.com/lxde/liblxqt-mount" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WGET_URL="https://github.com/lxde/$PACKAGE/archive/$VERSION.tar.gz" +TAGS="LXQt" + +DEPENDS="libQtCore libQtDBus libQtGui liblxqt" +BUILD_DEPENDS="wget cacerts cmake Qt4-dev qmake xorg-libX11-dev liblxqt-dev" + +# Rules to configure and make the package. +compile_rules() +{ + mkdir build; cd build + cmake -DCMAKE_INSTALL_PREFIX=/usr .. && + make && + make DESTDIR=$install install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $install/usr/lib/*.so* $fs/usr/lib +} diff -r b924a72615fe -r 7aac542e058a liblxqt/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/liblxqt/receipt Sat Jul 12 15:16:10 2014 +0300 @@ -0,0 +1,31 @@ +# SliTaz package receipt. + +PACKAGE="liblxqt" +VERSION="0.7.0" +CATEGORY="system-tools" +SHORT_DESC="Core utility library for all LXDE-Qt components" +MAINTAINER="al.bobylev@gmail.com" +LICENSE="LGPL2.1" +WEB_SITE="https://github.com/lxde/liblxqt" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WGET_URL="https://github.com/lxde/$PACKAGE/archive/$VERSION.tar.gz" +TAGS="LXQt" + +DEPENDS="libQtCore libQtDBus libQtGui libqtxdg xorg-libX11" +BUILD_DEPENDS="wget cacerts cmake Qt4-dev qmake xorg-libX11-dev libqtxdg-dev" + +# Rules to configure and make the package. +compile_rules() +{ + mkdir build; cd build + cmake -DCMAKE_INSTALL_PREFIX=/usr .. && + make && + make DESTDIR=$install install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $install/usr/lib/*.so* $fs/usr/lib +} diff -r b924a72615fe -r 7aac542e058a libqtxdg-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libqtxdg-dev/receipt Sat Jul 12 15:16:10 2014 +0300 @@ -0,0 +1,21 @@ +# SliTaz package receipt. + +PACKAGE="libqtxdg-dev" +VERSION="0.5.3" +CATEGORY="development" +SHORT_DESC="Development files for libqtxdg" +MAINTAINER="al.bobylev@gmail.com" +LICENSE="LGPL2.1" +WEB_SITE="https://github.com/lxde/libqtxdg" +WANTED="libqtxdg" +DEPENDS="libqtxdg" +TAGS="LXQt" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib $fs/usr/share + cp -a $install/usr/include $fs/usr + cp -a $install/usr/lib/pkgconfig $fs/usr/lib + cp -a $install/usr/share/cmake $fs/usr/share +} diff -r b924a72615fe -r 7aac542e058a libqtxdg/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libqtxdg/receipt Sat Jul 12 15:16:10 2014 +0300 @@ -0,0 +1,31 @@ +# SliTaz package receipt. + +PACKAGE="libqtxdg" +VERSION="0.5.3" +CATEGORY="system-tools" +SHORT_DESC="Qt implementation of freedesktop.org XDG specs" +MAINTAINER="al.bobylev@gmail.com" +LICENSE="LGPL2.1" +WEB_SITE="https://github.com/lxde/libqtxdg" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WGET_URL="https://github.com/lxde/$PACKAGE/archive/$VERSION.tar.gz" +TAGS="LXQt" + +DEPENDS="libQtGui libQtXml libmagic" +BUILD_DEPENDS="wget cacerts cmake Qt4-dev qmake libmagic-dev" + +# Rules to configure and make the package. +compile_rules() +{ + mkdir build; cd build + cmake -DCMAKE_INSTALL_PREFIX=/usr .. && + make && + make DESTDIR=$install install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $install/usr/lib/*.so* $fs/usr/lib +} diff -r b924a72615fe -r 7aac542e058a libsysstat-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libsysstat-dev/receipt Sat Jul 12 15:16:10 2014 +0300 @@ -0,0 +1,21 @@ +# SliTaz package receipt. + +PACKAGE="libsysstat-dev" +VERSION="0.1.0" +CATEGORY="development" +SHORT_DESC="Development files for libsysstat" +MAINTAINER="al.bobylev@gmail.com" +LICENSE="LGPL2.1" +WEB_SITE="https://github.com/lxde/libsysstat" +WANTED="libsysstat" +DEPENDS="libsysstat" +TAGS="LXQt" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $install/usr/include $fs/usr + cp -a $install/usr/lib/pkgconfig $fs/usr/lib + cp -a $install/usr/share $fs/usr +} diff -r b924a72615fe -r 7aac542e058a libsysstat/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libsysstat/receipt Sat Jul 12 15:16:10 2014 +0300 @@ -0,0 +1,31 @@ +# SliTaz package receipt. + +PACKAGE="libsysstat" +VERSION="0.1.0" +CATEGORY="system" +SHORT_DESC="Library used to query system info and statistics" +MAINTAINER="al.bobylev@gmail.com" +LICENSE="LGPL2.1" +WEB_SITE="https://github.com/lxde/libsysstat" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WGET_URL="https://github.com/lxde/$PACKAGE/archive/$VERSION.tar.gz" +TAGS="LXQt" + +DEPENDS="libQtCore libQtGui" +BUILD_DEPENDS="wget cacerts cmake Qt4-dev qmake" + +# Rules to configure and make the package. +compile_rules() +{ + mkdir build; cd build + cmake -DCMAKE_INSTALL_PREFIX=/usr .. && + make && + make DESTDIR=$install install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $install/usr/lib/*.so* $fs/usr/lib +} diff -r b924a72615fe -r 7aac542e058a lximage-qt/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lximage-qt/receipt Sat Jul 12 15:16:10 2014 +0300 @@ -0,0 +1,34 @@ +# SliTaz package receipt. + +PACKAGE="lximage-qt" +COMMIT="5e95cfde337f996af7f42c487fc8a8013699bb5f" +VERSION="${COMMIT:0:7}" +CATEGORY="graphics" +SHORT_DESC="The image viewer and screenshot tool for LXQt" +MAINTAINER="al.bobylev@gmail.com" +LICENSE="GPL2" +WEB_SITE="https://github.com/lxde/lximage-qt" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WGET_URL="https://github.com/lxde/$PACKAGE/archive/$COMMIT.tar.gz" +TAGS="LXQt" + +DEPENDS="libQtCore libQtDBus libQtGui libQtXml libexif libffi libfm libgio \ +pcmanfm-qt pcre xorg-libX11 xorg-libXext xorg-libXfixes zlib" +BUILD_DEPENDS="wget cacerts cmake Qt4-dev qmake glib-dev libexif-dev libfm-dev \ +xorg-libX11-dev xorg-libXfixes-dev xorg-xproto pcmanfm-qt-dev menu-cache-dev" + +# Rules to configure and make the package. +compile_rules() +{ + mkdir build; cd build + cmake -DCMAKE_INSTALL_PREFIX=/usr .. && + make && + make DESTDIR=$install install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cp -a $install/* $fs + rm -rf $fs/usr/share/lximage-qt +} diff -r b924a72615fe -r 7aac542e058a lxqt-about/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lxqt-about/receipt Sat Jul 12 15:16:10 2014 +0300 @@ -0,0 +1,30 @@ +# SliTaz package receipt. + +PACKAGE="lxqt-about" +VERSION="0.7.0" +CATEGORY="system" +SHORT_DESC="The standalone LXQt \"About\" dialog" +MAINTAINER="al.bobylev@gmail.com" +LICENSE="LGPL2.1" +WEB_SITE="https://github.com/lxde/lxqt-about" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WGET_URL="https://github.com/lxde/$PACKAGE/archive/$VERSION.tar.gz" +TAGS="LXQt" + +DEPENDS="libQtCore libQtGui liblxqt" +BUILD_DEPENDS="wget cacerts cmake liblxqt-dev Qt4-dev qmake grep libqtxdg-dev" + +# Rules to configure and make the package. +compile_rules() +{ + mkdir build; cd build + cmake -DCMAKE_INSTALL_PREFIX=/usr .. && + make && + make DESTDIR=$install install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cp -a $install/* $fs +} diff -r b924a72615fe -r 7aac542e058a lxqt-admin/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lxqt-admin/receipt Sat Jul 12 15:16:10 2014 +0300 @@ -0,0 +1,34 @@ +# SliTaz package receipt. + +PACKAGE="lxqt-admin" +COMMIT="342cf5aa8c64bd23d7991874a582a7f29a1c7dc1" +VERSION="${COMMIT:0:7}" +CATEGORY="system" +SHORT_DESC="LXQt system administration tool" +MAINTAINER="al.bobylev@gmail.com" +LICENSE="LGPL2.1" +WEB_SITE="https://github.com/lxde/lxqt-admin" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WGET_URL="https://github.com/lxde/$PACKAGE/archive/$COMMIT.tar.gz" +TAGS="LXQt" + +DEPENDS="libQtCore libQtGui libffi pcre liblxqt liboobs" +BUILD_DEPENDS="wget cacerts cmake Qt4-dev qmake liboobs-dev liblxqt-dev \ +libqtxdg-dev" + +# Rules to configure and make the package. +compile_rules() +{ + sed -i 's|LXQt/Application|lxqt/LxQtApplication|' $src/lxqt-admin-*/main.cpp + + mkdir build; cd build + cmake -DCMAKE_INSTALL_PREFIX=/usr .. && + make && + make DESTDIR=$install install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cp -a $install/* $fs +} diff -r b924a72615fe -r 7aac542e058a lxqt-appswitcher/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lxqt-appswitcher/receipt Sat Jul 12 15:16:10 2014 +0300 @@ -0,0 +1,31 @@ +# SliTaz package receipt. + +PACKAGE="lxqt-appswitcher" +VERSION="0.7.0" +CATEGORY="system" +SHORT_DESC="The LXQt application switcher" +MAINTAINER="al.bobylev@gmail.com" +LICENSE="LGPL2.1" +WEB_SITE="https://github.com/lxde/lxqt-appswitcher" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WGET_URL="https://github.com/lxde/$PACKAGE/archive/$VERSION.tar.gz" +TAGS="LXQt" + +DEPENDS="libQtCore libQtDBus libQtGui libQtXml liblxqt lxqt-globalkeys" +BUILD_DEPENDS="wget cacerts cmake Qt4-dev qmake xorg-libX11-dev liblxqt-dev \ +lxqt-globalkeys-dev libqtxdg-dev " + +# Rules to configure and make the package. +compile_rules() +{ + mkdir build; cd build + cmake -DCMAKE_INSTALL_PREFIX=/usr .. && + make && + make DESTDIR=$install install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cp -a $install/* $fs +} diff -r b924a72615fe -r 7aac542e058a lxqt-common/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lxqt-common/receipt Sat Jul 12 15:16:10 2014 +0300 @@ -0,0 +1,38 @@ +# SliTaz package receipt. + +PACKAGE="lxqt-common" +VERSION="0.7.0" +CATEGORY="system-tools" +SHORT_DESC="Common files for LXQt" +MAINTAINER="al.bobylev@gmail.com" +LICENSE="GPL2" +WEB_SITE="https://github.com/lxde/lxqt-common" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WGET_URL="https://github.com/lxde/$PACKAGE/archive/$VERSION.tar.gz" +TAGS="LXQt" + +# TODO: add more depends +DEPENDS="xorg-xprop dbus " +BUILD_DEPENDS="wget cacerts cmake Qt4-dev qmake liblxqt-dev grep" + +# Rules to configure and make the package. +compile_rules() +{ + mkdir build; cd build + cmake -DCMAKE_INSTALL_PREFIX=/usr .. && + make && + make DESTDIR=$install install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr + cp -a $install/etc $fs + cd $fs; patch -p0 < $stuff/settings.diff + cp -a $install/usr/bin $fs/usr + cp -a $install/usr/share $fs/usr + # all themes but 'flat' go to 'lxqt-themes' + rm -rf $fs/usr/share/lxqt/themes/* + cp -a $install/usr/share/lxqt/themes/flat $fs/usr/share/lxqt/themes +} diff -r b924a72615fe -r 7aac542e058a lxqt-common/stuff/settings.diff --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lxqt-common/stuff/settings.diff Sat Jul 12 15:16:10 2014 +0300 @@ -0,0 +1,22 @@ +--- etc/lxqt/lxqt.conf.orig ++++ etc/lxqt/lxqt.conf +@@ -3,2 +3,2 @@ +-theme=light +-icon_theme=oxygen ++theme=flat ++icon_theme=SliTaz +--- etc/lxqt/session.conf.orig ++++ etc/lxqt/session.conf +@@ -8 +8 @@ +-cursor_theme=whiteglass ++cursor_theme=SliTaz Polar +--- etc/pcmanfm-qt/lxqt/settings.conf.orig ++++ etc/pcmanfm-qt/lxqt/settings.conf +@@ -2,2 +2,2 @@ +-IconThemeName=elementary +-SuCommand=gksu %s ++IconThemeName=SliTaz ++SuCommand=subox %s +@@ -18 +18 @@ +-Wallpaper=/usr/share/lxqt/themes/light/simple_blue_widescreen.png ++Wallpaper=/usr/share/lxqt/themes/flat/flat.png diff -r b924a72615fe -r 7aac542e058a lxqt-config-randr/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lxqt-config-randr/receipt Sat Jul 12 15:16:10 2014 +0300 @@ -0,0 +1,31 @@ +# SliTaz package receipt. + +PACKAGE="lxqt-config-randr" +VERSION="0.7.0" +CATEGORY="x-window" +SHORT_DESC="Qt config GUI for X11 RandR for LXQt system settings" +MAINTAINER="al.bobylev@gmail.com" +LICENSE="LGPL2.1" +WEB_SITE="https://github.com/lxde/lxqt-config-randr" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WGET_URL="https://github.com/lxde/$PACKAGE/archive/$VERSION.tar.gz" +TAGS="LXQt" + +DEPENDS="libQtCore libQtGui xorg-libX11 xorg-libXext xorg-libXrandr" +BUILD_DEPENDS="wget cacerts cmake Qt4-dev qmake xorg-libX11-dev \ +xorg-libXrandr-dev" + +# Rules to configure and make the package. +compile_rules() +{ + mkdir build; cd build + cmake -DCMAKE_INSTALL_PREFIX=/usr .. && + make && + make DESTDIR=$install install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cp -a $install/* $fs +} diff -r b924a72615fe -r 7aac542e058a lxqt-config/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lxqt-config/receipt Sat Jul 12 15:16:10 2014 +0300 @@ -0,0 +1,34 @@ +# SliTaz package receipt. + +PACKAGE="lxqt-config" +VERSION="0.7.0" +CATEGORY="system-tools" +SHORT_DESC="LXQt system settings center" +MAINTAINER="al.bobylev@gmail.com" +LICENSE="LGPL2.1" +WEB_SITE="https://github.com/lxde/lxqt-config" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WGET_URL="https://github.com/lxde/$PACKAGE/archive/$VERSION.tar.gz" +TAGS="LXQt" + +DEPENDS="libQtCore libQtDBus libQtGui libQtXml libqtxdg xorg-libX11 \ +xorg-libXcursor liblxqt xorg-libXext xorg-libXfixes zlib" +BUILD_DEPENDS="wget cacerts cmake Qt4-dev qmake liblxqt-dev libqtxdg-dev \ +xorg-libX11-dev zlib-dev xorg-libXcursor-dev grep" + +# Rules to configure and make the package. +compile_rules() +{ + mkdir build; cd build + cmake -DCMAKE_INSTALL_PREFIX=/usr .. && + make && + make DESTDIR=$install install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cp -a $install/* $fs + # translations + rm -rf $fs/usr/share/lxqt +} diff -r b924a72615fe -r 7aac542e058a lxqt-globalkeys-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lxqt-globalkeys-dev/receipt Sat Jul 12 15:16:10 2014 +0300 @@ -0,0 +1,21 @@ +# SliTaz package receipt. + +PACKAGE="lxqt-globalkeys-dev" +VERSION="0.7.0" +CATEGORY="development" +SHORT_DESC="Development files for lxqt-globalkeys" +MAINTAINER="al.bobylev@gmail.com" +LICENSE="LGPL2.1" +WEB_SITE="https://github.com/lxde/lxqt-globalkeys" +WANTED="lxqt-globalkeys" +DEPENDS="lxqt-globalkeys" +TAGS="LXQt" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib $fs/usr/share + cp -a $install/usr/include $fs/usr + cp -a $install/usr/lib/pkgconfig $fs/usr/lib + cp -a $install/usr/share/cmake $fs/usr/share +} diff -r b924a72615fe -r 7aac542e058a lxqt-globalkeys/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lxqt-globalkeys/receipt Sat Jul 12 15:16:10 2014 +0300 @@ -0,0 +1,34 @@ +# SliTaz package receipt. + +PACKAGE="lxqt-globalkeys" +VERSION="0.7.0" +CATEGORY="system" +SHORT_DESC="Daemon used to register global keyboard shortcuts" +MAINTAINER="al.bobylev@gmail.com" +LICENSE="LGPL2.1" +WEB_SITE="https://github.com/lxde/lxqt-globalkeys" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WGET_URL="https://github.com/lxde/$PACKAGE/archive/$VERSION.tar.gz" +TAGS="LXQt" + +DEPENDS="liblxqt libQtCore libQtDBus libQtGui libQtXml xorg-libX11 xorg-libXext" +BUILD_DEPENDS="wget cacerts cmake liblxqt-dev Qt4-dev qmake grep xorg-xproto \ +xorg-libX11-dev liblxqt-dev libqtxdg-dev" + +# Rules to configure and make the package. +compile_rules() +{ + mkdir build; cd build + cmake -DCMAKE_INSTALL_PREFIX=/usr .. && + make && + make DESTDIR=$install install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib $fs/usr/share + cp -a $install/usr/bin $fs/usr + cp -a $install/usr/lib/*.so* $fs/usr/lib + cp -a $install/usr/share/applications $fs/usr/share +} diff -r b924a72615fe -r 7aac542e058a lxqt-notificationd/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lxqt-notificationd/receipt Sat Jul 12 15:16:10 2014 +0300 @@ -0,0 +1,31 @@ +# SliTaz package receipt. + +PACKAGE="lxqt-notificationd" +VERSION="0.7.0" +CATEGORY="system" +SHORT_DESC="The LXQt notification daemon" +MAINTAINER="al.bobylev@gmail.com" +LICENSE="LGPL2.1" +WEB_SITE="https://github.com/lxde/lxqt-notificationd" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WGET_URL="https://github.com/lxde/$PACKAGE/archive/$VERSION.tar.gz" +TAGS="LXQt" + +DEPENDS="libQtCore libQtDBus libQtGui libqtxdg liblxqt" +BUILD_DEPENDS="wget cacerts cmake Qt4-dev qmake libqtxdg-dev liblxqt-dev \ +xorg-libX11-dev grep" + +# Rules to configure and make the package. +compile_rules() +{ + mkdir build; cd build + cmake -DCMAKE_INSTALL_PREFIX=/usr .. && + make && + make DESTDIR=$install install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cp -a $install/* $fs +} diff -r b924a72615fe -r 7aac542e058a lxqt-openssh-askpass/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lxqt-openssh-askpass/receipt Sat Jul 12 15:16:10 2014 +0300 @@ -0,0 +1,30 @@ +# SliTaz package receipt. + +PACKAGE="lxqt-openssh-askpass" +VERSION="0.7.0" +CATEGORY="security" +SHORT_DESC="OpenSSH user/password GUI dialog for LXQt" +MAINTAINER="al.bobylev@gmail.com" +LICENSE="LGPL2.1" +WEB_SITE="https://github.com/lxde/lxqt-openssh-askpass" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WGET_URL="https://github.com/lxde/$PACKAGE/archive/$VERSION.tar.gz" +TAGS="LXQt" + +DEPENDS="libQtGui" +BUILD_DEPENDS="wget cacerts cmake Qt4-dev qmake liblxqt-dev libqtxdg-dev" + +# Rules to configure and make the package. +compile_rules() +{ + mkdir build; cd build + cmake -DCMAKE_INSTALL_PREFIX=/usr .. && + make && + make DESTDIR=$install install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cp -a $install/* $fs +} diff -r b924a72615fe -r 7aac542e058a lxqt-panel/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lxqt-panel/receipt Sat Jul 12 15:16:10 2014 +0300 @@ -0,0 +1,45 @@ +# SliTaz package receipt. + +PACKAGE="lxqt-panel" +VERSION="0.7.0" +CATEGORY="system" +SHORT_DESC="The LXQt desktop panel" +MAINTAINER="al.bobylev@gmail.com" +LICENSE="LGPL2.1" +WEB_SITE="https://github.com/lxde/lxqt-panel" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WGET_URL="https://github.com/lxde/$PACKAGE/archive/$VERSION.tar.gz" +TAGS="LXQt" + +DEPENDS="alsa-lib icu libQtCore libQtDBus libQtGui libQtXml libqtxdg \ +libstatgrab lm-sensors pcre xorg-libX11 xorg-libXcomposite xorg-libXdamage \ +xorg-libXext xorg-libXfixes xorg-libXrender lxqt-globalkeys liblxqt \ +liblxqt-mount menu-cache libsysstat" +SUGGESTED="qastools xscreensaver" +BUILD_DEPENDS="wget cacerts cmake Qt4-dev qmake xorg-libX11-dev liblxqt-dev \ +libqtxdg-dev lxqt-globalkeys-dev liblxqt-mount-dev xorg-libXcomposite-dev \ +xorg-libXdamage-dev xorg-libXrender-dev menu-cache-dev libstatgrab-dev \ +lm-sensors-dev alsa-lib-dev libsysstat-dev icu-dev grep glib-dev" + +# Rules to configure and make the package. +compile_rules() +{ + mkdir build; cd build + cmake \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DLIB_SUFFIX=/usr/lib \ + -DVOLUME_USE_PULSEAUDIO=No \ + -DTEATIME_PLUGIN=Yes \ + .. && + make && + make DESTDIR=$install install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/share/lxqt/lxqt-panel + cp -a $install/etc $fs + cp -a $install/usr/bin $install/usr/lib $fs/usr + cp -a $install/usr/share/lxqt/lxqt-panel/*.desktop $fs/usr/share/lxqt/lxqt-panel +} diff -r b924a72615fe -r 7aac542e058a lxqt-policykit/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lxqt-policykit/receipt Sat Jul 12 15:16:10 2014 +0300 @@ -0,0 +1,32 @@ +# SliTaz package receipt. + +PACKAGE="lxqt-policykit" +VERSION="0.7.0" +CATEGORY="system" +SHORT_DESC="The LXQt PolicyKit agent" +MAINTAINER="al.bobylev@gmail.com" +LICENSE="LGPL2.1" +WEB_SITE="https://github.com/lxde/lxqt-policykit" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WGET_URL="https://github.com/lxde/$PACKAGE/archive/$VERSION.tar.gz" +TAGS="LXQt" + +DEPENDS="libQtCore libQtGui libffi libgio liblxqt libqtxdg pcre polkit \ +polkit-qt zlib" +BUILD_DEPENDS="wget cacerts cmake polkit-qt-dev liblxqt-dev polkit-dev Qt4-dev \ +qmake libqtxdg-dev" + +# Rules to configure and make the package. +compile_rules() +{ + mkdir build; cd build + cmake -DCMAKE_INSTALL_PREFIX=/usr .. && + make && + make DESTDIR=$install install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cp -a $install/* $fs +} diff -r b924a72615fe -r 7aac542e058a lxqt-powermanagement/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lxqt-powermanagement/receipt Sat Jul 12 15:16:10 2014 +0300 @@ -0,0 +1,34 @@ +# SliTaz package receipt. + +PACKAGE="lxqt-powermanagement" +VERSION="0.7.0" +CATEGORY="system" +SHORT_DESC="Power management module for LXQt" +MAINTAINER="al.bobylev@gmail.com" +LICENSE="LGPL2.1" +WEB_SITE="https://github.com/lxde/lxqt-powermanagement" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WGET_URL="https://github.com/lxde/$PACKAGE/archive/$VERSION.tar.gz" +TAGS="LXQt" + +DEPENDS="libQtCore libQtDBus libQtGui libQtSvg liblxqt libqtxdg libxcb \ +xorg-libX11" +BUILD_DEPENDS="wget cacerts cmake libqtxdg-dev Qt4-dev qmake liblxqt-dev \ +libxcb-dev xorg-libX11-dev" + +# Rules to configure and make the package. +compile_rules() +{ + sed -i 's|qt4/QtCore|QtCore|' $src/src/lid.cpp $src/src/lidwatcher.cpp + + mkdir build; cd build + cmake -DCMAKE_INSTALL_PREFIX=/usr .. && + make && + make DESTDIR=$install install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cp -a $install/* $fs +} diff -r b924a72615fe -r 7aac542e058a lxqt-qtplugin/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lxqt-qtplugin/receipt Sat Jul 12 15:16:10 2014 +0300 @@ -0,0 +1,30 @@ +# SliTaz package receipt. + +PACKAGE="lxqt-qtplugin" +VERSION="0.7.0" +CATEGORY="misc" +SHORT_DESC="LXQt Qt platform integration plugin" +MAINTAINER="al.bobylev@gmail.com" +LICENSE="LGPL2.1" +WEB_SITE="https://github.com/lxde/lxqt-qtplugin" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WGET_URL="https://github.com/lxde/$PACKAGE/archive/$VERSION.tar.gz" +TAGS="LXQt" + +DEPENDS="libQtCore libQtGui" +BUILD_DEPENDS="wget cacerts cmake Qt4-dev qmake liblxqt-dev" + +# Rules to configure and make the package. +compile_rules() +{ + mkdir build; cd build + cmake -DCMAKE_INSTALL_PREFIX=/usr .. && + make && + make DESTDIR=$install install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cp -a $install/* $fs +} diff -r b924a72615fe -r 7aac542e058a lxqt-runner/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lxqt-runner/receipt Sat Jul 12 15:16:10 2014 +0300 @@ -0,0 +1,33 @@ +# SliTaz package receipt. + +PACKAGE="lxqt-runner" +VERSION="0.7.0" +CATEGORY="system" +SHORT_DESC="Tool used to launch programs quickly by typing their names" +MAINTAINER="al.bobylev@gmail.com" +LICENSE="LGPL2.1" +WEB_SITE="https://github.com/lxde/lxqt-runner" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WGET_URL="https://github.com/lxde/$PACKAGE/archive/$VERSION.tar.gz" +TAGS="LXQt" + +DEPENDS="libQtCore libQtDBus libQtGui libQtScript libQtXml libqtxdg liblxqt \ +lxqt-globalkeys menu-cache pcre" +BUILD_DEPENDS="wget cacerts cmake Qt4-dev qmake liblxqt-dev libqtxdg-dev \ +lxqt-globalkeys-dev menu-cache-dev xorg-libX11-dev" + +# Rules to configure and make the package. +compile_rules() +{ + mkdir build; cd build + cmake -DCMAKE_INSTALL_PREFIX=/usr .. && + make && + make DESTDIR=$install install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr + cp -a $install/usr/bin $fs/usr +} diff -r b924a72615fe -r 7aac542e058a lxqt-session/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lxqt-session/receipt Sat Jul 12 15:16:10 2014 +0300 @@ -0,0 +1,32 @@ +# SliTaz package receipt. + +PACKAGE="lxqt-session" +VERSION="0.7.0" +CATEGORY="system" +SHORT_DESC="An alternative session manager ported from the original razor-session" +MAINTAINER="al.bobylev@gmail.com" +LICENSE="LGPL2.1" +WEB_SITE="https://github.com/lxde/lxqt-session" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WGET_URL="https://github.com/lxde/$PACKAGE/archive/$VERSION.tar.gz" +TAGS="LXQt" + +DEPENDS="libQtCore libQtDBus libQtGui liblxqt libqtxdg xorg-libX11 xorg-libXext" +BUILD_DEPENDS="wget cacerts cmake liblxqt-dev Qt4-dev qmake xorg-libX11-dev \ +libqtxdg-dev grep" + +# Rules to configure and make the package. +compile_rules() +{ + mkdir build; cd build + cmake -DCMAKE_INSTALL_PREFIX=/usr .. && + make && + make DESTDIR=$install install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cp -a $install/* $fs + rm -rf $fs/usr/share/lxqt +} diff -r b924a72615fe -r 7aac542e058a lxqt-themes/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lxqt-themes/receipt Sat Jul 12 15:16:10 2014 +0300 @@ -0,0 +1,20 @@ +# SliTaz package receipt. + +PACKAGE="lxqt-themes" +VERSION="0.7.0" +CATEGORY="misc" +SHORT_DESC="Themes for LXQt" +MAINTAINER="al.bobylev@gmail.com" +LICENSE="LGPL2.1" +WEB_SITE="https://github.com/lxde/lxqt-common" +WANTED="lxqt-common" +DEPENDS="lxqt-common" +TAGS="LXQt" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/share/lxqt + cp -a $install/usr/share/lxqt/themes $fs/usr/share/lxqt + rm -rf $fs/usr/share/lxqt/themes/flat +} diff -r b924a72615fe -r 7aac542e058a obconf-qt/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/obconf-qt/receipt Sat Jul 12 15:16:10 2014 +0300 @@ -0,0 +1,32 @@ +# SliTaz package receipt. + +PACKAGE="obconf-qt" +VERSION="0.1.0" +CATEGORY="x-window" +SHORT_DESC="The Qt port of obconf, the Openbox configuration tool" +MAINTAINER="al.bobylev@gmail.com" +LICENSE="LGPL2.1" +WEB_SITE="https://github.com/lxde/obconf-qt" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WGET_URL="https://github.com/lxde/$PACKAGE/archive/$VERSION.tar.gz" +TAGS="LXQt" + +DEPENDS="bzlib fontconfig freetype libQtCore libQtGui libffi libxml2 openbox \ +pango pcre xorg-libICE xorg-libSM xorg-libX11 xorg-libXft zlib" +BUILD_DEPENDS="wget cacerts cmake Qt4-dev qmake openbox-dev glib-dev \ +xorg-libXft-dev pango-dev" + +# Rules to configure and make the package. +compile_rules() +{ + mkdir build; cd build + cmake -DCMAKE_INSTALL_PREFIX=/usr .. && + make && + make DESTDIR=$install install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cp -a $install/* $fs +} diff -r b924a72615fe -r 7aac542e058a pcmanfm-qt-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pcmanfm-qt-dev/receipt Sat Jul 12 15:16:10 2014 +0300 @@ -0,0 +1,21 @@ +# SliTaz package receipt. + +PACKAGE="pcmanfm-qt-dev" +VERSION="0.7.0" +CATEGORY="development" +SHORT_DESC="Development files for pcmanfm-qt" +MAINTAINER="al.bobylev@gmail.com" +LICENSE="LGPL2.1" +WEB_SITE="https://github.com/lxde/pcmanfm-qt" +TAGS="LXQt" + +WANTED="pcmanfm-qt" +DEPENDS="pcmanfm-qt" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $install/usr/include $fs/usr + cp -a $install/usr/lib/pkgconfig $fs/usr/lib +} diff -r b924a72615fe -r 7aac542e058a pcmanfm-qt/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pcmanfm-qt/receipt Sat Jul 12 15:16:10 2014 +0300 @@ -0,0 +1,35 @@ +# SliTaz package receipt. + +PACKAGE="pcmanfm-qt" +VERSION="0.7.0" +CATEGORY="system" +SHORT_DESC="File manager and desktop icon manager (Qt port of PCManFM and libfm)" +MAINTAINER="al.bobylev@gmail.com" +LICENSE="LGPL2.1" +WEB_SITE="https://github.com/lxde/pcmanfm-qt" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WGET_URL="https://github.com/lxde/$PACKAGE/archive/$VERSION.tar.gz" +TAGS="LXQt" + +DEPENDS="libQtCore libQtDBus libQtGui libffi libfm libgio menu-cache pcre \ +xorg-libX11 zlib" +BUILD_DEPENDS="wget cacerts cmake Qt4-dev qmake glib-dev libgio-dev libfm-dev \ +menu-cache-dev xorg-libX11-dev" + +# Rules to configure and make the package. +compile_rules() +{ + mkdir build; cd build + cmake -DCMAKE_INSTALL_PREFIX=/usr .. && + make && + make DESTDIR=$install install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $install/usr/bin $fs/usr + cp -a $install/usr/lib/*.so* $fs/usr/lib + cp -a $install/usr/share $fs/usr +}