summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2020-01-05 16:10:56 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2020-01-05 17:59:40 +0100
commit5e2a7052bbbc75ee1e31a1f9692fc93201a09a80 (patch)
treec06fa46b50f8c4eb1710626a2a0eb661b21e4752 /net-news
parentnet-news/rssguard: Drop 3.5.5 (diff)
downloadgentoo-5e2a7052bbbc75ee1e31a1f9692fc93201a09a80.tar.gz
gentoo-5e2a7052bbbc75ee1e31a1f9692fc93201a09a80.tar.bz2
gentoo-5e2a7052bbbc75ee1e31a1f9692fc93201a09a80.zip
net-news/rssguard: Drop unmaintained live ebuild
Package-Manager: Portage-2.3.84, Repoman-2.3.20 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'net-news')
-rw-r--r--net-news/rssguard/rssguard-9999.ebuild46
1 files changed, 0 insertions, 46 deletions
diff --git a/net-news/rssguard/rssguard-9999.ebuild b/net-news/rssguard/rssguard-9999.ebuild
deleted file mode 100644
index 06be77e74c1c..000000000000
--- a/net-news/rssguard/rssguard-9999.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit flag-o-matic git-r3 qmake-utils
-
-DESCRIPTION="A tiny RSS and Atom feed reader"
-HOMEPAGE="https://github.com/martinrotter/rssguard"
-EGIT_REPO_URI="https://github.com/martinrotter/rssguard.git"
-EGIT_SUBMODULES=()
-
-LICENSE="GPL-3"
-SLOT="0"
-IUSE="debug webengine"
-MINQT="5.8:5"
-
-RDEPEND="
- >=dev-qt/qtcore-${MINQT}
- >=dev-qt/qtgui-${MINQT}
- >=dev-qt/qtnetwork-${MINQT}
- >=dev-qt/qtsql-${MINQT}
- >=dev-qt/qtwidgets-${MINQT}
- >=dev-qt/qtxml-${MINQT}
- webengine? ( >=dev-qt/qtwebengine-${MINQT}[widgets] )
-"
-DEPEND="${RDEPEND}
- >=dev-qt/linguist-tools-${MINQT}
-"
-
-src_configure() {
- # needed after 8eb640b6f2e140e7c5a1adbe5532cf3662d850b5
- "$(qt5_get_bindir)/lrelease" rssguard.pro || die "lrelease failed"
- # CONFIG+=ltcg is needed because of https://github.com/martinrotter/rssguard/issues/156
- eqmake5 \
- CONFIG+=$(usex debug debug release) \
- $(is-flagq -flto* && echo "CONFIG+=ltcg") \
- USE_WEBENGINE=$(usex webengine true false) \
- LRELEASE_EXECUTABLE="$(qt5_get_bindir)/lrelease" \
- PREFIX="${EPREFIX}"/usr \
- INSTALL_ROOT=.
-}
-
-src_install() {
- emake install INSTALL_ROOT="${D}"
-}