summaryrefslogtreecommitdiffstats
path: root/ubuntu/maverick/dependencies/qt3/debian/maintain/build-examples.sh
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2019-04-03 23:02:46 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2019-04-03 23:02:46 +0900
commitfcad8b8d150fb9f508973e3044a103de74ec3877 (patch)
treeca34a8cf3bfbe08335d40c47863b4901e1d19609 /ubuntu/maverick/dependencies/qt3/debian/maintain/build-examples.sh
parent5d8ed1fab813d86b04383f7fcf8ab2c994cbea30 (diff)
downloadtde-packaging-fcad8b8d150fb9f508973e3044a103de74ec3877.tar.gz
tde-packaging-fcad8b8d150fb9f508973e3044a103de74ec3877.zip
DEB: use _base folder for a distro instead of specific distros (squeeze and maverick).
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'ubuntu/maverick/dependencies/qt3/debian/maintain/build-examples.sh')
-rw-r--r--ubuntu/maverick/dependencies/qt3/debian/maintain/build-examples.sh36
1 files changed, 0 insertions, 36 deletions
diff --git a/ubuntu/maverick/dependencies/qt3/debian/maintain/build-examples.sh b/ubuntu/maverick/dependencies/qt3/debian/maintain/build-examples.sh
deleted file mode 100644
index b56d51e42..000000000
--- a/ubuntu/maverick/dependencies/qt3/debian/maintain/build-examples.sh
+++ /dev/null
@@ -1,36 +0,0 @@
-#!/bin/sh
-
-BUILDDIR=$PWD
-export QTDIR=/usr/share/qt3
-
-# first copy over the libqt-mt.so build configuration of .qmake.cache
-cp /usr/share/qt3/.qmake.cache ./.qmake.cache
-
-# Now compile the examples. The themes example
-# won't work since qconfig.h is not really correct with the
-# ifdef's for the QT_NO_xyz_STYLE, so we use make -k to continue
-cd examples; qmake -o Makefile examples.pro; make -k
-
-# Now compile the tutorial.
-cd $BUILDDIR/tutorial; qmake -o Makefile tutorial.pro; make
-
-# Then the designer examples.
-cd $BUILDDIR/tools/designer/examples
-for a in `find . -type d -maxdepth 1 -mindepth 1`; do
- cd $a && qmake -o Makefile $a.pro; make; cd ..;
-done
-
-# There is a bigger sql example in book/ with more subdirectories:
-cd book
-for a in `find . -type d -maxdepth 1 -mindepth 1`; do
- cd $a && qmake -o Makefile $a.pro; make; cd ..;
-done
-
-# Finally, build the linguist tutorials:
-cd $BUILDDIR/tools/linguist/tutorial
-for a in `find . -type d -maxdepth 1 -mindepth 1`; do
- cd $a && qmake -o Makefile $a.pro; make; cd ..;
-done
-
-# Return to the build directory
-cd $BUILDDIR