wok rev 5509

Add qt4-phonon (enable phonon in QT)
author Christophe Lincoln <pankso@slitaz.org>
date Sun May 09 17:32:32 2010 +0200 (2010-05-09)
parents 3c1af4f02faa
children 591344cc8bf8
files qt4-phonon/receipt qt4/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/qt4-phonon/receipt	Sun May 09 17:32:32 2010 +0200
     1.3 @@ -0,0 +1,20 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="qt4-phonon"
     1.7 +VERSION="4.6.2"
     1.8 +CATEGORY="multimedia"
     1.9 +SHORT_DESC="Qt phonon library"
    1.10 +MAINTAINER="pankso@slitaz.org"
    1.11 +DEPENDS="glib zlib gcc-lib-base"
    1.12 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.13 +WEB_SITE="http://qt.nokia.com/"
    1.14 +WANTED="qt4"
    1.15 +SOURCE="qt-everywhere-opensource-src"
    1.16 +
    1.17 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.18 +genpkg_rules()
    1.19 +{
    1.20 +	mkdir -p $fs/usr/lib
    1.21 +	_pkg="$WOK/$WANTED/$SOURCE-$VERSION/_pkg"
    1.22 +	cp -a $_pkg/usr/lib/libphonon.so* $fs/usr/lib
    1.23 +}
     2.1 --- a/qt4/receipt	Sat May 08 12:50:47 2010 +0200
     2.2 +++ b/qt4/receipt	Sun May 09 17:32:32 2010 +0200
     2.3 @@ -6,9 +6,11 @@
     2.4  CATEGORY="meta"
     2.5  SHORT_DESC="qt x11 toolkit"
     2.6  MAINTAINER="allan316@gmail.com"
     2.7 -DEPENDS="glibc-locale libQtCore libQtGui libQtNetwork libQtSvg libQtXml libQtDesigner libQtScript \
     2.8 -libQt3Support libQtClucene libQtDBus libQtHelp libQtOpenGL libQtSql libQtWebkit"
     2.9 -BUILD_DEPENDS="xorg-libX11-dev dbus-dev slitaz-dev-pkgs"
    2.10 +DEPENDS="glibc-locale libQtCore libQtGui libQtNetwork libQtSvg libQtXml \
    2.11 +libQtDesigner libQtScript libQt3Support libQtClucene libQtDBus libQtHelp \
    2.12 +libQtOpenGL libQtSql libQtWebkit gstreamer"
    2.13 +BUILD_DEPENDS="xorg-libX11-dev dbus-dev slitaz-dev-pkgs gstreamer \
    2.14 +gstreamer-dev gst-python-dev"
    2.15  TARBALL="$SOURCE-$VERSION.tar.gz"
    2.16  WEB_SITE="http://qt.nokia.com/"
    2.17  WGET_URL="ftp://ftp.qt.nokia.com/qt/source/$TARBALL"
    2.18 @@ -19,25 +21,25 @@
    2.19  compile_rules()
    2.20  {
    2.21  	cd $src
    2.22 -	./configure \
    2.23 -             -prefix /usr \
    2.24 -			-confirm-license -opensource \
    2.25 -			-silent \
    2.26 -			-sysconfdir /etc \
    2.27 -			-plugindir /usr/lib/qt/plugins \
    2.28 -			-translationdir /usr/share/qt/translations \
    2.29 -			-datadir /usr/share/qt \
    2.30 -			-docdir /usr/share/doc/qt \
    2.31 -			-examplesdir /usr/share/doc/qt/examples \
    2.32 -			-demosdir /usr/share/doc/qt/demos \
    2.33 -			-no-separate-debug-info \
    2.34 -			-nomake demos \
    2.35 -			-nomake examples \
    2.36 -			-nomake docs \
    2.37 -			-no-phonon \
    2.38 -			-optimized-qmake \
    2.39 -			-opengl \
    2.40 -			-gtkstyle &&
    2.41 +	./configure -v \
    2.42 +		-prefix /usr \
    2.43 +		-confirm-license -opensource \
    2.44 +		-silent \
    2.45 +		-sysconfdir /etc \
    2.46 +		-plugindir /usr/lib/qt/plugins \
    2.47 +		-translationdir /usr/share/qt/translations \
    2.48 +		-datadir /usr/share/qt \
    2.49 +		-docdir /usr/share/doc/qt \
    2.50 +		-examplesdir /usr/share/doc/qt/examples \
    2.51 +		-demosdir /usr/share/doc/qt/demos \
    2.52 +		-no-separate-debug-info \
    2.53 +		-nomake demos \
    2.54 +		-nomake examples \
    2.55 +		-nomake docs \
    2.56 +		-phonon \
    2.57 +		-optimized-qmake \
    2.58 +		-opengl \
    2.59 +		-gtkstyle &&
    2.60  	make &&
    2.61  	make INSTALL_ROOT=$PWD/_pkg install
    2.62  }