summaryrefslogtreecommitdiff
path: root/sysutils
diff options
context:
space:
mode:
authorGarrett Wollman <wollman@FreeBSD.org>2002-10-21 21:38:20 +0000
committerGarrett Wollman <wollman@FreeBSD.org>2002-10-21 21:38:20 +0000
commit2fbf6f07eb78f05859e38bc769d3298158d248eb (patch)
tree1b70fa893f280e098a1ba879a6ba2d1524685453 /sysutils
parentUpgrade to 10.1. (diff)
It's easier to replace the whole Makefile with one that works.
(I won't speak as to the operation of the program itself, but at least it builds now.)
Notes
Notes: svn path=/head/; revision=68544
Diffstat (limited to 'sysutils')
-rw-r--r--sysutils/muse/Makefile4
-rw-r--r--sysutils/muse/files/Makefile9
2 files changed, 13 insertions, 0 deletions
diff --git a/sysutils/muse/Makefile b/sysutils/muse/Makefile
index c5f167e19c49..f0fb2e02e585 100644
--- a/sysutils/muse/Makefile
+++ b/sysutils/muse/Makefile
@@ -15,4 +15,8 @@ MAINTAINER= freebsd@spatula.net
MAN1= muse.1
MANCOMPRESSED= yes
+pre-patch:
+ ${RM} -f ${WRKSRC}/Makefile
+ ${CP} ${FILESDIR}/Makefile ${WRKSRC}
+
.include <bsd.port.mk>
diff --git a/sysutils/muse/files/Makefile b/sysutils/muse/files/Makefile
new file mode 100644
index 000000000000..17b285a8ae18
--- /dev/null
+++ b/sysutils/muse/files/Makefile
@@ -0,0 +1,9 @@
+# $FreeBSD$
+PROG= muse
+LDADD= -lkvm
+PREFIX?=/usr/local
+BINDIR= ${PREFIX}/bin
+MANDIR= ${PREFIX}/man/man
+MAN1= muse.1
+
+.include <bsd.prog.mk>