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.

70 lines
2.5 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 $root/etc/ssl/{man,lib,include}
  46. rm -rf $docdir/* ; cp -r doc $docdir
  47. ln -s /usr/lib /usr/include $root/etc/ssl/
  48. # the openssl makefile expects the 'r' mode to be passed
  49. # already in the $(AR) variable ..
  50. AR="$AR r"
  51. eval "$MAKE $makeopt all"
  52. eval "$MAKE INSTALL_PREFIX=$root install"
  53. # these three conflict with shadow (and others) man-pages
  54. mv -v $root/etc/ssl/man/man1/passwd.1 $root/usr/share/man/man1/openssl_passwd.1
  55. mv -v $root/etc/ssl/man/man3/err.3 $root/usr/share/man/man3/openssl_err.3
  56. mv -v $root/etc/ssl/man/man3/rand.3 $root/usr/share/man/man3/openssl_rand.3
  57. mv -v $root/etc/ssl/man/man3/threads.3 $root/usr/share/man/man3/openssl_threads.3
  58. find $root/etc/ssl/man -type f \
  59. | while read x ; do
  60. mv -v "$x" $root/usr/share/"${x#$root/etc/ssl/}"
  61. done
  62. rm -rf $root/etc/ssl/man
  63. }
  64. custmain="openssl_main"