blob: 3ff7158a63791055f99a263afd7ba2b077c788bd (
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/gimp/gimp-9999.ebuild,v 1.35 2011/04/04 19:57:55 scarabeus Exp $
EAPI="3"
PYTHON_DEPEND="python? 2:2.5"
inherit git eutils gnome2 fdo-mime multilib python
EGIT_REPO_URI="git://git.gnome.org/gimp"
DESCRIPTION="GNU Image Manipulation Program"
HOMEPAGE="http://www.gimp.org/"
SRC_URI=""
LICENSE="GPL-3"
SLOT="2"
KEYWORDS=""
IUSE="alsa aalib altivec curl dbus debug doc exif gnome jpeg lcms mmx mng pdf png python smp sse svg tiff webkit wmf"
RDEPEND=">=dev-libs/glib-2.18.1:2
>=x11-libs/gtk+-2.12.5:2
>=x11-libs/pango-1.18.0
x11-libs/libXpm
>=media-libs/freetype-2.1.7
>=media-libs/fontconfig-2.2.0
sys-libs/zlib
dev-libs/libxml2:2
dev-libs/libxslt
x11-misc/xdg-utils
x11-themes/hicolor-icon-theme
>=media-libs/babl-0.1.4
>=media-libs/gegl-0.1.6
aalib? ( media-libs/aalib )
alsa? ( media-libs/alsa-lib )
curl? ( net-misc/curl )
dbus? ( dev-libs/dbus-glib )
gnome? ( gnome-base/gvfs )
webkit? ( net-libs/webkit-gtk:2 )
jpeg? ( virtual/jpeg:0 )
exif? ( >=media-libs/libexif-0.6.15 )
lcms? ( media-libs/lcms:0 )
mng? ( media-libs/libmng )
pdf? ( >=app-text/poppler-0.12.3-r3[cairo] )
png? ( >=media-libs/libpng-1.2.2 )
python? ( >=dev-python/pygtk-2.10.4:2 )
tiff? ( >=media-libs/tiff-3.5.7 )
svg? ( >=gnome-base/librsvg-2.8.0:2 )
wmf? ( >=media-libs/libwmf-0.2.8 )"
DEPEND="${RDEPEND}
>=dev-util/pkgconfig-0.12.0
>=dev-util/intltool-0.40
>=sys-devel/gettext-0.17
doc? ( >=dev-util/gtk-doc-1 )"
DOCS="AUTHORS ChangeLog* HACKING NEWS README*"
pkg_setup() {
G2CONF="--enable-default-binary \
--with-x \
$(use_with aalib aa) \
$(use_with alsa) \
$(use_enable altivec) \
$(use_with curl libcurl) \
$(use_with dbus) \
--without-hal \
$(use_with gnome gvfs) \
--without-gnomevfs \
$(use_with webkit) \
$(use_with jpeg libjpeg) \
$(use_with exif libexif) \
$(use_with lcms) \
$(use_enable mmx) \
$(use_with mng libmng) \
$(use_with pdf poppler) \
$(use_with png libpng) \
$(use_enable python) \
$(use_enable smp mp) \
$(use_enable sse) \
$(use_with svg librsvg) \
$(use_with tiff libtiff) \
$(use_with wmf)"
if use python; then
python_set_active_version 2
python_pkg_setup
fi
}
src_unpack() {
git_src_unpack
}
src_prepare() {
echo '#!/bin/sh' > py-compile
sed -i -e 's:\$srcdir/configure:#:g' autogen.sh
./autogen.sh
gnome2_src_prepare
}
src_install() {
gnome2_src_install
if use python; then
python_convert_shebangs -r $(python_get_version) "${ED}"
python_need_rebuild
fi
}
pkg_postinst() {
gnome2_pkg_postinst
use python && python_mod_optimize /usr/$(get_libdir)/gimp/2.0/python \
/usr/$(get_libdir)/gimp/2.0/plug-ins
}
pkg_postrm() {
gnome2_pkg_postrm
use python && python_mod_cleanup /usr/$(get_libdir)/gimp/2.0/python \
/usr/$(get_libdir)/gimp/2.0/plug-ins
}
|