diff options
author | edwin <edwin@FreeBSD.org> | 2005-10-16 13:31:56 +0800 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2005-10-16 13:31:56 +0800 |
commit | f197ea241a42e6644f554d074388fa1674b46c11 (patch) | |
tree | 92235f333ccd8ce8e5aa958397581fe5bc009280 /net/ddc | |
parent | c4069ef60ddaec6edffd3a7c68a84f0ceded1f6a (diff) | |
download | freebsd-ports-gnome-f197ea241a42e6644f554d074388fa1674b46c11.tar.gz freebsd-ports-gnome-f197ea241a42e6644f554d074388fa1674b46c11.tar.zst freebsd-ports-gnome-f197ea241a42e6644f554d074388fa1674b46c11.zip |
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.
Diffstat (limited to 'net/ddc')
-rw-r--r-- | net/ddc/files/patch-Makefile | 18 |
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 |