summaryrefslogtreecommitdiff
blob: 16356b3ea2ab5772589a421274cfaf7fe3bb5975 (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
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-devel/spython/spython-2.0-r7.ebuild,v 1.20 2004/06/24 22:49:34 agriffis Exp $

IUSE="readline build"

S=${WORKDIR}/Python-2.0
S2=${WORKDIR}/python-fchksum-1.1
DESCRIPTION="A really great language -- minimalist python environment"
SRC_URI="http://www.python.org/ftp/python/2.0/BeOpen-Python-2.0.tar.bz2
	 http://www.azstarnet.com/~donut/programs/fchksum/python-fchksum-1.1.tar.gz"

HOMEPAGE="http://www.python.org http://www.azstarnet.com/~donut/programs/fchksum/"
SLOT="0"
LICENSE="PYTHON"
KEYWORDS="x86 sparc"

DEPEND=">=sys-devel/autoconf-2.13
	>=sys-libs/zlib-1.1.3
	readline? ( >=sys-libs/readline-4.1
		>=sys-libs/ncurses-5.2 )"

PROVIDE="virtual/python"

src_unpack() {

	unpack BeOpen-Python-2.0.tar.bz2
	cd ${S}
	patch -p1 < ${FILESDIR}/${PF}-gentoo.diff
	autoconf

	cd ${S}/Modules

	cp -a ${FILESDIR}/pfconfig.h .
	unpack python-fchksum-1.1.tar.gz

	echo '*static*' >> Setup.local

	echo "zlib zlibmodule.c -lz" >> Setup.local
	if use readline
	then
		 echo "readline readline.c -lreadline -lncurses" >> Setup.local
	fi

	echo "fchksum fchksum.c md5_2.c" >> Setup.local

	cd python-fchksum-1.1
	cp -a md5.h ../md5_2.h
	sed -e 's:"md5.h":"md5_2.h":' md5.c > ../md5_2.c
	sed -e 's:"md5.h":"md5_2.h":' fchksum.c > ../fchksum.c

}

src_compile() {

	 export LDFLAGS=-static

	 ./configure --prefix=/usr --without-libdb || die

	 #libdb3 support is available from http://pybsddb.sourceforge.net/; the one
	 #included with python is for db 1.85 only.

	 cp Makefile Makefile.orig
	 sed -e "s:-g -O2:${CFLAGS}:" Makefile.orig > Makefile
	 cd ${S}/Modules
	 cp Makefile.pre Makefile.orig
	 sed -e "s:MODOBJS=:MODOBJS=fchksum.o md5_2.o:" \
	 Makefile.orig > Makefile.pre

	 # Parallel make does not work
	 cd ${S}
	 make || die
}

src_install() {
	 dodir /usr/share/man
	 make install prefix=${D}/usr MANDIR=${D}/usr/share/man || die
	dosym spython /usr/bin/python

	rm -rf ${D}/usr/include
	rm -rf ${D}/usr/lib/${PN}${PV}/config

	dodir /usr/lib/python${PV}/site-packages
	rm -rf ${D}/usr/lib/spython${PV}/site-packages
	dosym ../python${PV}/site-packages /usr/lib/spython${PV}/site-packages

	 if use build
	 then
		rm -rf ${D}/usr/share/man
		rm -rf ${D}/usr/include
	 	cd ${D}/usr/lib/spython2.0
		#remove test and lib-tk directory; we can do much more cleaning too.
		rm -rf test lib-tk
		#clean out byte-compiled stuff.	They aren't required, and doing so saves space
		#cd to root so "find" works properly.
		cd ${D}
		local x
		for x in `find -iname '*.pyc'; find -iname '*.pyo'`
		do
			rm x
		done
	fi
}

pkg_preinst() {
	# keep portage from breaking from this move
	for file in ${ROOT}/usr/lib/python2.0/{xpak,portage}.py
	do
	 [ -f ${file} ] || continue
		cp -a ${file} ${ROOT}/usr/lib/python2.0/site-packages
		rm -f ${file}*	#remove .pyc stuff too
	done
}