diff options
author | wollman <wollman@FreeBSD.org> | 2002-10-21 21:38:20 +0000 |
---|---|---|
committer | wollman <wollman@FreeBSD.org> | 2002-10-21 21:38:20 +0000 |
commit | e0bf11047f6b2255eb77de9442d28c9b6cd1061f (patch) | |
tree | 6fab091ab249ce8efb460424315e94bae8a6d8aa /sysutils/muse | |
parent | adc4df7f006cd3180351f7a8ac806fd843c726e5 (diff) | |
download | FreeBSD-ports-e0bf11047f6b2255eb77de9442d28c9b6cd1061f.zip FreeBSD-ports-e0bf11047f6b2255eb77de9442d28c9b6cd1061f.tar.gz |
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.)
Diffstat (limited to 'sysutils/muse')
-rw-r--r-- | sysutils/muse/Makefile | 4 | ||||
-rw-r--r-- | sysutils/muse/files/Makefile | 9 |
2 files changed, 13 insertions, 0 deletions
diff --git a/sysutils/muse/Makefile b/sysutils/muse/Makefile index c5f167e..f0fb2e0 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 0000000..17b285a --- /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> |