diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-21 21:18:36 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-21 21:18:36 +0000 |
commit | 5e266f8f85ead4c33f7a9d227a82b0461df7e09a (patch) | |
tree | 29ee823e9a8b87b3213db0a14fbe7148edcd5365 /qtinterface/dcopidl2cpp-tqt | |
parent | ce4313a6257fee35d97e07d22956f42916d4905c (diff) | |
download | tqtinterface-5e266f8f85ead4c33f7a9d227a82b0461df7e09a.tar.gz tqtinterface-5e266f8f85ead4c33f7a9d227a82b0461df7e09a.zip |
Significant upgrades to the TQT system; kdelibs and kdebase now build and run correctly through TQT and Qt3
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/dependencies/tqtinterface@1152745 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'qtinterface/dcopidl2cpp-tqt')
-rwxr-xr-x | qtinterface/dcopidl2cpp-tqt | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/qtinterface/dcopidl2cpp-tqt b/qtinterface/dcopidl2cpp-tqt new file mode 100755 index 0000000..e41d002 --- /dev/null +++ b/qtinterface/dcopidl2cpp-tqt @@ -0,0 +1,28 @@ +#!/bin/bash + +if [[ $1 == "" ]]; then + echo "Usage: dcopidl2cpp-tqt <dcopidl2cpp_binary> <options> <input_kidl_file>" +else + # This is more complicated than the others, as the kidl file must be parsed and the input files extracted + + # Extract the source working directory and all input files + INPUT_FILES=$(cat ${BASH_ARGV[0]} | grep "<SOURCE>" | sed 's/<SOURCE>//g' | sed 's/<\/SOURCE>//g' | xargs) + INPUT_DIR=${INPUT_FILES%/*} + + # Redirect all input files + for curfile in $INPUT_FILES + do + cp -Rp "$curfile" "$curfile.bkp" +# tqt-replace "$curfile" + done + + # Execute the dcopidl2cpp command + $@ + + # Undo input file redirection + for curfile in $INPUT_FILES + do + cp -Rp "$curfile.bkp" "$curfile" + rm -f "$curfile.bkp" + done +fi |