]> git.ipfire.org Git - people/arne_f/ipfire-3.x.git/blame - pkgs/pyQt/pyQt.nm
avahi: Update to 0.6.30.
[people/arne_f/ipfire-3.x.git] / pkgs / pyQt / pyQt.nm
CommitLineData
fe1cf40d
MT
1###############################################################################
2# #
3# IPFire.org - A linux based firewall #
4# Copyright (C) 2007, 2008 Michael Tremer & Christian Schmidt #
5# #
6# This program is free software: you can redistribute it and/or modify #
7# it under the terms of the GNU General Public License as published by #
8# the Free Software Foundation, either version 3 of the License, or #
9# (at your option) any later version. #
10# #
11# This program is distributed in the hope that it will be useful, #
12# but WITHOUT ANY WARRANTY; without even the implied warranty of #
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14# GNU General Public License for more details. #
15# #
16# You should have received a copy of the GNU General Public License #
17# along with this program. If not, see <http://www.gnu.org/licenses/>. #
18# #
19###############################################################################
20
21###############################################################################
22# Definitions
23###############################################################################
24
25include $(PKGROOT)/Include
26
27PKG_NAME = pyQt
76c8c32a 28PKG_VER = 4.8.1
fe1cf40d 29PKG_REL = 0
76c8c32a 30PKG_EPOCH = 0
fe1cf40d
MT
31
32PKG_MAINTAINER =
bb7d617c 33PKG_GROUPS = Development/Languages
fe1cf40d
MT
34PKG_URL = http://www.riverbankcomputing.com/software/pyqt/
35PKG_LICENSE = GPLv3 or GPLv2 with exceptions
36PKG_SUMMARY = Python bindings for Qt4.
37
f2226b55 38PKG_BUILD_DEPS+= gcc-c++ libXext-devel python-devel qt-devel sip-devel
8b8ccb55 39PKG_DEPS += sip
fe1cf40d
MT
40
41define PKG_DESCRIPTION
42 Python bindings for Qt4
43endef
44
8b8ccb55
MT
45PKG_PACKAGES += $(PKG_NAME_REAL)-devel
46
47define PKG_FILES-$(PKG_NAME_REAL)-devel
48 /usr/bin
49 /usr/lib/python*/site-packages/PyQt4/pyqtconfig*
50 /usr/lib/python*/site-packages/PyQt4/uic/pyuic.py*
51 /usr/share/sip
52endef
53
fe1cf40d
MT
54PKG_TARBALL = PyQt-x11-gpl-$(PKG_VER).tar.gz
55
56DIR_APP = $(DIR_SRC)/PyQt-x11-gpl-$(PKG_VER)
57
58define STAGE_BUILD
59 cd $(DIR_APP) && python configure.py \
fc928664 60 --assume-shared \
fe1cf40d
MT
61 --confirm-license \
62 --verbose
63
64 cd $(DIR_APP) && make $(PARALLELISMFLAGS)
65endef
66
67STAGE_INSTALLTARGET += INSTALL_ROOT=$(BUILDROOT)
aa3b09af
MT
68
69define STAGE_INSTALL_CMDS
70 # Remove python3 port
71 rm -rfv $(BUILDROOT)/usr/lib/python*/site-packages/PyQt4/uic/port_v3
72endef