From 867d8256977dc5a60aff23524b7ff2825f482338 Mon Sep 17 00:00:00 2001 From: Edwin Groothuis Date: Sun, 16 Oct 2005 05:31:56 +0000 Subject: Yes we have a winner! Subject: Package build with non-standard (LOCAL|X11)BASE This is just a heads-up that I've started a build with LOCALBASE and X11BASE set to nonstandard values to look for ports that hard-code these (or fail to patch them). If your port has a problem, expect mail from me soon :-) Fix port. --- net/ddc/files/patch-Makefile | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 net/ddc/files/patch-Makefile (limited to 'net/ddc') 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 -- cgit v1.2.3