blob: d60a427968381012bbe035d3cdad14bc89c2de14 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/gimp/gimp-1.3.15.ebuild,v 1.6 2003/07/03 23:54:14 liquidx Exp $
IUSE="doc python perl aalib png jpeg tiff gtkhtml"
inherit debug flag-o-matic
S=${WORKDIR}/${P}
DESCRIPTION="Development series of Gimp"
SRC_URI="ftp://ftp.gimp.org/pub/gimp/v1.3/v${PV}/${P}.tar.bz2"
HOMEPAGE="http://www.gimp.org/"
SLOT="1.4"
LICENSE="GPL-2"
KEYWORDS="~x86 ~ppc"
replace-flags -Os -O2
MAKEOPTS="${MAKEOPTS} -j1"
RDEPEND=">=x11-libs/gtk+-2.2
>=x11-libs/pango-1.2
>=dev-libs/glib-2.2
gtkhtml? ( =gnome-extra/libgtkhtml-2* )
png? ( >=media-libs/libpng-1.2.1 )
jpeg? ( >=media-libs/jpeg-6b-r2 )
tiff? ( >=media-libs/tiff-3.5.7 )
>=media-libs/libart_lgpl-2.3.8-r1
aalib? ( media-libs/aalib )
python? ( >=dev-lang/python-2.2
>=dev-python/pygtk-1.99.13 )
perl? ( dev-lang/perl )"
DEPEND="${RDEPEND}
>=dev-util/pkgconfig-0.12.0
sys-devel/gettext
doc? ( >=dev-util/gtk-doc-1 )"
src_compile() {
# workaround portage variable leakage
local AA
local myconf
# Strip out -fomit-frame-pointer for k6's
is-flag "-march=k6*" && filter-flags "-fomit-frame-pointer"
# gimp uses inline functions (plug-ins/common/grid.c) (#23078)
filter-flags "-fno-inline"
econf ${myconf} \
`use_enable doc gtk-doc` \
`use_enable python` \
`use_enable perl` \
`use_with png libpng` \
`use_with jpeg libjpeg` \
`use_with tiff libtiff` \
--disable-print || die
emake || die
}
src_install() {
# workaround portage variable leakage
local AA
make DESTDIR=${D} install || die
dodoc AUTHORS COPYING ChangeL* HACKING INSTALL MAINTAINERS NEWS PLUGIN_MAINTAINERS README* TODO*
# fix desktop link in the right place
dodir /usr/share/applications
rm ${D}/usr/share/gimp/1.3/misc/gimp-1.3.desktop
mv ${D}/usr/share/gimp/1.3/misc/gimp.desktop ${D}/usr/share/applications/gimp-1.3.desktop
}
pkg_postinst() {
ewarn "There have been changes to the gtkrc file."
ewarn
ewarn "You are strongly advised to remove the ~/.gimp-1.3 directory"
ewarn "and perform a fresh user installation if you have been"
ewarn "running a gimp-1.3 below minor version 11"
}
|