blob: 77af4330c50b6e9cbcc64656382e1b7107b95553 (
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
55
56
57
58
59
60
61
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/tuxpaint/tuxpaint-0.9.16-r1.ebuild,v 1.7 2008/11/04 01:36:57 jmbsvicetto Exp $
inherit eutils gnome2-utils
DESCRIPTION="Drawing program designed for young children"
HOMEPAGE="http://www.tuxpaint.org/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE="nls"
DEPEND="media-libs/libsdl
media-libs/sdl-image
media-libs/sdl-ttf
media-libs/sdl-mixer
>=media-libs/libpng-1.2
>=media-libs/freetype-2
media-libs/netpbm
nls? ( sys-devel/gettext )"
src_unpack() {
unpack ${A}
cd "${S}"
# Sanitize the Makefile and correct a few other issues.
epatch "${FILESDIR}"/${P}-gentoo-r1.patch
}
src_compile() {
local myopts=""
use nls && myopts="${myopts} ENABLE_GETTEXT=1"
# emake may break things
make ${myopts} || die "Compilation failed"
}
src_install () {
local myopts=""
use nls && myopts="${myopts} ENABLE_GETTEXT=1"
make PKG_ROOT="${D}" ${myopts} install || die "Installation failed"
rm -f docs/COPYING.txt docs/INSTALL.txt
dodoc docs/*.txt
}
pkg_postinst() {
gnome2_icon_cache_update
elog ""
elog "For additional graphic stamps, you can emerge the"
elog "media-gfx/tuxpaint-stamps package."
elog ""
}
|