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.

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