blob: 1ff51899c0eb164b78250966cdeaa1db3dc54943 (
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-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-mud/tintin/tintin-1.86.ebuild,v 1.6 2004/06/24 23:01:23 agriffis Exp $
inherit games
S="${WORKDIR}/tintin++/src"
DESCRIPTION="(T)he k(I)cki(N) (T)ickin d(I)kumud clie(N)t"
HOMEPAGE="http://mail.newclear.net/tintin/"
SRC_URI="http://mail.newclear.net/tintin/download/tintin++v${PV}.tar.gz"
LICENSE="GPL-2"
KEYWORDS="x86 sparc amd64"
SLOT="0"
IUSE=""
DEPEND="virtual/glibc
sys-libs/readline
sys-libs/ncurses"
src_compile() {
egamesconf || die
emake CFLAGS="$CFLAGS" || die "emake failed"
}
src_install () {
dogamesbin tt++ || die "dobin failed"
dodoc ../{BUGS,CHANGES,CREDITS,FAQ,INSTALL,README,TODO,docs/*}
prepgamesdirs
}
|