blob: fdc910f11a40c40339a16c5acbf96874b1b526ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-news/quiterss/quiterss-0.10.3.ebuild,v 1.1 2012/10/29 11:59:57 yngwin Exp $
EAPI=4
inherit qt4-r2
MY_P=QuiteRSS-${PV}-src
DESCRIPTION="A Qt4-based RSS/Atom feed reader"
HOMEPAGE="http://code.google.com/p/quite-rss/"
SRC_URI="http://quite-rss.googlecode.com/files/${MY_P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="debug"
DEPEND="x11-libs/qt-core:4
x11-libs/qt-gui:4
x11-libs/qt-sql:4
x11-libs/qt-webkit:4"
RDEPEND="${DEPEND}"
S=${WORKDIR}/${MY_P}
DOCS=(AUTHORS HISTORY_EN HISTORY_RU README)
src_prepare() {
epatch "${FILESDIR}"/${PN}-unbundle-sqlite.patch # bug 436230
epatch_user
}
|