net-news/rssguard: version bump to 3.4.1.

Closes: https://github.com/gentoo/gentoo/pull/5271
This commit is contained in:
soredake
2017-08-02 01:35:02 +03:00
committed by Patrice Clement
parent d3b99ff5d9
commit e30c8eff08
3 changed files with 58 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST rssguard-3.3.5.tar.gz 5310573 SHA256 c8f9d05d498e63f5654dca2fc27834403d6cd76f078639a5d6e1b2acbc6e81bf SHA512 3d80cffa20f0f5f625907b0245a09ada18d56a190abddf2bcdc9eaa199867e29b68d445e12eec0dc544469e8ead4df2c6753da634346bf60e0913bdae41951be WHIRLPOOL efc16b622f3a0ddccee05c0ff5ba97933b170a8e1b713bf4cd81baeda745e70c88acd34502a372a34df339ab210b929f331609f022be3d5dc88cb9acc74de697
DIST rssguard-3.4.1.tar.gz 5128550 SHA256 709a92daef6cacb53983b42684f1d60eed3b7462a14403a2dac6cdb299a88bd4 SHA512 0f60bc7f1d000ec8e0f813cccf6235602b9a8f25b833b2bbf094601a0bfdeb5a7dfe7a0745f625812c1509b8489c45141fa51206175968897b394f942f4e6e2c WHIRLPOOL 826db0559456988d2b85da1968863ad39cd4f34a21626db27a2c4a45669e4badb07f160c870dfef36b36f03e57fe5efc12db8e1969ed7f17d87f199f6c3af210

View File

@@ -1,6 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>fdsfgs@krutt.org</email>
<name>soredake</name>
</maintainer>
<maintainer type="project">
<email>proxy-maint@gentoo.org</email>
<name>Proxy Maintainers</name>
</maintainer>
<upstream>
<remote-id type="github">martinrotter/rssguard</remote-id>
</upstream>

View File

@@ -0,0 +1,49 @@
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit qmake-utils
DESCRIPTION="A tiny RSS and Atom feed reader"
HOMEPAGE="https://github.com/martinrotter/rssguard"
SRC_URI="https://github.com/martinrotter/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64"
IUSE="debug webengine"
RDEPEND="
>=dev-qt/qtcore-5.6:5
>=dev-qt/qtgui-5.6:5
>=dev-qt/qtnetwork-5.6:5
>=dev-qt/qtsql-5.6:5
>=dev-qt/qtwidgets-5.6:5
>=dev-qt/qtxml-5.6:5
webengine? ( >=dev-qt/qtwebengine-5.6:5[widgets] )
"
DEPEND="${RDEPEND}
>=dev-qt/linguist-tools-5.6:5
"
src_prepare() {
default
# remove bundled qtbase translations
rm -v localization/qtbase* || die
sed -i -e "s|localization/qtbase_[a-z][a-z].ts||g" ${PN}.pro || die
}
src_configure() {
eqmake5 \
CONFIG+=$(usex debug debug release) \
USE_WEBENGINE=$(usex webengine true false) \
LRELEASE_EXECUTABLE="$(qt5_get_bindir)/lrelease" \
PREFIX="${EPREFIX}"/usr \
INSTALL_ROOT=.
}
src_install() {
emake install INSTALL_ROOT="${D}"
}