diff options
author | Daniel Robbins <drobbins@gentoo.org> | 2001-01-11 23:11:12 +0000 |
---|---|---|
committer | Daniel Robbins <drobbins@gentoo.org> | 2001-01-11 23:11:12 +0000 |
commit | ee35459cce1b753549c115c87d8e4fdce811e292 (patch) | |
tree | 32d94e1a5fc7165826a78fbd9fac852b473554af /sys-devel | |
parent | now uses python 2.0 (diff) | |
download | gentoo-2-ee35459cce1b753549c115c87d8e4fdce811e292.tar.gz gentoo-2-ee35459cce1b753549c115c87d8e4fdce811e292.tar.bz2 gentoo-2-ee35459cce1b753549c115c87d8e4fdce811e292.zip |
python-basic is no more
Diffstat (limited to 'sys-devel')
-rw-r--r-- | sys-devel/python-basic/files/digest-python-basic-1.5.2-r4 | 2 | ||||
-rw-r--r-- | sys-devel/python-basic/python-basic-1.5.2-r4.ebuild | 78 |
2 files changed, 0 insertions, 80 deletions
diff --git a/sys-devel/python-basic/files/digest-python-basic-1.5.2-r4 b/sys-devel/python-basic/files/digest-python-basic-1.5.2-r4 deleted file mode 100644 index aeb14243568a..000000000000 --- a/sys-devel/python-basic/files/digest-python-basic-1.5.2-r4 +++ /dev/null @@ -1,2 +0,0 @@ -MD5 e9d677ae6d5a3efc6937627ed8a3e752 py152.tgz -MD5 7c99113a11b03599d8494638f6d90b56 python-fchksum-1.1.tar.gz diff --git a/sys-devel/python-basic/python-basic-1.5.2-r4.ebuild b/sys-devel/python-basic/python-basic-1.5.2-r4.ebuild deleted file mode 100644 index 1bc7692f2f7c..000000000000 --- a/sys-devel/python-basic/python-basic-1.5.2-r4.ebuild +++ /dev/null @@ -1,78 +0,0 @@ -# Copyright 1999-2000 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# Author Daniel Robbins <drobbins@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-devel/python-basic/python-basic-1.5.2-r4.ebuild,v 1.2 2000/12/08 17:21:49 achim Exp $ - -P=python-basic-1.5.2 -A="py152.tgz python-fchksum-1.1.tar.gz" -S=${WORKDIR}/Python-1.5.2 -S2=${WORKDIR}/python-fchksum-1.1 -DESCRIPTION="A really great language" -SRC_URI="http://www.python.org/ftp/python/src/py152.tgz - 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/" -DEPEND=">=sys-libs/gdbm-1.8.0 - >=sys-libs/gpm-1.19.3" -RDEPEND="$DEPEND - >=sys-apps/bash-2.04" -PROVIDE="virtual/python-1.5.2" - -src_compile() { - try ./configure --prefix=/usr --with-threads - cp Makefile Makefile.orig - sed -e "s/-g -O2/${CFLAGS}/" Makefile.orig > Makefile - # Parallel make does not work - try make - cd ${S2} - ./configure - try make ${MAKEOPTS} -} - -src_unpack() { - unpack ${A} - cd ${S}/Modules - sed -e 's/#readline/readline/' -e 's/-lreadline -ltermcap/-lreadline/' \ - -e 's/#_locale/_locale/' -e 's/#crypt/crypt/' -e 's/# -lcrypt/-lcrypt/' \ - -e 's/#audioop/audioop/' -e 's/#imageop/imageop/' -e 's/#rgbimg/rgbimg/' \ - -e 's/#syslog/syslog/' -e 's/#curses cursesmodule.c -lcurses -ltermcap/curses cursesmodule.c -lncurses/' \ - -e 's:#gdbm gdbmmodule.c -I/usr/local/include -L/usr/local/lib -lgdbm:gdbm gdbmmodule.c -lgdbm:' \ - -e 's:#zlib zlibmodule.c -I$(prefix)/include -L$(exec_prefix)/lib -lz:zlib zlibmodule.c -lz:' \ - -e 's:#dbm.*:dbm dbmmodule.c -I/usr/include/db1 -lndbm:' \ - Setup.in > Setup -} - - -src_install() { - dodir /usr - try make install prefix=${D}/usr - cd ${S2} - try make prefix=${D}/usr install - cd ${S} -#DOC - - dodoc README - docinto Misc - cd Misc - dodoc ACKS AIX-NOTES BLURB* cheatsheet comparisons COPYRIGHT \ - editline-fix HISTORY HPUX-NOTES HYPE NEWS NEXT-NOTES \ - Porting PURIFY.README README RENAME RFD - insinto /usr/share/emacs/site-lisp - doins *.el - cd ../Tools - for i in audiopy bgen faqwiz freeze modulator pynche scripts \ - versioncheck webchecker world - do - docinto Tools/$i - dodoc $i/README - done - docinto Tools/idle - dodoc idle/ChangeLog idle/*.txt - docinto fcksum - cd ${S2} - dodoc Changelog COPYING README - - -} - |