blob: 46b8447715ba07ee536a4bb68df044009f1489bd (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-kids/stickers/stickers-0.1.3-r1.ebuild,v 1.7 2005/08/07 12:51:58 hansmi Exp $
DESCRIPTION="Stickers Book for small children"
HOMEPAGE="http://users.powernet.co.uk/kienzle/stickers/"
SRC_URI="http://users.powernet.co.uk/kienzle/stickers/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE="nls"
DEPEND="virtual/x11
media-libs/imlib
=x11-libs/gtk+-1.2*
nls? ( sys-devel/gettext )"
src_unpack() {
unpack ${A}
# gcc34 fix? (bug #72734)
sed -i \
-e '/ONTRACE/d' "${S}/rc.c" \
|| die "sed failed"
}
src_compile() {
local myconf
use nls || myconf="${myconf} --disable-nls"
./configure \
--prefix=/usr \
--infodir=/usr/share/info \
--mandir=/usr/share/man \
${myconf} || die "configure failed"
emake || die "emake failed"
}
src_install () {
make \
prefix="${D}/usr" \
infodir="${D}/usr/share/info" \
mandir="${D}/usr/share/man" install \
|| die "make install failed"
}
|