OpenSDE Packages Database (without history before r20070)
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.

62 lines
2.1 KiB

  1. # --- SDE-COPYRIGHT-NOTE-BEGIN ---
  2. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  3. #
  4. # Filename: package/.../vserver22/pkg_linux_pre.conf
  5. # Copyright (C) 2006 - 2007 The OpenSDE Project
  6. # Copyright (C) 2004 - 2006 The T2 SDE Project
  7. # Copyright (C) 1998 - 2003 ROCK Linux Project
  8. #
  9. # More information can be found in the files COPYING and README.
  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; version 2 of the License. A copy of the
  14. # GNU General Public License can be found in the file COPYING.
  15. # --- SDE-COPYRIGHT-NOTE-END ---
  16. pkg_ctx_confdir=$base/package/*/vserver22
  17. # tempdir
  18. pkg_ctx_tempdir=`mktemp -d`
  19. #hook_add postpatch 6 "rm -rf $pkg_ctx_tempdir"
  20. # detect /best fit/ linux patch
  21. pkg_ctx_lxver=$ver.
  22. pkg_ctx_patch=
  23. while [ "$pkg_ctx_lxver" != "${pkg_ctx_lxver%.*}" -a -z "$pkg_ctx_patch" ]; do
  24. pkg_ctx_lxver=${pkg_ctx_lxver%.*}
  25. pkg_ctx_patch=`match_source_file -p " patch-${pkg_ctx_lxver}[^ ]*-vs[^ q].*.diff" vserver22 | head -n1`
  26. done
  27. [ -z "$pkg_ctx_patch" ] && abort "no vserver patch found for linux $ver"
  28. # find supplementary fixes
  29. pkg_ctx_fixes_pattern="`basename ${pkg_ctx_patch%.diff} .diff`[.].*[.]diff"
  30. pkg_ctx_fixes="`match_source_file -p " ${pkg_ctx_fixes_pattern}" vserver22`"
  31. # prepare vserver patch
  32. pkg_ctx_ver=$( echo $pkg_ctx_patch | sed -n -e 's,.*-vs\(.*\).diff.*,\1,p' )
  33. # remove extraversion from patch and inject in lx_extraversion by hand
  34. [[ ${pkg_ctx_patch} == *.bz2 ]] && x=bzcat || x=cat
  35. $x ${pkg_ctx_patch} | gawk "
  36. BEGIN { FS=\"[ /\t]\"
  37. removethis=0
  38. }
  39. /^--- / {
  40. if ( \$3 == \"Makefile\" )
  41. removethis=1
  42. else
  43. removethis=0
  44. }
  45. /.*/ {
  46. if ( removethis != 1 )
  47. print
  48. }
  49. " > $pkg_ctx_tempdir/vserver-${pkg_ctx_ver}.patch
  50. echo_status "Including VServer ($pkg_ctx_ver) support."
  51. hook_add postpatch 5 "lx_extraversion=\$lx_extraversion-vs${pkg_ctx_ver}"
  52. var_append patchfiles ' ' $pkg_ctx_tempdir/vserver-$pkg_ctx_ver.patch
  53. [ -n "${pkg_ctx_fixes}" ] && var_append patchfiles ' ' ${pkg_ctx_fixes}