wok view qt4/receipt @ rev 10563

claws-mail: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed May 25 22:46:30 2011 +0200 (2011-05-25)
parents 94abe4617312
children 9ecc080368ca
line source
1 # SliTaz package receipt.
3 PACKAGE="qt4"
4 SOURCE="qt-everywhere-opensource-src"
5 VERSION="4.7.3"
6 CATEGORY="meta"
7 SHORT_DESC="qt x11 toolkit"
8 MAINTAINER="allan316@gmail.com"
9 DEPENDS="glibc-locale libQtCore libQtGui libQtNetwork libQtSvg libQtXml \
10 libQtDesigner libQtScript libQt3Support libQtClucene libQtDBus libQtHelp \
11 libQtOpenGL libQtSql libQtWebkit gstreamer"
12 BUILD_DEPENDS="xorg-libX11-dev dbus-dev gstreamer \
13 gstreamer-dev gst-python-dev libmng-dev cups-dev mysql-dev unixODBC-dev \
14 mesa-dev fontconfig-dev libegl-mesa libglu-mesa libglw-mesa postgresql-dev glibc-locale \
15 gtk+-dev gst-plugins-base-dev atk autoconf automake bash binutils bison bzip2 cairo \
16 coreutils expat flex fontconfig freetype gcc gettext glib jpeg libIDL \
17 libcap libpng libtool libxml2 linux-api-headers m4 make mercurial ncurses openssl \
18 pango patch pcre perl perl-xml-parser perl-xml-simple pixman pkg-config tiff \
19 xorg xorg-dev-proto zip zlib"
20 TARBALL="$SOURCE-$VERSION.tar.gz"
21 WEB_SITE="http://qt.nokia.com/"
22 WGET_URL="ftp://ftp.qt.nokia.com/qt/source/$TARBALL"
23 PROVIDE="qt-x11-opensource-src"
24 TAGS="qt"
26 # Rules to configure and make the package.
27 compile_rules()
28 {
29 cd $src
31 ./configure -v \
32 -prefix /usr \
33 -confirm-license -opensource \
34 -silent \
35 -sysconfdir /etc \
36 -plugindir /usr/lib/qt/plugins \
37 -importdir /usr/lib/qt/imports \
38 -translationdir /usr/share/qt/translations \
39 -datadir /usr/share/qt \
40 -docdir /usr/share/doc/qt \
41 -examplesdir /usr/share/doc/qt/examples \
42 -demosdir /usr/share/doc/qt/demos \
43 -no-separate-debug-info \
44 -nomake demos \
45 -nomake examples \
46 -nomake docs \
47 -system-zlib \
48 -system-libtiff \
49 -system-libpng \
50 -system-libmng \
51 -system-libjpeg \
52 -system-sqlite \
53 -scripttools \
54 -glib \
55 -phonon \
56 -optimized-qmake \
57 -opengl \
58 -gtkstyle &&
59 make -j 4 &&
60 make INSTALL_ROOT=$DESTDIR install
61 }
63 # Rules to gen a SliTaz package suitable for Tazpkg.
64 genpkg_rules()
65 {
66 # dummy tree to avoid 'tazwok cmp --cook' building loop
67 mkdir $fs/etc
68 # pkgconfig path fixes
69 sed -i -e "s|-L$src/_pkg/usr/lib||g" $_pkg/usr/lib/pkgconfig/*.pc
70 sed -i -e "s|$src/_pkg/usr/bin/moc|/usr/bin/moc|g" $_pkg/usr/lib/pkgconfig/*.pc
71 sed -i -e "s|$src/_pkg/usr/bin/uic|/usr/bin/uic|g" $_pkg/usr/lib/pkgconfig/*.pc
72 }