diff options
author | 2011-12-13 20:34:44 +0000 | |
---|---|---|
committer | 2011-12-13 20:34:44 +0000 | |
commit | 56c4a285a51b8b3b203e39f640a6e918c3e28e9f (patch) | |
tree | 15199e23b29683b554b3ae372e95e82aaca7faa4 /net-news/liferea/liferea-1.8.0.ebuild | |
parent | Fix building rfc-index by Hartmut Figge, and thanks to Victor for the patch (... (diff) | |
download | gentoo-2-56c4a285a51b8b3b203e39f640a6e918c3e28e9f.tar.gz gentoo-2-56c4a285a51b8b3b203e39f640a6e918c3e28e9f.tar.bz2 gentoo-2-56c4a285a51b8b3b203e39f640a6e918c3e28e9f.zip |
Version bump to 1.8.0, bug #394451. This is now upstream's current stable branch
(Portage version: 2.1.10.11/cvs/Linux i686)
Diffstat (limited to 'net-news/liferea/liferea-1.8.0.ebuild')
-rw-r--r-- | net-news/liferea/liferea-1.8.0.ebuild | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/net-news/liferea/liferea-1.8.0.ebuild b/net-news/liferea/liferea-1.8.0.ebuild new file mode 100644 index 000000000000..41be2e2079d0 --- /dev/null +++ b/net-news/liferea/liferea-1.8.0.ebuild @@ -0,0 +1,66 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-news/liferea/liferea-1.8.0.ebuild,v 1.1 2011/12/13 20:34:44 vostorga Exp $ + +EAPI=4 + +GCONF_DEBUG=no + +inherit eutils gnome2 pax-utils + +MY_P=${P/_/-} + +DESCRIPTION="News Aggregator for RDF/RSS/CDF/Atom/Echo feeds" +HOMEPAGE="http://liferea.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" +IUSE="ayatana libnotify" + +RDEPEND=">=x11-libs/gtk+-2.18.0:2 + >=dev-libs/glib-2.24.0:2 + >=x11-libs/pango-1.4.0 + >=gnome-base/gconf-1.1.9:2 + dev-libs/json-glib + dev-libs/libunique:1 + >=dev-libs/libxml2-2.6.27:2 + >=dev-libs/libxslt-1.1.19 + >=dev-db/sqlite-3.6.10:3 + >=net-libs/libsoup-2.28.2:2.4 + >=net-libs/webkit-gtk-1.2.2:2 + ayatana? ( dev-libs/libindicate ) + libnotify? ( >=x11-libs/libnotify-0.3.2 )" +DEPEND="${RDEPEND} + dev-util/intltool + dev-util/pkgconfig" + +DOCS="AUTHORS ChangeLog README" + +S=${WORKDIR}/${MY_P} + +pkg_setup() { + G2CONF="${G2CONF} + --enable-sm + --disable-schemas-install + $(use_enable ayatana libindicate) + $(use_enable libnotify)" +} + +src_prepare() { + gnome2_src_prepare +} + +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 funcitonality of this package" + einfo "You should consider installing these packages:" + einfo " dev-libs/dbus-glib" + einfo " net-misc/networkmanager" +} |