# HG changeset patch # User Aleksej Bobylev # Date 1405643865 -10800 # Node ID 94f10bc17a2ceeec135cdbf12d2dfac998c7094a # Parent 81c2bf22f7bbfb65d4a53f46759395b299e4987b Add qbittorrent. diff -r 81c2bf22f7bb -r 94f10bc17a2c galculator/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/galculator/description.txt Fri Jul 18 03:37:45 2014 +0300 @@ -0,0 +1,16 @@ +Description +----------- +galculator is a GTK 2 / GTK 3 based scientific calculator supporting algebraic +mode as well as RPN. Features include arithmetic precedence handling, +mathematical functions, different number bases (DEC, HEX, BIN, OCT) and angle +bases (radiant, degree, and grad). + +Features +-------- + * Algebraic notation calculator + * RPN calculator + * Mathematical expression parsing calculator + * GTK2 and GTK3 + * basic mode + * scientific mode + * decimal, hexadecimal, octal and binary number bases diff -r 81c2bf22f7bb -r 94f10bc17a2c qbittorrent/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/qbittorrent/description.txt Fri Jul 18 03:37:45 2014 +0300 @@ -0,0 +1,29 @@ +Description +----------- +An advanced and multi-platform BitTorrent client with a nice Qt4 user interface +as well as a Web UI for remote control and an integrated search engine. +qBittorrent aims to meet the needs of most users while using as little CPU and +memory as possible. + +Features +-------- + * Polished µTorrent-like User Interface + * Well-integrated and extensible Search Engine + * Simultaneous search in most famous BitTorrent search sites + * Per-category-specific search requests (e.g. Books, Music, Movies) + * All Bittorrent extensions + * DHT, Peer Exchange, Full encryption, Magnet/BitComet URIs, ... + * Remote control through a Web user interface + * Nearly identical to the regular UI, all in Ajax + * Advanced control over trackers, peers and torrents + * Torrents queueing and prioritizing + * Torrent content selection and prioritizing + * UPnP / NAT-PMP port forwarding support + * Available in ~25 languages (Unicode support) + * Torrent creation tool + * Advanced RSS support with download filters (inc. regex) + * Bandwidth scheduler + * IP Filtering (eMule and PeerGuardian compatible) + * IPv6 compliant + * Sequential downloading (aka "Download in order") + * Available on most platforms: Linux, Mac OS X, Windows, OS/2, FreeBSD diff -r 81c2bf22f7bb -r 94f10bc17a2c qbittorrent/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/qbittorrent/receipt Fri Jul 18 03:37:45 2014 +0300 @@ -0,0 +1,43 @@ +# SliTaz package receipt. + +PACKAGE="qbittorrent" +VERSION="3.1.9.2" +CATEGORY="network" +SHORT_DESC="qBittorrent - A BitTorrent client in Qt4" +MAINTAINER="al.bobylev@gmail.com" +LICENSE="GPL2" +WEB_SITE="http://www.qbittorrent.org/" +TARBALL="$PACKAGE-$VERSION.tar.xz" +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" +GENERIC_PIXMAPS="no"; GENERIC_MENUS="no" + +DEPENDS="libQtCore libQtDBus libQtGui libQtNetwork libQtXml libboost-system \ +libcrypto libssl libtorrent-rasterbar zlib" +BUILD_DEPENDS="Qt4-dev qmake libboost-dev libtorrent-rasterbar-dev openssl-dev \ +geoip" + +# Rules to configure and make the package. +compile_rules() +{ + ./configure \ + --prefix=/usr && + make && + make INSTALL_ROOT=$install install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/share/icons/hicolor + + cp -a $install/usr/bin $fs/usr + + cp -a $install/usr/share/applications $fs/usr/share + sdft $fs/usr/share/applications/qBittorrent.desktop -g -tf -i + sed -i '/^#/d' $fs/usr/share/applications/qBittorrent.desktop + + for size in 16 24 32 48; do + cp -a $install/usr/share/icons/hicolor/${size}x$size \ + $fs/usr/share/icons/hicolor + done +}