blob: d681395bafb1a4c70c3a84b4b5331c6093f33ed0 (
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.5 2009/05/23 11:30:37 nyhm 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
}
|