diff options
author | Alastair Tse <liquidx@gentoo.org> | 2003-10-30 10:08:25 +0000 |
---|---|---|
committer | Alastair Tse <liquidx@gentoo.org> | 2003-10-30 10:08:25 +0000 |
commit | 757b5cae7b599b3c21204056d016973e50bc83f2 (patch) | |
tree | 3ff484e05ce8e974d8be1224100f351451a24247 /dev-python/pythong | |
parent | version bump (diff) | |
download | historical-757b5cae7b599b3c21204056d016973e50bc83f2.tar.gz historical-757b5cae7b599b3c21204056d016973e50bc83f2.tar.bz2 historical-757b5cae7b599b3c21204056d016973e50bc83f2.zip |
version bump
Diffstat (limited to 'dev-python/pythong')
-rw-r--r-- | dev-python/pythong/Manifest | 4 | ||||
-rw-r--r-- | dev-python/pythong/files/digest-pythong-2.1.2 | 2 | ||||
-rw-r--r-- | dev-python/pythong/pythong-2.1.2.ebuild | 59 |
3 files changed, 63 insertions, 2 deletions
diff --git a/dev-python/pythong/Manifest b/dev-python/pythong/Manifest index b8540249ec62..97ea3c701e81 100644 --- a/dev-python/pythong/Manifest +++ b/dev-python/pythong/Manifest @@ -1,7 +1,7 @@ -MD5 de9a6e913eb535cd180cfca8d56d2c88 ChangeLog 654 +MD5 f91fd6fc7725a21b51f80c887825fd8d ChangeLog 771 MD5 71c4638c9c88af75b58e5f5cb54fe008 metadata.xml 159 MD5 a92050d24314b864ebf86eb587611a2b pythong-2.0.21.2.ebuild 1490 -MD5 dca738a4bd488bf9227e76074a65e3fc pythong-2.1.2.ebuild 1403 +MD5 96212c7ddbceb8da39abc3900166aefc pythong-2.1.2.ebuild 1405 MD5 f7021796995b1220ce7f733aedd29f99 pythong-2.1.ebuild 1374 MD5 ba05e93f95f9ee60ece3790a2c9d2308 pythong-2.1_pre8.ebuild 1232 MD5 ef6104b1ca6dd2b5346eccd49c837859 files/digest-pythong-2.0.21.2 119 diff --git a/dev-python/pythong/files/digest-pythong-2.1.2 b/dev-python/pythong/files/digest-pythong-2.1.2 new file mode 100644 index 000000000000..38f072ba7fd7 --- /dev/null +++ b/dev-python/pythong/files/digest-pythong-2.1.2 @@ -0,0 +1,2 @@ +MD5 43f68cf0fb9ea225f35ebccd4b54850d pythonG-2_1_2.tgz 392294 +MD5 ad1692872a47162aac9f75efe7e2b1a6 python.pdf 2547987 diff --git a/dev-python/pythong/pythong-2.1.2.ebuild b/dev-python/pythong/pythong-2.1.2.ebuild new file mode 100644 index 000000000000..0828d1123747 --- /dev/null +++ b/dev-python/pythong/pythong-2.1.2.ebuild @@ -0,0 +1,59 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pythong/pythong-2.1.2.ebuild,v 1.1 2003/10/30 10:08:20 liquidx Exp $ + +inherit python distutils + +MY_PN="pythonG" +MY_PV=${PV/_/-} +MY_PV=$(echo $MY_PV | sed -e 's:\.:_:g') + +DESCRIPTION="Nice and powerful spanish development enviroment for Python" +SRC_URI="http://www3.uji.es/~dllorens/downloads/pythong/linux/${MY_PN}-${MY_PV}.tgz + doc? ( http://marmota.act.uji.es/MTP/pdf/python.pdf )" +HOMEPAGE="http://www3.uji.es/~dllorens/PythonG/principal.html" + +LICENSE="GPL-2" +KEYWORDS="~x86" +SLOT="0" +IUSE="doc" + +S=${WORKDIR}/${MY_PN}-${MY_PV} + +RDEPEND=">=dev-lang/python-2.2.2 + >=dev-lang/tk-8.3.4 + >=dev-python/pmw-1.2" + +pkg_setup() { + if ! python_mod_exists Tkinter; then + eerror "You need to Tk support in Python to continue. Try running:" + eerror "USE=\"tcltk\" emerge python" + die "Missing Tkinter support" + fi +} + +src_compile() { + return +} + +src_install() { + + python_version + + insinto /usr/lib/python${PYVER}/site-packages/ + doins modulepythong.py + doins libpythong/fromidle.py + + exeinto /usr/bin + doexe pythong.py + + dodoc leeme.txt + cp -r ${S}/{LICENCIA,MANUAL,demos} ${D}/usr/share/doc/${PF} + rm -f ${D}/usr/share/doc/${PF}/demos/modulepythong.py + + if [ -n "`use doc`" ]; then + insinto /usr/share/doc/${PF} + doins ${DISTDIR}/python.pdf + fi + +} |