This commit is contained in:
microcai 2022-05-26 02:33:29 +08:00
parent 19ef8e9c6a
commit 979a754620
2 changed files with 62 additions and 0 deletions

View File

@ -3,3 +3,4 @@ DIST qbittorrent-enhanced-4.3.9.10.tar.gz 8524373 BLAKE2B 607d2ad4a683e075a3b011
DIST qbittorrent-enhanced-4.4.0.10.tar.gz 9053972 BLAKE2B 3b8e7f46c7c4e9724e44e4563bbb9a47058e7353ab42b151bf018cead683a40ab443f3a671a90f9b04c547e9de662c2806b3471f038b0c8ca4be64cb4c0275be SHA512 19dbe79b9aa6d27de7b779de7bac0c5eff6adabf5df729b40ff91baa0493a29da3d74e1c2e57f1d8ddddf105ccda09ae373cb62c220c7600493d6f766473b57b
DIST qbittorrent-enhanced-4.4.1.10.tar.gz 9109801 BLAKE2B f38f8bbbb8b54f08e2ac8214793901f8a26dd6a4b77a5293bd887cd2adc297476b9b2a6ec26eecc3dba3d91b17601bbb9687f099e15b24b2b7bf1f24b62d6622 SHA512 de04e9d5efded4810c0cbf33d7bbdbd01428665fa957adf7dcbb90df6316deff3612ade5ccebe46fd09195ec1359c7beeb7ebd16eb62b7e158968213382bbbbd
DIST qbittorrent-enhanced-4.4.2.10.tar.gz 9211835 BLAKE2B 402b3fcf6a9573f0c93245698035df90ec1ea01008d1a37d0310c0880c8d2e655c53086479170f7b287333fe74924801603559add76cb9ab9d7c318805827a24 SHA512 17042c7aa27009c306774e1a27ce56e38c10779eabcc9b2e78fca67a2a1bc6b63073dae99b054271c7ce90818cc778f15a8a5ef4dd8770cfda837a6f07202edd
DIST qbittorrent-enhanced-4.4.3.11.tar.gz 7755710 BLAKE2B e7c57f28fdc6235688ebe93fe7e221d2af13e5c35e68d0be39a728608dbec64371bc9520450ed2673e68739bb2bb30bdb40c9926014b8da568a833a0f075f47e SHA512 1b09770836f263f90c9002b798d7f7b3d872d75ed536f793ab0eef1b2cdf493f3b3f251780fb146e90b660e922c7dbceb4ca875c400fbc4bebf76cd5acca4821

View File

@ -0,0 +1,61 @@
# Copyright 2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake systemd xdg
DESCRIPTION="qBittorrent Enhanced, based on qBittorrent"
HOMEPAGE="https://github.com/c0re100/qBittorrent-Enhanced-Edition"
SRC_URI="https://github.com/c0re100/qBittorrent-Enhanced-Edition/archive/release-${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/qBittorrent-Enhanced-Edition-release-${PV}"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~x86"
SLOT="0"
IUSE="+dbus +gui webui"
RDEPEND="
>=dev-libs/boost-1.65.0-r1:=
dev-libs/openssl:=
dev-qt/qtcore:5
dev-qt/qtnetwork:5[ssl]
dev-qt/qtsql:5
dev-qt/qtxml:5
>=net-libs/libtorrent-rasterbar-1.2.14:=
sys-libs/zlib
dbus? ( dev-qt/qtdbus:5 )
gui? (
dev-libs/geoip
dev-qt/qtgui:5
dev-qt/qtsvg:5
dev-qt/qtwidgets:5
)
"
DEPEND="${RDEPEND}"
BDEPEND="dev-qt/linguist-tools:5
virtual/pkgconfig"
DOCS=( AUTHORS Changelog CONTRIBUTING.md README.md TODO )
src_configure() {
local mycmakeargs=(
-DDBUS=$(usex dbus)
-DGUI=$(usex gui)
-DWEBUI=$(usex webui)
-DSYSTEMD=ON
-DSYSTEMD_SERVICES_INSTALL_DIR=$(systemd_get_systemunitdir)
-DVERBOSE_CONFIGURE=ON
-DQT6=OFF
)
cmake_src_configure
}
src_install() {
cmake_src_install
einstalldocs
}