diff options
author | Satoshi Asami <asami@FreeBSD.org> | 1997-04-18 09:37:20 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 1997-04-18 09:37:20 +0000 |
commit | 02d74611621456d097fbf1b6bdae8d3fb0e89fbd (patch) | |
tree | 8767b662918e504c81ad578f67a63ea1f5963bf2 /audio | |
parent | Add hanterm, hanterm-autofont, hanterm-xf86 and johabfonts. (diff) |
Fix several bogons. This port still doesn't compile, though. The build
target does nothing (if I go into work/ and type "make all" it doesn't
do anything, either).
(1) BUILD_DEPENDS is not supposed to be a single program name; it's a
program name:directory pair. Please check other ports or the
handbook.
(2) Use NO_WRKSUBDIR.
(3) /usr/local/interviews/bin/FREEBSD is not in everyone's path, so
specify XMKMF with full pathname.
Notes
Notes:
svn path=/head/; revision=6232
Diffstat (limited to 'audio')
-rw-r--r-- | audio/mxv/Makefile | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/audio/mxv/Makefile b/audio/mxv/Makefile index b19f36ad64a3..dbd4c43cb83c 100644 --- a/audio/mxv/Makefile +++ b/audio/mxv/Makefile @@ -3,7 +3,7 @@ # Date created: 17 March 1997 # Whom: davidn@blaze.net.au # -# $Id$ +# $Id: Makefile,v 1.1.1.1 1997/04/17 07:05:38 davidn Exp $ # DISTNAME= mxv-v1.10-source @@ -17,13 +17,14 @@ MASTER_SITES= ftp://ftp.ccmrc.ucsb.edu/pub/MixViews/source/ #and and a hand-edited version is supplied in the patches subdir MAINTAINER= davidn@blaze.net.au -#From InterViews 3.1 -BUILD_DEPENDS= ivmkmf +BUILD_DEPENDS= ${LOCALBASE}/interviews/bin/FREEBSD/ivmkmf:${PORTSDIR}/x11/iv + +NO_WRKSUBDIR= yes USE_IMAKE= yes -WRKSRC= $(WRKDIR) #ivmkmf -a (with makedepend) not recommended by documentation -XMKMF= env CPU=FREEBSD ivmkmf;make Makefiles +XMKMF= env CPU=FREEBSD ${LOCALBASE}/interviews/bin/FREEBSD/ivmkmf; \ + make Makefiles do-install: ${INSTALL_PROGRAM} ${WRKSRC}/FREEBSD/mxv ${PREFIX}/bin |