blob: 5aeacb6e7afc8cf58e34f640a8eb3d59706e2bbb (
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
43
44
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-mud/ytin/ytin-1.83.5.ebuild,v 1.6 2004/07/01 11:22:08 eradicator Exp $
inherit games
DESCRIPTION="yet another TinTin++"
HOMEPAGE="http://ytin.sourceforge.net/"
SRC_URI="mirror://sourceforge/ytin/${PN}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE=""
RDEPEND="virtual/libc
sys-libs/ncurses"
DEPEND="${RDEPEND}
>=sys-apps/sed-4"
S="${WORKDIR}/${PN}"
src_unpack() {
unpack ${A}
cd ${S}
sed -i \
-e 's:extern int errno;::' utils.cpp \
|| die "sed utils.cpp failed"
echo '#include <errno.h>' >> tintin.h
sed -i \
-e '/^LIBS = /s:=:= -lstdc++ :' Makefile.in \
|| die "sed Makefile.in failed"
}
src_compile() {
econf || die
emake CFLAGS="${CFLAGS}" || die "emake died"
}
src_install() {
dogamesbin tt++ || die
dodoc ChangeLog README.1st docs/*.txt
prepgamesdirs
}
|