aboutsummaryrefslogtreecommitdiff
path: root/net/ddc
diff options
context:
space:
mode:
authorEdwin Groothuis <edwin@FreeBSD.org>2005-10-16 05:31:56 +0000
committerEdwin Groothuis <edwin@FreeBSD.org>2005-10-16 05:31:56 +0000
commit867d8256977dc5a60aff23524b7ff2825f482338 (patch)
tree32773bce95bb3f82bbb13db472a8b4f72d4ec42e /net/ddc
parentc5901abb64fe8e9df8556b348579d93304600dda (diff)
Notes
Diffstat (limited to 'net/ddc')
-rw-r--r--net/ddc/files/patch-Makefile18
1 files changed, 18 insertions, 0 deletions
diff --git a/net/ddc/files/patch-Makefile b/net/ddc/files/patch-Makefile
new file mode 100644
index 000000000000..c54d96c01306
--- /dev/null
+++ b/net/ddc/files/patch-Makefile
@@ -0,0 +1,18 @@
+--- Makefile.orig Sun Oct 16 15:28:34 2005
++++ Makefile Sun Oct 16 15:29:02 2005
+@@ -2,10 +2,10 @@
+ @echo "\"make install\" and \"make uninstall\" are the only things that work"
+
+ install:
+- for dir in /usr/local/bin /usr/local/man /usr/local/man/man8; do test -d $$dir || ( mkdir $$dir; chmod 755 $$dir) ; done
+- install -c -m 755 ddc /usr/local/bin
+- install -c ddc.8 /usr/local/man/man8
++ for dir in ${PREFIX}/bin ${PREFIX}/man ${PREFIX}/man/man8; do test -d $$dir || ( mkdir $$dir; chmod 755 $$dir) ; done
++ install -c -m 755 ddc ${PREFIX}/bin
++ install -c ddc.8 ${PREFIX}/man/man8
+
+ uninstall:
+- rm /usr/local/bin/ddc
+- rm /usr/local/man/man8/ddc.8
++ rm ${PREFIX}/bin/ddc
++ rm ${PREFIX}/man/man8/ddc.8