blob: 0d89f6a89795941627f513691c24844e4d50ea24 (
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-2003 Gentoo Technologies, Inc.
# 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.1 2003/09/10 19:03:12 vapier Exp $
S=${WORKDIR}/tintin++/src
DESCRIPTION="(T)he k(I)cki(N) (T)ickin d(I)kumud clie(N)t"
SRC_URI="http://mail.newclear.net/tintin/download/tintin++v${PV}.tar.gz"
HOMEPAGE="http://mail.newclear.net/tintin/"
LICENSE="GPL-2"
KEYWORDS="x86 sparc "
SLOT="0"
DEPEND="sys-libs/ncurses"
src_compile() {
./configure \
--host=${CHOST} \
--prefix=/usr \
--infodir=/usr/share/info \
--mandir=/usr/share/man || die "./configure failed"
emake CFLAGS="$CFLAGS" || die
}
src_install () {
dobin tt++
dodoc ../BUGS ../CHANGES ../CREDITS ../FAQ ../INSTALL ../README \
../TODO ../docs/*
}
|