blob: 62f151a4c8e59b81937af28fb005a98a5b9fba32 (
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
45
46
47
48
49
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-kids/gtans/gtans-1.2.ebuild,v 1.11 2006/10/12 23:19:28 wormo Exp $
inherit toolchain-funcs games
DESCRIPTION="The Tangram is a chinese puzzle of shapes"
HOMEPAGE="http://gtans.sourceforge.net/"
SRC_URI="mirror://sourceforge/gtans/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE="nls"
RDEPEND="=x11-libs/gtk+-1.2*
nls? ( virtual/libintl )"
DEPEND="${RDEPEND}
nls? ( sys-devel/gettext )"
src_unpack() {
unpack ${A}
cd "${S}"
sed -i \
-e "/^CC/s:gcc:$(tc-getCC):" \
-e "/^CFLG/s:-O2:${CFLAGS}:" \
-e "/^LDFLG/s:$: ${LDFLAGS}:" \
-e '/$(INSTALL)/s:-s::' \
-e "/^HOMEDIR/s:=.*:=${GAMES_DATADIR}/${PN}/:" \
-e "/^EXECDIR/s:=.*:=${GAMES_BINDIR}/:" \
makefile || die "sed failed"
sed -i 's:/man/:/share/man/:' misc/Makefile \
|| die "sed misc/Makefile failed"
if ! use nls ; then
sed -i \
-e '/DTGTXT/d' \
-e '/cd po/d' \
makefile || die "sed nls failed"
fi
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc AUTHORS HISTORY
prepgamesdirs
}
|