wok view qt4/receipt @ rev 10009

gnustep-gui: fix bdeps
author Christophe Lincoln <pankso@slitaz.org>
date Thu May 19 02:08:44 2011 +0200 (2011-05-19)
parents 492d81d36df5
children d4259b0646e1
line source
1 # SliTaz package receipt.
3 PACKAGE="qt4"
4 SOURCE="qt-everywhere-opensource-src"
5 VERSION="4.7.2"
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 -translationdir /usr/share/qt/translations \
38 -datadir /usr/share/qt \
39 -docdir /usr/share/doc/qt \
40 -examplesdir /usr/share/doc/qt/examples \
41 -demosdir /usr/share/doc/qt/demos \
42 -no-separate-debug-info \
43 -nomake demos \
44 -nomake examples \
45 -nomake docs \
46 -system-zlib \
47 -system-libtiff \
48 -system-libpng \
49 -system-libmng \
50 -system-libjpeg \
51 -system-sqlite \
52 -scripttools \
53 -glib \
54 -phonon \
55 -optimized-qmake \
56 -opengl \
57 -gtkstyle &&
58 make -j 4 &&
59 make INSTALL_ROOT=$PWD/_pkg install
60 }
62 # Rules to gen a SliTaz package suitable for Tazpkg.
63 genpkg_rules()
64 {
65 # dummy tree to avoid 'tazwok cmp --cook' building loop
66 mkdir $fs/etc
67 # pkgconfig path fixes
68 sed -i -e "s|-L$src/_pkg/usr/lib||g" $_pkg/usr/lib/pkgconfig/*.pc
69 sed -i -e "s|$src/_pkg/usr/bin/moc|/usr/bin/moc|g" $_pkg/usr/lib/pkgconfig/*.pc
70 sed -i -e "s|$src/_pkg/usr/bin/uic|/usr/bin/uic|g" $_pkg/usr/lib/pkgconfig/*.pc
71 }