diff options
author | Rob Cakebread <pythonhead@gentoo.org> | 2007-03-13 19:17:30 +0000 |
---|---|---|
committer | Rob Cakebread <pythonhead@gentoo.org> | 2007-03-13 19:17:30 +0000 |
commit | 9f1d238e8df7b3efd1794e7441ac1afbf128fa96 (patch) | |
tree | f595dbab0455875c4a88d54ae2f0a8e569e2efd2 /dev-python/pyqwt | |
parent | version bump; clean out old version (diff) | |
download | gentoo-2-9f1d238e8df7b3efd1794e7441ac1afbf128fa96.tar.gz gentoo-2-9f1d238e8df7b3efd1794e7441ac1afbf128fa96.tar.bz2 gentoo-2-9f1d238e8df7b3efd1794e7441ac1afbf128fa96.zip |
Python 2.5 fix. bug# 158510
(Portage version: 2.1.2.2)
Diffstat (limited to 'dev-python/pyqwt')
-rw-r--r-- | dev-python/pyqwt/ChangeLog | 7 | ||||
-rw-r--r-- | dev-python/pyqwt/files/digest-pyqwt-4.2-r1 | 3 | ||||
-rw-r--r-- | dev-python/pyqwt/pyqwt-4.2-r1.ebuild | 47 |
3 files changed, 56 insertions, 1 deletions
diff --git a/dev-python/pyqwt/ChangeLog b/dev-python/pyqwt/ChangeLog index 0638b3688195..0541ce86e2ae 100644 --- a/dev-python/pyqwt/ChangeLog +++ b/dev-python/pyqwt/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/pyqwt # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pyqwt/ChangeLog,v 1.4 2007/02/21 17:02:27 lucass Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyqwt/ChangeLog,v 1.5 2007/03/13 19:17:30 pythonhead Exp $ + +*pyqwt-4.2-r1 (13 Mar 2007) + + 13 Mar 2007; Rob Cakebread <pythonhead@gentoo.org> +pyqwt-4.2-r1.ebuild: + Python 2.5 fix. bug# 158510 Thanks to Troy Melhase <troy@gci.net> 21 Feb 2007; Lukasz Strzygowski <lucass@gentoo.org> files/digest-pyqwt-4.2, Manifest: diff --git a/dev-python/pyqwt/files/digest-pyqwt-4.2-r1 b/dev-python/pyqwt/files/digest-pyqwt-4.2-r1 new file mode 100644 index 000000000000..11cad0fa743e --- /dev/null +++ b/dev-python/pyqwt/files/digest-pyqwt-4.2-r1 @@ -0,0 +1,3 @@ +MD5 70cf89765cc51c3e9e2e5d1eef9522f1 PyQwt-4.2.tar.gz 1416358 +RMD160 e9f6ce51b6cbcbadb526f0fcac5035510882fd54 PyQwt-4.2.tar.gz 1416358 +SHA256 6db14a2a89cbbbef515a4964e824b0f52f10427cef56cd6f3a7b3f1ef0a444d0 PyQwt-4.2.tar.gz 1416358 diff --git a/dev-python/pyqwt/pyqwt-4.2-r1.ebuild b/dev-python/pyqwt/pyqwt-4.2-r1.ebuild new file mode 100644 index 000000000000..a15dc804ba24 --- /dev/null +++ b/dev-python/pyqwt/pyqwt-4.2-r1.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyqwt/pyqwt-4.2-r1.ebuild,v 1.1 2007/03/13 19:17:30 pythonhead Exp $ + + +inherit distutils eutils + +MY_P=PyQwt-${PV} +S=${WORKDIR}/${MY_P} + +DESCRIPTION="Python bindings for the Qwt library" +SRC_URI="mirror://sourceforge/pyqwt/${MY_P}.tar.gz" +HOMEPAGE="http://pyqwt.sourceforge.net/" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~amd64 ~ia64 ~x86" +IUSE="debug" + +DEPEND=">=dev-lang/python-2.3.2 + ~x11-libs/qwt-4.2.0 + >=dev-python/PyQt-3.14 + >=dev-python/sip-4.2 + >=dev-python/numarray-1.1.1 + >=dev-python/numeric-23.7" + +src_compile() { + cd ${S}/sip + sed -i s/"[[:space:]]*const QLabel \*titleLabel() const\;"// qwtplot.sip + sed -i s/"[[:space:]]*const QwtPlotCanvas \*canvas() const\;"// qwtplot.sip + cd ${S}/configure + local myconf="-d /usr/$(get_libdir)/python${PYVER}/site-packages -l /usr/$(get_libdir) \ + -i /usr/include/qwt -v /usr/share/sip -x /usr/share/sip" + use debug && myconf="${myconf} -u" + has distcc ${FEATURES} || myconf="${myconf} -c" + python configure.py ${myconf} + emake || die "emake failed" +} + +src_install() { + cd ${S} + sed -i s/2,4,9/2,5,9/ setup.py + python setup.py install --prefix=/usr --root=${D} || die "install failed" + dodoc ANNOUNCEMENT-4.2.TXT AUTHORS COPYING* README THANKS + use doc && mv ${D}/usr/share/doc/${MY_P}/* ${D}/usr/share/doc/${PF} + rm -rf ${D}/usr/share/doc/${MY_P} +} |