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.

40 lines
1.2 KiB

  1. # --- SDE-COPYRIGHT-NOTE-BEGIN ---
  2. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  3. #
  4. # Filename: package/.../less/less.conf
  5. # Copyright (C) 2006 The OpenSDE Project
  6. # Copyright (C) 2004 - 2006 The T2 SDE Project
  7. # Copyright (C) 1998 - 2003 Clifford Wolf
  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. # apply the patches defined in the less.desc
  17. var_append patchfiles ' ' "`match_source_file -p patch`"
  18. less_postmake() {
  19. cp $confdir/lesspipe.sh $root/$prefix/bin/lesspipe
  20. chmod +x $root/$prefix/bin/lesspipe
  21. cat > $root/etc/profile.d/less <<-EOP
  22. export LESS="--ignore-case"
  23. export LESSOPEN="|lesspipe.sh %s"
  24. if [ -f "`which lesspipe.sh`" ] ; then
  25. LESSOPEN="|`which lesspipe.sh` %s"
  26. else
  27. LESSOPEN="|lesspipe %s"
  28. fi
  29. export LESSOPEN
  30. EOP
  31. }
  32. hook_add postmake 3 "less_postmake"
  33. var_append makeinstopt " " "bindir=$root/$bindir mandir=$root/$mandir"