blob: 5c32f121e4b536207e472d3ebab9f22922631b8e (
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-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit games
DESCRIPTION="Freedink game data"
HOMEPAGE="http://www.freedink.org/"
SRC_URI="mirror://gnu/freedink/${P}.tar.gz"
LICENSE="ZLIB
CC-BY-SA-3.0
CC-BY-3.0
FreeArt
GPL-2
GPL-3
WTFPL-2
OAL-1.0.1
public-domain"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
src_install() {
emake DESTDIR="${D}" DATADIR="${GAMES_DATADIR}" install
dodoc README.txt README-REPLACEMENTS.txt
prepgamesdirs
}
|