# HG changeset patch # User Christophe Lincoln # Date 1273419152 -7200 # Node ID 80e64bc2e98aa7faf2dcf66d2b1e18a3f9a205ff # Parent 3c1af4f02faa312af8e1cd465d5f3755e8bb25d3 Add qt4-phonon (enable phonon in QT) diff -r 3c1af4f02faa -r 80e64bc2e98a qt4-phonon/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/qt4-phonon/receipt Sun May 09 17:32:32 2010 +0200 @@ -0,0 +1,20 @@ +# SliTaz package receipt. + +PACKAGE="qt4-phonon" +VERSION="4.6.2" +CATEGORY="multimedia" +SHORT_DESC="Qt phonon library" +MAINTAINER="pankso@slitaz.org" +DEPENDS="glib zlib gcc-lib-base" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://qt.nokia.com/" +WANTED="qt4" +SOURCE="qt-everywhere-opensource-src" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + _pkg="$WOK/$WANTED/$SOURCE-$VERSION/_pkg" + cp -a $_pkg/usr/lib/libphonon.so* $fs/usr/lib +} diff -r 3c1af4f02faa -r 80e64bc2e98a qt4/receipt --- a/qt4/receipt Sat May 08 12:50:47 2010 +0200 +++ b/qt4/receipt Sun May 09 17:32:32 2010 +0200 @@ -6,9 +6,11 @@ CATEGORY="meta" SHORT_DESC="qt x11 toolkit" MAINTAINER="allan316@gmail.com" -DEPENDS="glibc-locale libQtCore libQtGui libQtNetwork libQtSvg libQtXml libQtDesigner libQtScript \ -libQt3Support libQtClucene libQtDBus libQtHelp libQtOpenGL libQtSql libQtWebkit" -BUILD_DEPENDS="xorg-libX11-dev dbus-dev slitaz-dev-pkgs" +DEPENDS="glibc-locale libQtCore libQtGui libQtNetwork libQtSvg libQtXml \ +libQtDesigner libQtScript libQt3Support libQtClucene libQtDBus libQtHelp \ +libQtOpenGL libQtSql libQtWebkit gstreamer" +BUILD_DEPENDS="xorg-libX11-dev dbus-dev slitaz-dev-pkgs gstreamer \ +gstreamer-dev gst-python-dev" TARBALL="$SOURCE-$VERSION.tar.gz" WEB_SITE="http://qt.nokia.com/" WGET_URL="ftp://ftp.qt.nokia.com/qt/source/$TARBALL" @@ -19,25 +21,25 @@ compile_rules() { cd $src - ./configure \ - -prefix /usr \ - -confirm-license -opensource \ - -silent \ - -sysconfdir /etc \ - -plugindir /usr/lib/qt/plugins \ - -translationdir /usr/share/qt/translations \ - -datadir /usr/share/qt \ - -docdir /usr/share/doc/qt \ - -examplesdir /usr/share/doc/qt/examples \ - -demosdir /usr/share/doc/qt/demos \ - -no-separate-debug-info \ - -nomake demos \ - -nomake examples \ - -nomake docs \ - -no-phonon \ - -optimized-qmake \ - -opengl \ - -gtkstyle && + ./configure -v \ + -prefix /usr \ + -confirm-license -opensource \ + -silent \ + -sysconfdir /etc \ + -plugindir /usr/lib/qt/plugins \ + -translationdir /usr/share/qt/translations \ + -datadir /usr/share/qt \ + -docdir /usr/share/doc/qt \ + -examplesdir /usr/share/doc/qt/examples \ + -demosdir /usr/share/doc/qt/demos \ + -no-separate-debug-info \ + -nomake demos \ + -nomake examples \ + -nomake docs \ + -phonon \ + -optimized-qmake \ + -opengl \ + -gtkstyle && make && make INSTALL_ROOT=$PWD/_pkg install }