mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

69 lines
2.3 KiB

  1. # --- ROCK-COPYRIGHT-NOTE-BEGIN ---
  2. #
  3. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  4. # Please add additional copyright information _after_ the line containing
  5. # the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by
  6. # the ./scripts/Create-CopyPatch script. Do not edit this copyright text!
  7. #
  8. # ROCK Linux: rock-src/package/kde31/qt31/qt31.conf
  9. # ROCK Linux is Copyright (C) 1998 - 2003 Clifford Wolf
  10. #
  11. # This program is free software; you can redistribute it and/or modify
  12. # it under the terms of the GNU General Public License as published by
  13. # the Free Software Foundation; either version 2 of the License, or
  14. # (at your option) any later version. A copy of the GNU General Public
  15. # License can be found at Documentation/COPYING.
  16. #
  17. # Many people helped and are helping developing ROCK Linux. Please
  18. # have a look at http://www.rocklinux.org/ and the Documentation/TEAM
  19. # file for details.
  20. #
  21. # --- ROCK-COPYRIGHT-NOTE-END ---
  22. if [ $prefix_auto = 1 ] ; then
  23. prefix="opt/qt31"
  24. set_confopt
  25. fi
  26. qt_main() {
  27. export QTDIR=$PWD
  28. # an optimization crashes g++ during the Makefile generator build :-(
  29. echo "yes" | ( CXX_WRAPPER_BYPASS=1 ; ./configure \
  30. -prefix $root/$prefix -thread -stl -qt-gif -system-zlib \
  31. -system-libmng -system-libpng -system-libjpeg -xft -xrender )
  32. # QT-3.0.5 only:
  33. # The file src/Makefile needs a fix. Striping a directory does not work.
  34. # The two lines 'strip "$(INSTALL_ROOT)/usr/doc/html/"' must be deleted.
  35. #mv src/Makefile src/Makefile.tmp
  36. #sed -e '/-strip/p' -e '/strip/d' src/Makefile.tmp > src/Makefile
  37. eval $MAKE ; eval $MAKE install
  38. #mkdir -p $root/$prefix
  39. #rm -fv include/qt_windows.h ; cp -rvLf include $root/$prefix
  40. #rm -fv lib/README ; cp -rvf lib $root/$prefix
  41. #cp -rvf bin $root/$prefix
  42. (cd $root/$prefix/lib/ ; for x in libqt-mt.so* ; do
  43. ln -svf $x `echo $x | sed 's,-mt,,'` ;done)
  44. echo "Copy some documentation:"
  45. cp -r ch* doc/html tutorial examples extensions tools $docdir
  46. find $docdir -name '*.o' | xargs rm -vf
  47. find $docdir -type f -perm +111 | xargs strip -v || true
  48. cat > $root/etc/profile.d/qt-31 <<-EOP
  49. QT31DIR=/$prefix
  50. QTDIR=/$prefix
  51. PATH="\$PATH:\$QT31DIR/bin"
  52. MANPATH="\$MANPATH:\$QT31DIR/man"
  53. export QT31DIR QTDIR PATH MANPATH
  54. EOP
  55. }
  56. createdocs=0
  57. custmain=qt_main