blob: 87531bf54170a36d1d3c5d4ca9b9029a63c44ae4 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/Imaging/Imaging-1.1.3.ebuild,v 1.4 2003/02/13 11:32:19 vapier Exp $
IUSE="tcltk"
S=${WORKDIR}/${P}
DESCRIPTION="Python Imaging Library (PIL)."
SRC_URI="http://www.pythonware.com/downloads/${P}.tar.gz"
HOMEPAGE="http://www.pythonware.com/downloads/#pil"
DEPEND=">=dev-lang/python-2.0
>=media-libs/jpeg-6a
>=sys-libs/zlib-0.95
tcltk? ( dev-lang/tk )"
RDEPEND=""
SLOT="0"
KEYWORDS="x86 sparc alpha ppc"
LICENSE="as-is"
src_compile() {
#This is a goofy build.
#Build the core imaging library (libImaging.a)
cd ${S}/libImaging
./configure --prefix=/usr \
--host=${CHOST} || die
cp Makefile Makefile.orig
#Not configured by configure
sed \
-e "s:\(JPEGINCLUDE=[[:blank:]]*/usr/\)local/\(include\).*:\1\2:" \
-e "s:\(OPT=[[:blank:]]*\).*:\1${CFLAGS}:" \
Makefile.orig > Makefile
emake || die
#Build loadable python modules
cd ${S}
local scmd=""
#First change all the "/usr/local" to "/usr"
scmd="$scmd s:/usr/local:/usr:g;"
# adjust for USE tcltk
if use tcltk; then
# Find the version of tcl/tk that has headers installed.
# This will be the most recently merged, not necessarily the highest
# version number.
tclv=$(grep TCL_VER /usr/include/tcl.h | sed 's/^.*"\(.*\)".*/\1/')
tkv=$( grep TK_VER /usr/include/tk.h | sed 's/^.*"\(.*\)".*/\1/')
# adjust Setup to match
scmd="$scmd s/-ltcl[0-9.]* -ltk[0-9.]*/-ltcl$tclv -ltk$tkv/;"
else
scmd="$scmd s:\(^_imagingtk\):#\1:;"
fi
sed "$scmd" Setup.in > Setup
#No configure (#$%@!%%)
scmd=""
cp Makefile.pre.in Makefile.pre.in.orig
#change all the "/usr/local" to "/usr" (haven't we been here before)
scmd="$scmd s:/usr/local:/usr:g;"
#fix man paths
scmd="$scmd "'s:^\(MANDIR=.*/\)\(man\):\1share/\2:;'
#Insert make.conf CFLAGS settings
scmd="$scmd "'s:$(OPT)'":${CFLAGS}:;"
sed "$scmd" Makefile.pre.in.orig > Makefile.pre.in
#Now generate a top level Makefile
make -f Makefile.pre.in boot || die
emake || die
}
src_install () {
#grab python verision so ebuild doesn't depend on it
local pv
pv=$(python -V 2>&1 | sed -e 's:Python \([0-9].[0-9]\).*:\1:')
insinto /usr/lib/python$pv/site-packages
doins PIL.pth
insinto /usr/lib/python$pv/site-packages/PIL
doins _imaging.so PIL/*
use tcltk && doins _imagingtk.so
# install headers required by media-gfx/sketch
insinto /usr/include/python$pv
doins libImaging/Imaging.h
doins libImaging/ImPlatform.h
doins libImaging/ImConfig.h
dodoc CHANGES CONTENTS FORMATS README
}
|