summaryrefslogtreecommitdiff
path: root/libraries/qt3/profile.d/qt.csh
diff options
context:
space:
mode:
authorNiels Horn <niels.horn@slackbuilds.org>2011-03-24 23:54:54 -0300
committerRobby Workman <rworkman@slackbuilds.org>2011-03-25 23:26:21 -0500
commit4544e04b263f12baa34c1a57f38839d5a3c4e464 (patch)
treee6cd99d4aaf255e0dbc46ef9e81a2a06b702890f /libraries/qt3/profile.d/qt.csh
parentd7277dab33344970e645a521bfe7cef240813e9b (diff)
downloadslackbuilds-4544e04b263f12baa34c1a57f38839d5a3c4e464.tar.gz
libraries/qt3: Added (dependency, was removed from Slackware 13.37)
Signed-off-by: Niels Horn <niels.horn@slackbuilds.org>
Diffstat (limited to 'libraries/qt3/profile.d/qt.csh')
-rw-r--r--libraries/qt3/profile.d/qt.csh22
1 files changed, 22 insertions, 0 deletions
diff --git a/libraries/qt3/profile.d/qt.csh b/libraries/qt3/profile.d/qt.csh
new file mode 100644
index 0000000000..490877c4fe
--- /dev/null
+++ b/libraries/qt3/profile.d/qt.csh
@@ -0,0 +1,22 @@
+#!/bin/csh
+# Environment path variables for the Qt package:
+if ( ! $?QTDIR ) then
+ # It's best to use the generic directory to avoid
+ # compiling in a version-containing path:
+ if ( -d /opt/kde3/lib/qt3 ) then
+ setenv QTDIR /opt/kde3/lib/qt3
+ else
+ # Find the newest Qt directory and set $QTDIR to that:
+ foreach qtd ( /opt/kde3/lib/qt-* )
+ if ( -d $qtd ) then
+ setenv QTDIR $qtd
+ endif
+ end
+ endif
+endif
+set path = ( $path $QTDIR/bin /opt/kde3/bin )
+if ( $?CPLUS_INCLUDE_PATH ) then
+ setenv CPLUS_INCLUDE_PATH $QTDIR/include:$CPLUS_INCLUDE_PATH
+else
+ setenv CPLUS_INCLUDE_PATH $QTDIR/include
+endif