mirror of
https://github.com/gentoo-mirror/gentoo-zh.git
synced 2025-04-18 07:18:58 -04:00
net-p2p/qbittorrent-enhanced: bump version to 4.4.2.10
Signed-off-by: Chi-Tan-Da-Eru <myloveyuxuan@gmail.com>
This commit is contained in:
parent
c1e3b720d4
commit
caab0881aa
@ -2,3 +2,4 @@ DIST qbittorrent-enhanced-4.3.8.10.tar.gz 8520895 BLAKE2B cb2a6a91a37e7e4200275f
|
||||
DIST qbittorrent-enhanced-4.3.9.10.tar.gz 8524373 BLAKE2B 607d2ad4a683e075a3b011cd9ab94868d1fc3c3393282190837fd091542420e31f9b722360245c384f631810877e65d569f401c8c9dc5d0ba0b5b6df13176694 SHA512 48b9eab77a351b522970e995ed631b0f82e59b5cb0cffa3bb0542a19b491b78bc3edcf05a7284de6fb7ab2e7dce83105c9ef4d2950759ae94cc72bdcd75c90b4
|
||||
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
|
||||
|
@ -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
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user