blob: 34cd7059b0f216820e3a1566fec7e79f5345374b (
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
50
51
52
53
54
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-kids/lletters/lletters-0.1.95-r1.ebuild,v 1.10 2004/12/27 23:17:02 mr_bones_ Exp $
inherit games
DESCRIPTION="Game that helps young kids learn their letters and numbers"
HOMEPAGE="http://lln.sourceforge.net/"
SRC_URI="mirror://sourceforge/lln/${PN}-media-0.1.9a.tar.gz
mirror://sourceforge/lln/${P}.tar.gz"
LICENSE="GPL-2"
KEYWORDS="x86 amd64 ~ppc"
SLOT="0"
IUSE="nls"
DEPEND="virtual/x11
media-libs/imlib
=x11-libs/gtk+-1.2*"
RDEPEND="${DEPEND}
nls? ( sys-devel/gettext )"
src_unpack() {
unpack ${P}.tar.gz
cd "${S}"
cp -f "${FILESDIR}/tellhow.h.gentoo" tellhow.h || die "cp failed"
unpack lletters-media-0.1.9a.tar.gz
}
src_compile() {
if [ "${ARCH}" = "amd64" ]; then
aclocal
autoheader
WANT_AUTOMAKE=1.4 automake -a -c
autoconf
libtoolize -c -f
fi
egamesconf $(use_enable nls) || die
# Work around the po/Makefile (bug #43762)
# Why don't people honor DESTDIR?
sed -i \
-e '/^prefix =/ s:/.*:$(DESTDIR)/usr:' po/Makefile \
|| die "sed po/Makefile failed"
emake -C libqdwav || die "emake failed"
emake || die "emake failed"
}
src_install () {
make DESTDIR="${D}" install || die "make install failed"
dodoc AUTHORS CREDITS ChangeLog README* TODO || die "dodoc failed"
prepgamesdirs
}
|