blob: 19af5499dc6ef1659e15c6d68321591d2d7754d6 (
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-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header$
inherit enlightenment games
DESCRIPTION="EFL based solitaire game"
HOMEPAGE="http://www.mowem.de/elitaire"
DEPEND="x11-libs/ewl
media-libs/edje
dev-libs/eet
x11-libs/evas
x11-libs/ecore
x11-libs/esmart"
pkg_setup() {
games_pkg_setup
enlightenment_pkg_setup
}
src_compile() {
export MY_ECONF="
--with-scores-group=${GAMES_GROUP}
--with-scores-user=${GAMES_USER}
--localstatedir=${GAMES_STATEDIR}
"
enlightenment_src_compile
}
|