blob: 9d3199afe6a0fe8c756ecb96d7f9ae7f2b1c3ee5 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/PyQt/PyQt-3.15.ebuild,v 1.1 2005/09/26 15:26:47 chrb Exp $
inherit distutils
MY_P="PyQt-x11-gpl-${PV/*_pre/snapshot-}"
S="${WORKDIR}/${MY_P}"
DESCRIPTION="set of Python bindings for the QT 3.x Toolkit"
HOMEPAGE="http://www.riverbankcomputing.co.uk/pyqt/"
SRC_URI="mirror://gentoo/${MY_P}.tar.gz"
#SRC_URI="http://www.river-bank.demon.co.uk/download/PyQt/${MY_P}.tar.gz"
#SRC_URI="http://www.river-bank.demon.co.uk/download/snapshots/PyQt/${MY_P}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86 ~ppc ~sparc ~alpha ~amd64 ~ppc64"
IUSE="debug doc"
RDEPEND="virtual/libc
x11-libs/qt
dev-lang/python
>=dev-python/sip-4.2
<dev-python/qscintilla-1.6"
DEPEND="${RDEPEND}
sys-devel/libtool"
src_unpack() {
unpack ${A}
sed -i -e "s: check_license():# check_license():" ${S}/configure.py
}
src_compile() {
distutils_python_version
addpredict ${QTDIR}/etc/settings
local myconf="-d /usr/$(get_libdir)/python${PYVER}/site-packages -b /usr/bin \
-v /usr/share/sip -n /usr/include -o /usr/$(get_libdir)"
use debug && myconf="${myconf} -u"
has distcc ${FEATURES} || myconf="${myconf} -c"
if [ "$(echo $(free -m | grep Mem) | cut -d' ' -f2)" -lt "257" ] ; then
echo ""
einfo "Low on memory?! Use distcc or get a coffee. :)"
echo ""
fi
python configure.py ${myconf}
emake || die "emake failed"
}
src_install() {
make DESTDIR=${D} install || die "install failed"
dodoc ChangeLog LICENSE NEWS README README.Linux THANKS
if use doc ; then
dohtml doc/PyQt.html
dodir /usr/share/doc/${PF}/examples
cp -r examples3/* ${D}/usr/share/doc/${PF}/examples
fi
}
|