blob: fb5af290bc86f56bdc22b75300623cc55ecf6c96 (
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
|
# Copyright 1999-2009 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-r2.ebuild,v 1.5 2009/01/12 16:54:04 mr_bones_ Exp $
EAPI=2
inherit base eutils
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"
RDEPEND="media-libs/imlib[gtk]
x11-libs/libXext
x11-libs/libX11
x11-libs/libXi
x11-libs/gtk+:1
nls? ( virtual/libintl )"
DEPEND="${RDEPEND}
x11-proto/xextproto
x11-proto/xproto
nls? ( sys-devel/gettext )"
PATCHES=( "${FILESDIR}"/${P}-gentoo.patch )
src_configure() {
local myconf
use nls || myconf="${myconf} --disable-nls"
# not an autoconf script
./configure \
--prefix=/usr \
--infodir=/usr/share/info \
--mandir=/usr/share/man \
${myconf} || die "configure failed"
}
src_install () {
emake \
prefix="${D}/usr" \
infodir="${D}/usr/share/info" \
mandir="${D}/usr/share/man" install \
|| die "emake install failed"
newicon scenes/Aquarium.scene.xpm ${PN}.xpm
make_desktop_entry ${PN} Stickers
}
|