blob: 78c9c2c7bc861204583bd2f198f74fe7b0aa7e83 (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="5"
inherit games cmake-utils
DESCRIPTION="Italian card game called briscola"
HOMEPAGE="http://qbriscola.sourceforge.net"
SRC_URI="mirror://sourceforge/${PN}/${PN}-src_${PV}.tar.bz2"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="dev-qt/qtsql:4[sqlite]
dev-qt/qtgui:4"
RDEPEND="${DEPEND}"
S=${WORKDIR}/${PN}
DOCS="README"
src_install() {
cmake-utils_src_install
prepgamesdirs
}
|