mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-04 20:29:09 +01:00
4544e04b26
Signed-off-by: Niels Horn <niels.horn@slackbuilds.org>
22 lines
685 B
Tcsh
22 lines
685 B
Tcsh
#!/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
|