blob: 25e37270d7ec90530b1fbf6f6795549a5ea61cd6 (
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-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-puzzle/concentration/concentration-1.2-r1.ebuild,v 1.3 2010/07/11 12:28:49 fauli Exp $
EAPI=2
inherit eutils games
DESCRIPTION="The classic memory game with some new life"
HOMEPAGE="http://www.happypenguin.org/show?Concentration"
SRC_URI="mirror://gentoo/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~ppc x86"
IUSE=""
DEPEND="media-libs/libsdl[audio,video]
media-libs/sdl-mixer[vorbis]
media-libs/sdl-image[png]
media-libs/sdl-ttf"
PATCHES=( "${FILESDIR}"/${P}-gentoo.patch )
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
newicon pics/set1/19.png ${PN}.png
make_desktop_entry ${PN} Concentration
dodoc AUTHORS ChangeLog
prepgamesdirs
}
|