diff options
author | Kevin Lo <kevlo@FreeBSD.org> | 2001-07-15 15:24:10 +0000 |
---|---|---|
committer | Kevin Lo <kevlo@FreeBSD.org> | 2001-07-15 15:24:10 +0000 |
commit | 4ea7dd38ba026e4fbb006edcbcb8ad12e2dad9fe (patch) | |
tree | 2fffc9191325084f5cd7c56014fe9603cd111299 /net/smm++/files/patch-Makefile | |
parent | 65e9bc8d84654c95b8e1bfd9e563507e674135f0 (diff) | |
download | ports-4ea7dd38ba026e4fbb006edcbcb8ad12e2dad9fe.tar.gz ports-4ea7dd38ba026e4fbb006edcbcb8ad12e2dad9fe.zip |
Update to version 5r0
PR: 28984
Submitted by: MAINTAINER
Notes
Notes:
svn path=/head/; revision=45149
Diffstat (limited to 'net/smm++/files/patch-Makefile')
-rw-r--r-- | net/smm++/files/patch-Makefile | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/net/smm++/files/patch-Makefile b/net/smm++/files/patch-Makefile new file mode 100644 index 000000000000..288644e9fdb0 --- /dev/null +++ b/net/smm++/files/patch-Makefile @@ -0,0 +1,44 @@ +--- /home/edwin/smm5r0/Install.unix/Makefile Fri Jun 15 07:05:56 2001 ++++ Makefile Sun Jul 15 19:20:06 2001 +@@ -12,7 +12,7 @@ + # usual unix environment (if you have root access). + BIN=/usr/local/bin + SRC=/usr/local/lib/smm +-DOC=/usr/local/doc/smm ++DOC=/usr/local/share/doc/smm + + # --- If you don't have root access, you could choose to install + # SMM++ locally in your home directory. Therefore use the +@@ -60,6 +60,8 @@ + # this Makefile. If you can read Makefiles, feel free + # to do whatever you like. + ++all: smm ++ + smm: Makefile + @echo "--- Building startup file." + @if [ -z ${ITKWISH} ] ; then \ +@@ -89,9 +91,9 @@ + install-src: + @echo "--- Installing libraries to ${SRC}." + @install -d ${SRC} +- @cp -au ../sources/ ${SRC} +- @cp -au ../images/ ${SRC} +- @cp -au ../config/ ${SRC} ++ @cp -Rp ../sources ${SRC} ++ @cp -Rp ../images ${SRC} ++ @cp -Rp ../config ${SRC} + uninstall-src: + @echo "--- Uninstalling libraries from ${SRC}." + @rm -rf ${SRC} +@@ -100,8 +102,8 @@ + @echo " Documentation is installed in ${DOC}." + @echo " The html manual starts at file:${DOC}/man/index.html." + @install -d ${DOC} +- @cp -au ../docu/* ${DOC} +- @cp -au ../man/ ${DOC} ++ @cp -Rp ../docu/* ${DOC} ++ @cp -Rp ../man/ ${DOC} + uninstall-doc: + @echo "--- Uninstalling documentation from ${DOC}." + @rm -rf ${DOC} |