summaryrefslogtreecommitdiff
blob: d0e6b20a8ddc88aaa5b99513624be613d361c6ba (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
31
32
33
34
35
36
37
38
39
40
41
42
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

inherit eutils games

DESCRIPTION="a reimplementation of Sierra's Adventure Game Interpreter"
HOMEPAGE="http://www.dagii.org/"
SRC_URI="http://www.dagii.org/dist/${P}.tar.bz2"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~ppc ~x86 ~x86-fbsd"
IUSE="png"

DEPEND="png? ( >=media-libs/libpng-1.2.8 )
	>=media-libs/libsdl-1.2.9
	>=sys-libs/zlib-1.2.0"
RDEPEND="${DEPEND}"

src_compile() {
	egamesconf $(use_enable png libpng ) || die "econf failed"
	emake dep || die "emake dep failed"
	emake || die "emake failed"
}

src_install() {
	dogamesbin src/${PN}
	dodoc README.txt
	doicon "${FILESDIR}/${PN}.xpm"
	make_desktop_entry ${PN} ${PN} ${PN}.xpm "Game;AdventureGame"
	prepgamesdirs
}

pkg_postinst() {
	elog "Dagii looks for games either in the user's current directory"
	elog "or in a location passed as a path in the command line"
	elog "For example: \"$ dagii /usr/share/games/kq3\""
	elog "Also, dagii can play games which are stored in .zip archives."
	echo
	games_pkg_postinst
}