diff options
author | Ben de Groot <yngwin@gentoo.org> | 2012-10-29 12:21:42 +0000 |
---|---|---|
committer | Ben de Groot <yngwin@gentoo.org> | 2012-10-29 12:21:42 +0000 |
commit | ac17f80463022fb715609b0acc26b46578196ff1 (patch) | |
tree | d682edfc7315dd7a35fd9e570db7882227bfa069 /net-news | |
parent | Version bump cluster-glue-1.0.11 (diff) | |
download | gentoo-2-ac17f80463022fb715609b0acc26b46578196ff1.tar.gz gentoo-2-ac17f80463022fb715609b0acc26b46578196ff1.tar.bz2 gentoo-2-ac17f80463022fb715609b0acc26b46578196ff1.zip |
Version bump. Make desktop file validate. Add epatch_user.
(Portage version: 2.2.0_alpha142/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'net-news')
-rw-r--r-- | net-news/rssguard/ChangeLog | 7 | ||||
-rw-r--r-- | net-news/rssguard/rssguard-1.1.2.ebuild | 31 |
2 files changed, 37 insertions, 1 deletions
diff --git a/net-news/rssguard/ChangeLog b/net-news/rssguard/ChangeLog index 9fcfba369700..28bfced09c71 100644 --- a/net-news/rssguard/ChangeLog +++ b/net-news/rssguard/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-news/rssguard # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-news/rssguard/ChangeLog,v 1.1 2012/06/30 09:11:12 yngwin Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-news/rssguard/ChangeLog,v 1.2 2012/10/29 12:21:42 yngwin Exp $ + +*rssguard-1.1.2 (29 Oct 2012) + + 29 Oct 2012; Ben de Groot <yngwin@gentoo.org> +rssguard-1.1.2.ebuild: + Version bump. Make desktop file validate. Add epatch_user. *rssguard-1.1.1 (30 Jun 2012) diff --git a/net-news/rssguard/rssguard-1.1.2.ebuild b/net-news/rssguard/rssguard-1.1.2.ebuild new file mode 100644 index 000000000000..dd94d4700a10 --- /dev/null +++ b/net-news/rssguard/rssguard-1.1.2.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-news/rssguard/rssguard-1.1.2.ebuild,v 1.1 2012/10/29 12:21:42 yngwin Exp $ + +EAPI=4 +inherit cmake-utils + +DESCRIPTION="A tiny RSS and Atom feed reader" +HOMEPAGE="http://code.google.com/p/rss-guard/" +SRC_URI="http://rss-guard.googlecode.com/files/${P}-src.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64" +IUSE="dbus" + +DEPEND="x11-libs/qt-core:4 + x11-libs/qt-gui:4 + x11-libs/qt-webkit:4 + x11-libs/qt-xmlpatterns:4 + x11-themes/hicolor-icon-theme + dbus? ( x11-libs/qt-dbus:4 )" +RDEPEND="${DEPEND}" + +S="${WORKDIR}/rss-guard" +DOCS=( resources/text/AUTHORS resources/text/CHANGELOG ) + +src_prepare() { + sed -e '/Encoding/d' -i resources/desktops/${PN}.desktop || die 'sed failed' + epatch_user +} |