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.

54 lines
1.8 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/base/openssl/openssl.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. openssl_main() {
  23. # We can't use ./config becouse that would probably add optimize
  24. # options which won't work on our taget system.
  25. case "$arch_machine" in
  26. i?86) trg=linux-elf ;;
  27. alpha) trg=linux-alpha-gcc ;;
  28. powerpc) trg=linux-ppc ;;
  29. sparc) case $ROCKCFG_SPARC_OPT in
  30. v9) trg=linux-sparcv9 ;;
  31. v8) trg=linux-sparcv8 ;;
  32. *) trg=linux-sparcv7 ;;
  33. esac ;;
  34. mips) if [ "$arch_bigendian" == "yes" ] ; then
  35. trg=linux-mips ;
  36. else
  37. trg=linux-mipsel ;
  38. fi ;;
  39. *) echo "Add arch-setting to openssl.conf!" ; exit 1 ;;
  40. esac
  41. ./Configure --prefix=/usr --openssldir=/etc/ssl $trg shared
  42. mkdir -p /etc/ssl ; rm -rf /etc/ssl/man /etc/ssl/lib /etc/ssl/include
  43. rm -rf $docdir/*
  44. cp -r doc $docdir ; mkdir $docdir/man ; ln -s $docdir/man /etc/ssl/man
  45. ln -s /usr/lib /usr/include /etc/ssl/
  46. eval $MAKE install
  47. }
  48. custmain="openssl_main"