Nils Freydank
fc8c801bab
The version bump isn't really necessary as it does not affect Gentoo at all: „Fixes qTox not starting on macOS Big Sur, and updates dependencies for Windows, Flatpak, and macOS.” Anyways, it doesn't hurt and we need to revbump. Package-Manager: Portage-3.0.13, Repoman-3.0.2 Manifest-Sign-Key: 00EFD31F1B60D5DBADB831C1C0ECE6960E54475B Signed-off-by: Nils Freydank <holgersson@posteo.de>
91 lines
1.8 KiB
Bash
91 lines
1.8 KiB
Bash
# Copyright 1999-2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI="7"
|
|
|
|
inherit cmake gnome2-utils xdg-utils
|
|
|
|
COMMIT_ID=""
|
|
|
|
DESCRIPTION="Most feature-rich GUI for net-libs/tox using Qt5"
|
|
HOMEPAGE="https://github.com/qTox/qTox"
|
|
|
|
if [[ ${PV} == *9999 ]]; then
|
|
EGIT_REPO_URI="https://github.com/qTox/qTox.git"
|
|
inherit git-r3
|
|
else
|
|
if [[ ${PV} == *_p* ]]; then
|
|
SRC_URI="https://github.com/qTox/qTox/archive/${COMMIT_ID}.tar.gz -> ${P}.tar.gz"
|
|
S="${WORKDIR}/qTox-${COMMIT_ID}"
|
|
KEYWORDS="~amd64 ~x86"
|
|
else
|
|
SRC_URI="https://github.com/qTox/qTox/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
KEYWORDS="~amd64 ~x86"
|
|
S="${WORKDIR}/qTox-${PV}"
|
|
fi
|
|
fi
|
|
|
|
LICENSE="GPL-3+"
|
|
SLOT="0"
|
|
IUSE="+auto-away +notification test"
|
|
RESTRICT="!test? ( test )"
|
|
|
|
RDEPEND="
|
|
dev-db/sqlcipher
|
|
dev-libs/libsodium:=
|
|
dev-qt/qtconcurrent:5
|
|
dev-qt/qtcore:5
|
|
dev-qt/qtgui:5[gif,jpeg,png,X]
|
|
dev-qt/qtnetwork:5
|
|
dev-qt/qtopengl:5
|
|
dev-qt/qtsql:5
|
|
dev-qt/qtsvg:5
|
|
dev-qt/qtwidgets:5
|
|
dev-qt/qtxml:5
|
|
media-gfx/qrencode:=
|
|
media-libs/libexif:=
|
|
media-libs/openal
|
|
media-video/ffmpeg:=[webp,v4l]
|
|
net-libs/tox:0/0.2[av]
|
|
notification? ( x11-libs/snorenotify )
|
|
auto-away? (
|
|
x11-libs/libX11
|
|
x11-libs/libXScrnSaver
|
|
)
|
|
"
|
|
DEPEND="${RDEPEND}
|
|
dev-qt/linguist-tools:5
|
|
virtual/pkgconfig
|
|
test? ( dev-qt/qttest:5 )
|
|
"
|
|
|
|
src_prepare() {
|
|
cmake_src_prepare
|
|
|
|
# bug 628574
|
|
if ! use test; then
|
|
sed -i CMakeLists.txt -e "/include(Testing)/d" || die
|
|
sed -i cmake/Dependencies.cmake -e "/find_package(Qt5Test/d" || die
|
|
fi
|
|
}
|
|
|
|
src_configure() {
|
|
local mycmakeargs=(
|
|
-DDESKTOP_NOTIFICATIONS=$(usex notification)
|
|
-DUSE_FILTERAUDIO=OFF
|
|
-DGIT_DESCRIBE="${PV}"
|
|
)
|
|
|
|
cmake-src_configure
|
|
}
|
|
|
|
pkg_postinst() {
|
|
gnome2_icon_cache_update
|
|
xdg_desktop_database_update
|
|
}
|
|
|
|
pkg_postrm() {
|
|
gnome2_icon_cache_update
|
|
xdg_desktop_database_update
|
|
}
|