blob: c50be32f8e848c604814b47ade47764bf019c638 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-board/hearts/hearts-1.98.ebuild,v 1.4 2009/01/19 14:54:44 tupone Exp $
inherit eutils kde
DESCRIPTION="clone of the hearts game for KDE that comes with Windows"
HOMEPAGE="http://hearts.luispedro.org/index.php"
SRC_URI="mirror://sourceforge/hearts/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
need-kde 3
PATCHES=( ${FILESDIR}/${P}-gcc.patch ${FILESDIR}/${P}-gcc43.patch )
src_install() {
kde_src_install
rm -r "${D}"/usr/share/applnk
make_desktop_entry hearts Hearts
}
|