diff options
author | Jon Nelson <jnelson@gentoo.org> | 2002-04-25 02:03:01 +0000 |
---|---|---|
committer | Jon Nelson <jnelson@gentoo.org> | 2002-04-25 02:03:01 +0000 |
commit | de626afb1b8c7aa7e5eded70984824f9831d35d1 (patch) | |
tree | 6f271ce7e41770c0739fe4bb0a6bf9da5dd23e2f /dev-lang | |
parent | add new python-fchksum ebuild (diff) | |
download | historical-de626afb1b8c7aa7e5eded70984824f9831d35d1.tar.gz historical-de626afb1b8c7aa7e5eded70984824f9831d35d1.tar.bz2 historical-de626afb1b8c7aa7e5eded70984824f9831d35d1.zip |
make python build shared objects. Also, depend on fchksum
Diffstat (limited to 'dev-lang')
-rw-r--r-- | dev-lang/python/ChangeLog | 9 | ||||
-rw-r--r-- | dev-lang/python/files/digest-python-2.2-r6 | 1 | ||||
-rw-r--r-- | dev-lang/python/python-2.2-r6.ebuild | 123 |
3 files changed, 132 insertions, 1 deletions
diff --git a/dev-lang/python/ChangeLog b/dev-lang/python/ChangeLog index 475f993d7066..fe6a3f340870 100644 --- a/dev-lang/python/ChangeLog +++ b/dev-lang/python/ChangeLog @@ -1,7 +1,14 @@ # ChangeLog for dev-lang/python # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/dev-lang/python/ChangeLog,v 1.5 2002/04/08 12:36:57 jhhudso Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/python/ChangeLog,v 1.6 2002/04/25 02:03:01 jnelson Exp $ +*python-2.2-r6 (24 Apr 2002) + + 24 Apr 2002; Jon Nelson <jnelson@gentoo.org> python-2.2-r6.ebuild : + + Make python build with shared modules. + Depends on python-fchksum, as fchksum *no longer built in* + *python-2.2-r5 (8 Apr 2002) 8 Apr 2002; Jared H. Hudson <jhhudso@gentoo.org> python-2.2-r5.ebuild : diff --git a/dev-lang/python/files/digest-python-2.2-r6 b/dev-lang/python/files/digest-python-2.2-r6 new file mode 100644 index 000000000000..1a6a57c9f144 --- /dev/null +++ b/dev-lang/python/files/digest-python-2.2-r6 @@ -0,0 +1 @@ +MD5 87febf0780c8e18454022d34b2ca70a0 Python-2.2.tgz 6542443 diff --git a/dev-lang/python/python-2.2-r6.ebuild b/dev-lang/python/python-2.2-r6.ebuild new file mode 100644 index 000000000000..5dd4cc705367 --- /dev/null +++ b/dev-lang/python/python-2.2-r6.ebuild @@ -0,0 +1,123 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Maintainer: Daniel Robbins <drobbins@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/dev-lang/python/python-2.2-r6.ebuild,v 1.1 2002/04/25 02:03:01 jnelson Exp $ + +PYVER_MAJOR="`echo ${PV} | cut -d '.' -f 1`" +PYVER_MINOR="`echo ${PV} | cut -d '.' -f 2`" +S=${WORKDIR}/Python-${PV} +DESCRIPTION="A really great language" +SRC_URI="http://www.python.org/ftp/python/${PV}/Python-${PV}.tgz" + +HOMEPAGE="http://www.python.org" + +DEPEND="virtual/glibc >=sys-libs/zlib-1.1.3 + >=dev-python/python-fchksum-1.6.1 + readline? ( >=sys-libs/readline-4.1 >=sys-libs/ncurses-5.2 ) + berkdb? ( >=sys-libs/db-3 ) + tcltk? ( >=dev-lang/tk-8.0 )" + +RDEPEND="$DEPEND" +PROVIDE="virtual/python" + +SLOT="2.2" + +src_compile() { + # python's config seems to ignore CFLAGS + export OPT=$CFLAGS + + # adjust makefile to install pydoc into ${D} correctly + t=${S}/Makefile.pre.in + cp $t $t.orig || die + sed 's:install-platlib.*:& --install-scripts=$(BINDIR):' $t.orig > $t + + # adjust Setup to include the various modules we need + cd ${S} + # turn **on** shared + scmd="s:#\(\*shared\*\):\1:;" + # adjust for USE readline + if use readline; then + scmd="$scmd s:#\(readline .*\) -ltermcap:\1:;" + scmd="$scmd s:#\(_curses .*\) -lcurses -ltermcap:\1 -lncurses:;" + fi + # 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:# \(_tkinter \):\1:;" + scmd="$scmd s:#\(\t-ltk[0-9.]* -ltcl[0-9.]*\):\t-ltk$tkv -ltcl$tclv:;" + scmd="$scmd s:#\(\t-L/usr/X11R6/lib\):\1:;" + scmd="$scmd s:#\(\t-lX11.*\):\1:;" + scmd="$scmd s:#\(\t-I/usr/X11R6/include\):\1:;" + fi + # adjust for USE berkdb + if use berkdb; then + # patch the dbmmodule to use db3's dbm compatibility code. That way, + # we're depending on db3 rather than old db1. + t=Modules/dbmmodule.c + cp $t $t.orig || die + sed \ + -e '10,25d' \ + -e '26i\' \ + -e '#define DB_DBM_HSEARCH 1\' \ + -e 'static char *which_dbm = "BSD db";\' \ + -e '#include <db3/db.h>' \ + $t.orig > $t + # now fix Setup + scmd="$scmd s:#dbm.*:dbm dbmmodule.c -I/usr/include/db3 -ldb-3.2:;" + fi + # no USE vars to switch off these adjustments: + scmd="$scmd s:#\(_locale .*\):\1:;" # access to ISO C locale support + scmd="$scmd s:#\(syslog .*\):\1:;" # syslog daemon interface + scmd="$scmd s:#\(zlib .*\):\1:;" # This require zlib 1.1.3 (or later). + scmd="$scmd s:#\(termios .*\):\1:;" # Steen Lumholt's termios module + scmd="$scmd s:#\(resource .*\):\1:;" # Jeremy Hylton's rlimit interface + sed "$scmd" Modules/Setup.dist > Modules/Setup + + local myopts + #if we are creating a new build image, we remove the dependency on g++ + if [ "`use build`" -a ! "`use bootstrap`" ] + then + myopts="--with-cxx=no" + fi + ./configure \ + --prefix=/usr \ + --without-libdb \ + --infodir='${prefix}'/share/info \ + --mandir='${prefix}'/share/man $myopts + assert "Configure failed" + # kill the -DHAVE_CONFIG_H flag + mv Makefile Makefile.orig + sed -e 's/-DHAVE_CONFIG_H//' Makefile.orig > Makefile + #emake || die "Parallel make failed" + make || die "Parallel make failed" +} + +src_install() { + dodir /usr + make install prefix=${D}/usr || die + rm "${D}/usr/bin/python" + dosym python${PYVER_MAJOR} /usr/bin/python + dosym python${PYVER_MAJOR}.${PYVER_MINOR} /usr/bin/python${PYVER_MAJOR} + dodoc README + + # install our own custom python-config + exeinto /usr/bin + newexe ${FILESDIR}/python-config-${PYVER} python-config + + # seems like the build do not install Makefile.pre.in anymore + insinto /usr/lib/python${PYVER}/config + doins ${S}/Makefile.pre.in + + # If USE tcltk lets install idle + # Need to script the python version in the path + if use tcltk; then + mkdir "${D}/usr/lib/python${PYVER}/tools" + mv "${S}/Tools/idle" "${D}/usr/lib/python${PYVER}/tools/" + dosym /usr/lib/python${PYVER}/tools/idle/idle.py /usr/bin/idle.py + fi +} |