diff options
author | sobomax <sobomax@FreeBSD.org> | 2001-06-07 09:26:51 +0000 |
---|---|---|
committer | sobomax <sobomax@FreeBSD.org> | 2001-06-07 09:26:51 +0000 |
commit | 2828b3f59022429c89097f6f14cec7be8969b600 (patch) | |
tree | 9026a2568620e0fdb3e4ddf099752ae4f4f54666 /editors/led/files | |
parent | 0d9a4837b94529f89289b0b8c9a731fb6fe0c3cc (diff) | |
download | FreeBSD-ports-2828b3f59022429c89097f6f14cec7be8969b600.zip FreeBSD-ports-2828b3f59022429c89097f6f14cec7be8969b600.tar.gz |
- Pass over maintainership to Jordan DeLong <fracture@allusion.net> - he is
author of the led, so would be a best MAINTAINER for it;
- update distinfo - distfile has been re-rolled w/o version bump (some
important bugs were fixed). Update PORTREVISION as a result;
- strip binary and shared modules on install;
- install sample configuration file and mention it via PKGMESSAGE.
PR: 27914
Submitted by: Jordan DeLong <fracture@allusion.net>
Diffstat (limited to 'editors/led/files')
-rw-r--r-- | editors/led/files/patch-Makefile.in | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/editors/led/files/patch-Makefile.in b/editors/led/files/patch-Makefile.in new file mode 100644 index 0000000..917e600 --- /dev/null +++ b/editors/led/files/patch-Makefile.in @@ -0,0 +1,19 @@ + +$FreeBSD$ + +--- Makefile.in 2001/06/07 09:15:55 1.1 ++++ Makefile.in 2001/06/07 09:15:12 +@@ -28,11 +28,11 @@ + + install: all + @INSTALL@ -d @prefix@/bin +- @INSTALL@ src/$(PROG) @prefix@/bin/ ++ @INSTALL@ -s src/$(PROG) @prefix@/bin/ + + @INSTALL@ -d @prefix@/lib/$(PROG) + for i in build-modes/* ; do \ +- @INSTALL@ $$i @prefix@/lib/$(PROG)/ ; \ ++ @INSTALL@ -s $$i @prefix@/lib/$(PROG)/ ; \ + done + + @INSTALL@ -d @prefix@/man/man1 |