mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 17:09:10 -07:00
net-p2p/qbittorrent: remove 3.3.7
Package-Manager: Portage-2.3.5, Repoman-2.3.2
This commit is contained in:
@@ -1,3 +1,2 @@
|
||||
DIST qbittorrent-3.3.10.tar.xz 2959380 SHA256 2c657ceacdc84033da044a0a9ecba7e0fdb35858324dc097546f989166f1a8d2 SHA512 4f4e7071fa6db75ed2b5fbf5f17d5a9634aa5f2ed9fbcec52e6a0112967f5832e998384c7ff4962b1e00a0f847fa5d39bcdba36f997b5b895c7688e0dd247516 WHIRLPOOL 950b49d7a15aa7cf16dfe2bbfba72959e91f21f85ba589ce85be370b8b21c03fb389d404ed46ad2c802e3a57660094fe644b20df9bc3a0714cb5d9ea965e1b97
|
||||
DIST qbittorrent-3.3.11.tar.xz 2986312 SHA256 4892ac5ed4bde2ed325fb67456698e703bb933b9eb1d146598259f4e2154a760 SHA512 1f7d4a40b7f966e710d4cbed721074d53b0478ed1970932dee32b73ea210251cbd3807912e9c9a00371fa41f5c947c59443bbda4925b022fbe88fc23b3f225c5 WHIRLPOOL 5fb2e0456d81b104e5545329a301040c81a18b25798e831ab8f780f8ee19d09c12f5315d5581243e141f7a00eb938ab449927871c70a4bf5e9c2e6dd71d4aca3
|
||||
DIST qbittorrent-3.3.7.tar.xz 2884792 SHA256 72dc824a90fadc0825e6be6f1c215e38f976262c7f83b625061d542b2b664c40 SHA512 c33ae47bd78e79197fd499e9541ce20a30c0ee582c6696f72b792a46324a42bffbe2140f6dcb89c05d9366b7332845e108c661c0458e94ca5739cfc71be4dafc WHIRLPOOL 753efd5e30c725d77e241bfc4cee63f089109b4a85bab5224e5445d141605c07bb8873531245d17f577252ae1d90041457848e9290ecb2384d96f2a20bbf6f66
|
||||
|
||||
@@ -1,86 +0,0 @@
|
||||
# Copyright 1999-2016 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
inherit flag-o-matic qmake-utils
|
||||
|
||||
DESCRIPTION="BitTorrent client in C++ and Qt"
|
||||
HOMEPAGE="http://www.qbittorrent.org/"
|
||||
|
||||
if [[ ${PV} == *9999 ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://github.com/${PN}/qBittorrent.git"
|
||||
else
|
||||
MY_P=${P/_}
|
||||
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.xz"
|
||||
KEYWORDS="~amd64 arm ~ppc64 ~x86"
|
||||
S=${WORKDIR}/${MY_P}
|
||||
fi
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
IUSE="+dbus debug +qt5 webui +X"
|
||||
REQUIRED_USE="
|
||||
dbus? ( X )
|
||||
"
|
||||
|
||||
RDEPEND="
|
||||
dev-libs/boost:=
|
||||
>=net-libs/libtorrent-rasterbar-1.0.6
|
||||
sys-libs/zlib
|
||||
!qt5? (
|
||||
>=dev-libs/qjson-0.8.1[qt4(+)]
|
||||
dev-qt/qtcore:4[ssl]
|
||||
>=dev-qt/qtsingleapplication-2.6.1_p20130904-r1[qt4,X?]
|
||||
dbus? ( dev-qt/qtdbus:4 )
|
||||
X? ( dev-qt/qtgui:4 )
|
||||
)
|
||||
qt5? (
|
||||
dev-qt/qtconcurrent:5
|
||||
dev-qt/qtcore:5
|
||||
dev-qt/qtnetwork:5[ssl]
|
||||
>=dev-qt/qtsingleapplication-2.6.1_p20130904-r1[qt5,X?]
|
||||
dev-qt/qtxml:5
|
||||
dbus? ( dev-qt/qtdbus:5 )
|
||||
X? (
|
||||
dev-qt/qtgui:5
|
||||
dev-qt/qtwidgets:5
|
||||
)
|
||||
)
|
||||
"
|
||||
DEPEND="${RDEPEND}
|
||||
qt5? ( dev-qt/linguist-tools:5 )
|
||||
virtual/pkgconfig
|
||||
"
|
||||
|
||||
DOCS=(AUTHORS Changelog CONTRIBUTING.md README.md TODO)
|
||||
|
||||
src_configure() {
|
||||
# workaround build issue with older boost
|
||||
# https://github.com/qbittorrent/qBittorrent/issues/4112
|
||||
if has_version '<dev-libs/boost-1.58'; then
|
||||
append-cppflags -DBOOST_NO_CXX11_REF_QUALIFIERS
|
||||
fi
|
||||
|
||||
econf \
|
||||
--with-qjson=system \
|
||||
--with-qtsingleapplication=system \
|
||||
$(use_enable dbus qt-dbus) \
|
||||
$(use_enable debug) \
|
||||
$(use_enable webui) \
|
||||
$(use_enable X gui) \
|
||||
$(use_enable !X systemd) \
|
||||
$(use_with !qt5 qt4)
|
||||
|
||||
if use qt5; then
|
||||
eqmake5
|
||||
else
|
||||
eqmake4
|
||||
fi
|
||||
}
|
||||
|
||||
src_install() {
|
||||
emake INSTALL_ROOT="${D}" install
|
||||
einstalldocs
|
||||
}
|
||||
Reference in New Issue
Block a user