37 lines
820 B
Bash
37 lines
820 B
Bash
# Copyright 1999-2013 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/net-news/quiterss/quiterss-0.12.3.ebuild,v 1.5 2013/04/17 08:47:05 pinkbyte Exp $
|
|
|
|
EAPI=5
|
|
|
|
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.bz2"
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
|
|
IUSE="debug"
|
|
|
|
DEPEND="dev-db/sqlite:3
|
|
dev-qt/qtcore:4
|
|
dev-qt/qtgui:4
|
|
dev-qt/qtsql:4[sqlite]
|
|
dev-qt/qtwebkit:4"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
S="${WORKDIR}/${MY_P}"
|
|
|
|
DOCS=( AUTHORS HISTORY_EN HISTORY_RU README )
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}/${P}-unbundle-sqlite.patch"
|
|
)
|
|
|
|
src_configure() {
|
|
eqmake4 PREFIX="${EPREFIX}/usr"
|
|
}
|