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.

45 lines
1.3 KiB

  1. # --- SDE-COPYRIGHT-NOTE-BEGIN ---
  2. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  3. #
  4. # Filename: package/.../pdisk/makefile.patch
  5. # Copyright (C) 2004 - 2006 The T2 SDE Project
  6. # Copyright (C) 1998 - 2003 Clifford Wolf
  7. #
  8. # More information can be found in the files COPYING and README.
  9. #
  10. # This patch file is dual-licensed. It is available under the license the
  11. # patched project is licensed under, as long as it is an OpenSource license
  12. # as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms
  13. # of the GNU General Public License as published by the Free Software
  14. # Foundation; either version 2 of the License, or (at your option) any later
  15. # version.
  16. # --- SDE-COPYRIGHT-NOTE-END ---
  17. --- ./makefile 2000-05-16 10:02:05.000000000 -0500
  18. +++ ./makefile 2002-12-21 11:57:46.000000000 -0500
  19. @@ -11,7 +11,6 @@
  20. DOCS= \
  21. HISTORY \
  22. README \
  23. - $(MAN_PAGE) \
  24. $(MAC_DOC)
  25. SERVER_README = \
  26. @@ -141,6 +140,17 @@
  27. cvt_pt: $(CVT_OBJECTS)
  28. cc -o cvt_pt $(CVT_OBJECTS)
  29. +doc_prepare:
  30. + mkdir doc
  31. + cp $(DOCS) doc
  32. +
  33. +install: all doc_prepare
  34. + install -d -m 755 /sbin
  35. + install -d -m 755 /usr/man/man8
  36. + install -s pdisk /sbin
  37. + install -s cvt_pt /sbin
  38. + install -m 444 pdisk.8 /usr/man/man8
  39. +
  40. tags: $(MAC_SOURCE) $(UNIX_SOURCE)
  41. ctags $(MAC_SOURCE) $(UNIX_SOURCE)