net-im/qtox: Drop package from overlay
This commit is contained in:
parent
d2bd8a4622
commit
3017bc3ff9
@ -1 +0,0 @@
|
||||
DIST qtox-1.17.3_p20210503.tar.gz 4805443 BLAKE2B 57aba349f57287ec8827e241d33e8c15a09f75e3dff5a521b637e3fe67083e4439777cc1eb693922e4c86a2307cb57493c202c5ce55b358da91488c56b1a63b7 SHA512 99a061ac1d093282933708157ce911d6ccd2b3d7e2ecaa2f57cb224ae6e9c5e0a8debc7487a33fc0bbc365842ebcc2c71e6c2ad2fce585e51fa7678d22d13c19
|
@ -1,15 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<email>holgersson@posteo.de</email>
|
||||
<name>Nils Freydank</name>
|
||||
</maintainer>
|
||||
<use>
|
||||
<flag name="auto-away">Add support to set the state depending on desktop activity</flag>
|
||||
<flag name="notification">Adds support for GTK Status Notifier tray backends</flag>
|
||||
</use>
|
||||
<upstream>
|
||||
<remote-id type="github">qTox/qTox</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
@ -1,99 +0,0 @@
|
||||
# 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="8c34fa8f7d34e6555533f392925164b47da12d8c"
|
||||
|
||||
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
|
||||
#KEYWORDS="~amd64 ~x86"
|
||||
SRC_URI="https://github.com/qTox/qTox/archive/${COMMIT_ID}.tar.gz -> ${P}.tar.gz"
|
||||
S="${WORKDIR}/qTox-${COMMIT_ID}"
|
||||
else
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
SRC_URI="https://github.com/qTox/qTox/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
S="${WORKDIR}/qTox-${PV}"
|
||||
fi
|
||||
fi
|
||||
|
||||
LICENSE="GPL-3+"
|
||||
SLOT="0"
|
||||
IUSE="+auto-away +notification spell test"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
BDEPEND="
|
||||
dev-qt/linguist-tools:5
|
||||
virtual/pkgconfig
|
||||
"
|
||||
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
|
||||
)
|
||||
spell? ( kde-frameworks/sonnet )
|
||||
"
|
||||
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=(
|
||||
-DENABLE_STATUSNOTIFIER=$(usex notification)
|
||||
-DDESKTOP_NOTIFICATIONS=$(usex notification)
|
||||
-DSPELL_CHECK=$(usex spell)
|
||||
-DUSE_FILTERAUDIO=OFF
|
||||
-DGIT_DESCRIBE="${PV}"
|
||||
-DPLATFORM_EXTENSIONS=$(usex auto-away)
|
||||
-DUPDATE_CHECK=OFF
|
||||
)
|
||||
|
||||
cmake_src_configure
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
gnome2_icon_cache_update
|
||||
xdg_desktop_database_update
|
||||
}
|
||||
|
||||
pkg_postrm() {
|
||||
gnome2_icon_cache_update
|
||||
xdg_desktop_database_update
|
||||
}
|
@ -4,13 +4,6 @@
|
||||
# author <email address> (LANG=C date -u +"%Y-%m-%d)
|
||||
# reason
|
||||
|
||||
# Nils Freydank <holgersson@posteo.de> (2021-08-24)
|
||||
# qTox requires some extensions that need to be packaged first.
|
||||
# Currently I've got no time to do so, so I'll probably remove
|
||||
# qTox after 2021-10-01.
|
||||
# N.F. (2021-09-19): Fix typo, but still drop in october.
|
||||
net-im/qtox
|
||||
|
||||
# Nils Freydank <holgersson@posteo.de> (2021-08-31)
|
||||
# Packages that I do not use (or use not anymore).
|
||||
# Removal after 2021-10-01.
|
||||
|
Loading…
Reference in New Issue
Block a user