From 2b10a9677817377618e33d2b07ab7caefe316633 Mon Sep 17 00:00:00 2001 From: Richard Maw Date: Mon, 18 Aug 2014 17:05:22 +0000 Subject: Re-organise definitions with scripts/organise-morphologies.py --- strata/qt5-tools/icu.morph | 8 ++++++++ strata/qt5-tools/qt3d.morph | 10 ++++++++++ strata/qt5-tools/qtbase.morph | 15 +++++++++++++++ strata/qt5-tools/qtdeclarative.morph | 10 ++++++++++ strata/qt5-tools/qtdoc.morph | 8 ++++++++ strata/qt5-tools/qtgraphicaleffects.morph | 8 ++++++++ strata/qt5-tools/qtimageformats.morph | 10 ++++++++++ strata/qt5-tools/qtjsbackend.morph | 10 ++++++++++ strata/qt5-tools/qtmultimedia.morph | 10 ++++++++++ strata/qt5-tools/qtquick1.morph | 10 ++++++++++ strata/qt5-tools/qtquickcontrols.morph | 10 ++++++++++ strata/qt5-tools/qtscript.morph | 10 ++++++++++ strata/qt5-tools/qtsensors.morph | 10 ++++++++++ strata/qt5-tools/qtserialport.morph | 10 ++++++++++ strata/qt5-tools/qtsvg.morph | 10 ++++++++++ strata/qt5-tools/qttools.morph | 10 ++++++++++ strata/qt5-tools/qttranslations.morph | 8 ++++++++ strata/qt5-tools/qtwebkit-examples.morph | 8 ++++++++ strata/qt5-tools/qtwebkit.morph | 11 +++++++++++ strata/qt5-tools/qtx11extras.morph | 10 ++++++++++ strata/qt5-tools/qtxmlpatterns.morph | 10 ++++++++++ strata/qt5-tools/ruby-1.8.morph | 9 +++++++++ strata/qt5-tools/ruby-1.9.morph | 9 +++++++++ 23 files changed, 224 insertions(+) create mode 100644 strata/qt5-tools/icu.morph create mode 100644 strata/qt5-tools/qt3d.morph create mode 100644 strata/qt5-tools/qtbase.morph create mode 100644 strata/qt5-tools/qtdeclarative.morph create mode 100644 strata/qt5-tools/qtdoc.morph create mode 100644 strata/qt5-tools/qtgraphicaleffects.morph create mode 100644 strata/qt5-tools/qtimageformats.morph create mode 100644 strata/qt5-tools/qtjsbackend.morph create mode 100644 strata/qt5-tools/qtmultimedia.morph create mode 100644 strata/qt5-tools/qtquick1.morph create mode 100644 strata/qt5-tools/qtquickcontrols.morph create mode 100644 strata/qt5-tools/qtscript.morph create mode 100644 strata/qt5-tools/qtsensors.morph create mode 100644 strata/qt5-tools/qtserialport.morph create mode 100644 strata/qt5-tools/qtsvg.morph create mode 100644 strata/qt5-tools/qttools.morph create mode 100644 strata/qt5-tools/qttranslations.morph create mode 100644 strata/qt5-tools/qtwebkit-examples.morph create mode 100644 strata/qt5-tools/qtwebkit.morph create mode 100644 strata/qt5-tools/qtx11extras.morph create mode 100644 strata/qt5-tools/qtxmlpatterns.morph create mode 100644 strata/qt5-tools/ruby-1.8.morph create mode 100644 strata/qt5-tools/ruby-1.9.morph (limited to 'strata/qt5-tools') diff --git a/strata/qt5-tools/icu.morph b/strata/qt5-tools/icu.morph new file mode 100644 index 00000000..37dec07e --- /dev/null +++ b/strata/qt5-tools/icu.morph @@ -0,0 +1,8 @@ +name: icu +kind: chunk +configure-commands: +- cd source; ./runConfigureICU Linux --prefix=/usr +build-commands: +- cd source; unset TARGET ; make +install-commands: +- cd source; unset TARGET ; make DESTDIR="$DESTDIR" install diff --git a/strata/qt5-tools/qt3d.morph b/strata/qt5-tools/qt3d.morph new file mode 100644 index 00000000..d4e44d4e --- /dev/null +++ b/strata/qt5-tools/qt3d.morph @@ -0,0 +1,10 @@ +name: qt3d +kind: chunk +configure-commands: +- qmake +build-commands: +- make +- make html_docs +install-commands: +- make install INSTALL_ROOT=$DESTDIR +- make install_html_docs INSTALL_ROOT=$DESTDIR diff --git a/strata/qt5-tools/qtbase.morph b/strata/qt5-tools/qtbase.morph new file mode 100644 index 00000000..1427c4c2 --- /dev/null +++ b/strata/qt5-tools/qtbase.morph @@ -0,0 +1,15 @@ +name: qtbase +kind: chunk +configure-commands: +- ./configure -v -prefix /usr -opensource -confirm-license +build-commands: +- make +- touch /qtbase.build/src/corelib/corelib.pro +- ./bin/qmake -set QDOC /qtbase.build/bin/qdoc +- make html_docs +- ./bin/qmake -unset QDOC +install-commands: +- make install INSTALL_ROOT="$DESTDIR" +- ./bin/qmake -set QDOC /qtbase.build/bin/qdoc +- make install_html_docs INSTALL_ROOT="$DESTDIR" +- ./bin/qmake -unset QDOC diff --git a/strata/qt5-tools/qtdeclarative.morph b/strata/qt5-tools/qtdeclarative.morph new file mode 100644 index 00000000..9eb02331 --- /dev/null +++ b/strata/qt5-tools/qtdeclarative.morph @@ -0,0 +1,10 @@ +name: qtdeclarative +kind: chunk +configure-commands: +- qmake +build-commands: +- make +- make html_docs +install-commands: +- make install INSTALL_ROOT=$DESTDIR +- make install_html_docs INSTALL_ROOT=$DESTDIR diff --git a/strata/qt5-tools/qtdoc.morph b/strata/qt5-tools/qtdoc.morph new file mode 100644 index 00000000..3b449382 --- /dev/null +++ b/strata/qt5-tools/qtdoc.morph @@ -0,0 +1,8 @@ +name: qtdoc +kind: chunk +configure-commands: +- qmake +build-commands: +- make +install-commands: +- make install INSTALL_ROOT=$DESTDIR diff --git a/strata/qt5-tools/qtgraphicaleffects.morph b/strata/qt5-tools/qtgraphicaleffects.morph new file mode 100644 index 00000000..27c42971 --- /dev/null +++ b/strata/qt5-tools/qtgraphicaleffects.morph @@ -0,0 +1,8 @@ +name: qtgraphicaleffects +kind: chunk +configure-commands: +- qmake +build-commands: +- make +install-commands: +- make install INSTALL_ROOT=$DESTDIR diff --git a/strata/qt5-tools/qtimageformats.morph b/strata/qt5-tools/qtimageformats.morph new file mode 100644 index 00000000..08323ca1 --- /dev/null +++ b/strata/qt5-tools/qtimageformats.morph @@ -0,0 +1,10 @@ +name: qtimageformats +kind: chunk +configure-commands: +- qmake +build-commands: +- make +- make html_docs +install-commands: +- make install INSTALL_ROOT=$DESTDIR +- make install_html_docs INSTALL_ROOT=$DESTDIR diff --git a/strata/qt5-tools/qtjsbackend.morph b/strata/qt5-tools/qtjsbackend.morph new file mode 100644 index 00000000..5813084c --- /dev/null +++ b/strata/qt5-tools/qtjsbackend.morph @@ -0,0 +1,10 @@ +name: qtjsbackend +kind: chunk +configure-commands: +- qmake +build-commands: +- make +- make html_docs +install-commands: +- make install INSTALL_ROOT=$DESTDIR +- make install_html_docs INSTALL_ROOT=$DESTDIR diff --git a/strata/qt5-tools/qtmultimedia.morph b/strata/qt5-tools/qtmultimedia.morph new file mode 100644 index 00000000..537baa08 --- /dev/null +++ b/strata/qt5-tools/qtmultimedia.morph @@ -0,0 +1,10 @@ +name: qtmultimedia +kind: chunk +configure-commands: +- qmake +build-commands: +- make +- make install_html_docs +install-commands: +- make install INSTALL_ROOT=$DESTDIR +- make install_html_docs INSTALL_ROOT=$DESTDIR diff --git a/strata/qt5-tools/qtquick1.morph b/strata/qt5-tools/qtquick1.morph new file mode 100644 index 00000000..d4692445 --- /dev/null +++ b/strata/qt5-tools/qtquick1.morph @@ -0,0 +1,10 @@ +name: qtquick1 +kind: chunk +configure-commands: +- qmake +build-commands: +- make +- make html_docs +install-commands: +- make install INSTALL_ROOT=$DESTDIR +- make install_html_docs INSTALL_ROOT=$DESTDIR diff --git a/strata/qt5-tools/qtquickcontrols.morph b/strata/qt5-tools/qtquickcontrols.morph new file mode 100644 index 00000000..12051034 --- /dev/null +++ b/strata/qt5-tools/qtquickcontrols.morph @@ -0,0 +1,10 @@ +name: qtquickcontrols +kind: chunk +configure-commands: +- qmake +build-commands: +- make +- make html_docs +install-commands: +- make install INSTALL_ROOT=$DESTDIR +- make install_html_docs INSTALL_ROOT=$DESTDIR diff --git a/strata/qt5-tools/qtscript.morph b/strata/qt5-tools/qtscript.morph new file mode 100644 index 00000000..6f27842e --- /dev/null +++ b/strata/qt5-tools/qtscript.morph @@ -0,0 +1,10 @@ +name: qtscript +kind: chunk +configure-commands: +- qmake +build-commands: +- make +- make html_docs +install-commands: +- make install INSTALL_ROOT=$DESTDIR +- make install_html_docs INSTALL_ROOT=$DESTDIR diff --git a/strata/qt5-tools/qtsensors.morph b/strata/qt5-tools/qtsensors.morph new file mode 100644 index 00000000..d4b4ec00 --- /dev/null +++ b/strata/qt5-tools/qtsensors.morph @@ -0,0 +1,10 @@ +name: qtsensors +kind: chunk +configure-commands: +- qmake +build-commands: +- make +- make html_docs +install-commands: +- make install INSTALL_ROOT=$DESTDIR +- make install_html_docs INSTALL_ROOT=$DESTDIR diff --git a/strata/qt5-tools/qtserialport.morph b/strata/qt5-tools/qtserialport.morph new file mode 100644 index 00000000..0a623865 --- /dev/null +++ b/strata/qt5-tools/qtserialport.morph @@ -0,0 +1,10 @@ +name: qtserialport +kind: chunk +configure-commands: +- qmake +build-commands: +- make +- make html_docs +install-commands: +- make install INSTALL_ROOT=$DESTDIR +- make install_html_docs INSTALL_ROOT=$DESTDIR diff --git a/strata/qt5-tools/qtsvg.morph b/strata/qt5-tools/qtsvg.morph new file mode 100644 index 00000000..40316a3c --- /dev/null +++ b/strata/qt5-tools/qtsvg.morph @@ -0,0 +1,10 @@ +name: qtsvg +kind: chunk +configure-commands: +- qmake +build-commands: +- make +- make html_docs +install-commands: +- make install INSTALL_ROOT=$DESTDIR +- make install_html_docs INSTALL_ROOT=$DESTDIR diff --git a/strata/qt5-tools/qttools.morph b/strata/qt5-tools/qttools.morph new file mode 100644 index 00000000..1baa10e7 --- /dev/null +++ b/strata/qt5-tools/qttools.morph @@ -0,0 +1,10 @@ +name: qttools +kind: chunk +configure-commands: +- qmake +build-commands: +- unset TARGET ; make +- unset TARGET ; make html_docs +install-commands: +- unset TARGET ; make install INSTALL_ROOT=$DESTDIR +- unset TARGET ; make install_html_docs INSTALL_ROOT=$DESTDIR diff --git a/strata/qt5-tools/qttranslations.morph b/strata/qt5-tools/qttranslations.morph new file mode 100644 index 00000000..bfb61302 --- /dev/null +++ b/strata/qt5-tools/qttranslations.morph @@ -0,0 +1,8 @@ +name: qttranslations +kind: chunk +configure-commands: +- qmake +build-commands: +- make +install-commands: +- make install INSTALL_ROOT=$DESTDIR diff --git a/strata/qt5-tools/qtwebkit-examples.morph b/strata/qt5-tools/qtwebkit-examples.morph new file mode 100644 index 00000000..b6683e65 --- /dev/null +++ b/strata/qt5-tools/qtwebkit-examples.morph @@ -0,0 +1,8 @@ +name: qtwebkit-examples +kind: chunk +configure-commands: +- qmake +build-commands: +- make +install-commands: +- make install INSTALL_ROOT=$DESTDIR diff --git a/strata/qt5-tools/qtwebkit.morph b/strata/qt5-tools/qtwebkit.morph new file mode 100644 index 00000000..c9348aca --- /dev/null +++ b/strata/qt5-tools/qtwebkit.morph @@ -0,0 +1,11 @@ +name: qtwebkit +kind: chunk +max-jobs: 1 +configure-commands: +- QMAKEPATH=/qtwebkit.build/Tools/qmake/mkspecs qmake WebKit.pro +build-commands: +- make +- make html_docs +install-commands: +- make install INSTALL_ROOT=$DESTDIR +- make install_html_docs INSTALL_ROOT=$DESTDIR diff --git a/strata/qt5-tools/qtx11extras.morph b/strata/qt5-tools/qtx11extras.morph new file mode 100644 index 00000000..edea0acf --- /dev/null +++ b/strata/qt5-tools/qtx11extras.morph @@ -0,0 +1,10 @@ +name: qtx11extras +kind: chunk +configure-commands: +- qmake +build-commands: +- make +- make html_docs +install-commands: +- make install INSTALL_ROOT=$DESTDIR +- make install_html_docs INSTALL_ROOT=$DESTDIR diff --git a/strata/qt5-tools/qtxmlpatterns.morph b/strata/qt5-tools/qtxmlpatterns.morph new file mode 100644 index 00000000..bdd32d5f --- /dev/null +++ b/strata/qt5-tools/qtxmlpatterns.morph @@ -0,0 +1,10 @@ +name: qtxmlpatterns +kind: chunk +configure-commands: +- qmake +build-commands: +- make +- make html_docs +install-commands: +- make install INSTALL_ROOT=$DESTDIR +- make install_html_docs INSTALL_ROOT=$DESTDIR diff --git a/strata/qt5-tools/ruby-1.8.morph b/strata/qt5-tools/ruby-1.8.morph new file mode 100644 index 00000000..cee282c0 --- /dev/null +++ b/strata/qt5-tools/ruby-1.8.morph @@ -0,0 +1,9 @@ +name: ruby-1.8 +kind: chunk +configure-commands: +- autoconf +- ./configure --prefix=/usr --program-suffix=-1.8 +build-commands: +- make +install-commands: +- make DESTDIR="$DESTDIR" install diff --git a/strata/qt5-tools/ruby-1.9.morph b/strata/qt5-tools/ruby-1.9.morph new file mode 100644 index 00000000..bc697ada --- /dev/null +++ b/strata/qt5-tools/ruby-1.9.morph @@ -0,0 +1,9 @@ +name: ruby-1.9 +kind: chunk +configure-commands: +- autoconf +- ./configure --prefix=/usr --enable-shared --with-baseruby=/usr/bin/ruby-1.8 +build-commands: +- make +install-commands: +- make DESTDIR="$DESTDIR" install -- cgit v1.2.1