diff options
author | Yuri Konotopov <ykonotopov@gnome.org> | 2018-01-16 20:21:22 +0400 |
---|---|---|
committer | Patrice Clement <monsieurp@gentoo.org> | 2018-01-25 23:51:55 +0100 |
commit | 3ccec78b8334a664d31c2c19e7868c964d7dc4cc (patch) | |
tree | cc7356a6fde578348e5d9540fe43d4d1e2918039 /net-news/liferea | |
parent | app-admin/passwordsafe: switch to gtk3 frontend. (diff) | |
download | gentoo-3ccec78b8334a664d31c2c19e7868c964d7dc4cc.tar.gz gentoo-3ccec78b8334a664d31c2c19e7868c964d7dc4cc.tar.bz2 gentoo-3ccec78b8334a664d31c2c19e7868c964d7dc4cc.zip |
net-news/liferea: version bump.
Closes: https://bugs.gentoo.org/644436
Closes: https://github.com/gentoo/gentoo/pull/6878
Diffstat (limited to 'net-news/liferea')
-rw-r--r-- | net-news/liferea/Manifest | 1 | ||||
-rw-r--r-- | net-news/liferea/liferea-1.12.1.ebuild | 70 |
2 files changed, 71 insertions, 0 deletions
diff --git a/net-news/liferea/Manifest b/net-news/liferea/Manifest index 5ebd13370dac..18e1b960a055 100644 --- a/net-news/liferea/Manifest +++ b/net-news/liferea/Manifest @@ -1 +1,2 @@ DIST liferea-1.12-rc3.tar.bz2 1474948 BLAKE2B 2eff01f0494024d40f2a530ba52a29778ea3a90b2ad786c76658451140509e99c81d08a54e50a4688588e79a0638de72aed09fd6c8e856941094760d6498b07e SHA512 cc3b84444ec95c158311d5d2df7bec0c18f83fd4a7a6a38fdc67a613283288a90076892d0e632447b0523674c8182e70723f2fb865f479cd6fe7a22d4d29d8bb +DIST liferea-1.12.1.tar.bz2 1490079 BLAKE2B 56963749537bfe7c1f57e95725756b6da43637c2f6a872482033bafbbbb04539d59f942dbb6e35ceda9426a7311b9ba70d37d0a91fb575287dbfe4f5bbc5b136 SHA512 d3e53127f62e91b23aa042ae6dc655eb174f2823320cc01c4cb2b9074f6547ae9a34f6daeb0c1dfb37dfb9f85890ab67223a863f2679ad15a5c7c7f3840d711a diff --git a/net-news/liferea/liferea-1.12.1.ebuild b/net-news/liferea/liferea-1.12.1.ebuild new file mode 100644 index 000000000000..daae977aa595 --- /dev/null +++ b/net-news/liferea/liferea-1.12.1.ebuild @@ -0,0 +1,70 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python3_{4,5,6} ) + +inherit autotools gnome2 pax-utils python-single-r1 + +MY_P=${P/_/-} +MY_PV=${PV/_/-} + +S=${WORKDIR}/${MY_P} + +DESCRIPTION="News Aggregator for RDF/RSS/CDF/Atom/Echo feeds" +HOMEPAGE="https://lzone.de/liferea/" +SRC_URI="https://github.com/lwindolf/${PN}/releases/download/v${MY_PV}/${MY_P}.tar.bz2" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~arm ~ppc ~x86" +IUSE="" +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +RDEPEND="${PYTHON_DEPS} + >=dev-db/sqlite-3.7.0:3 + >=dev-libs/glib-2.28.0:2 + dev-libs/gobject-introspection + dev-libs/json-glib + >=dev-libs/libpeas-1.0.0[gtk,python,${PYTHON_USEDEP}] + >=dev-libs/libxml2-2.6.27:2 + >=dev-libs/libxslt-1.1.19 + gnome-base/gsettings-desktop-schemas + >=net-libs/libsoup-2.42:2.4 + net-libs/webkit-gtk:4 + x11-libs/gtk+:3 + >=x11-libs/pango-1.4.0" +DEPEND="${RDEPEND} + dev-util/intltool + virtual/pkgconfig" + +S="${WORKDIR}"/${MY_P} + +src_prepare() { + gnome2_src_prepare + + # gnome2_src_prepare calls elibtoolize + if [ -f "${S}"/.elibtoolized ]; then + local AT_NOELIBTOOLIZE="yes" + fi + eautoreconf +} + +src_configure() { + gnome2_src_configure --disable-schemas-compile +} + +src_install() { + gnome2_src_install + + # bug #338213 + # Uses webkit's JIT. Needs mmap('rwx') to generate code in runtime. + # MPROTECT policy violation. Will sit here until webkit will + # get optional JIT. + pax-mark m "${D%/}"/usr/bin/liferea + + einfo "If you want to enhance the functionality of this package," + einfo "you should consider installing:" + einfo " net-misc/networkmanager" +} |