diff options
author | Andreas Schulz <ats@FreeBSD.org> | 1995-02-12 23:22:13 +0000 |
---|---|---|
committer | Andreas Schulz <ats@FreeBSD.org> | 1995-02-12 23:22:13 +0000 |
commit | 887a4441040dbd0d16e2ef8a91bdecf2549b4c2d (patch) | |
tree | fffbcb020b6e8ce3240778a081f1f34f84734485 /x11-fonts | |
parent | Put an empty fetch target into the Makefile. Otherwise it tries to fetch (diff) |
Add code to get the MASTER_SITE_OVERRIDE working for the fetch target.
Notes
Notes:
svn path=/head/; revision=960
Diffstat (limited to 'x11-fonts')
-rw-r--r-- | x11-fonts/xfed/Makefile | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/x11-fonts/xfed/Makefile b/x11-fonts/xfed/Makefile index b783676cc5de..3e1fa75fb98e 100644 --- a/x11-fonts/xfed/Makefile +++ b/x11-fonts/xfed/Makefile @@ -3,19 +3,21 @@ # Date created: 7 December 1994 # Whom: asami # -# $Id: Makefile,v 1.2 1994/12/12 04:31:49 gpalmer Exp $ +# $Id: Makefile,v 1.3 1995/02/12 17:48:25 jmz Exp $ # +USE_IMAKE= yes +MAKE_FLAGS= MANDIR=${PREFIX}/man/man1 BINDIR=${PREFIX}/bin -f DISTNAME= xfed TARFILE= xfed.tar.gz + +.if !defined(MASTER_SITE_OVERRIDE) SOURCEFILES= Epistle,README,Imakefile,xfed.man \ icon.bit,next.bit,prev.bit,quit.bit,save.bit \ defs.h,main.c,output.c,parse.y,scan.l -USE_IMAKE= yes #MASTER_SITES= ftp://me10.lbl.gov/pub/hp_X11R3_tape/source/app/ SOURCESITE= ftp://ftp.cs.orst.edu/pub/src/X11R4/contrib/clients/xfed/ #EXTRACT_SUFX= .tar.Z -MAKE_FLAGS= MANDIR=${PREFIX}/man/man1 BINDIR=${PREFIX}/bin -f fetch: pre-fetch @if [ ! -d ${DISTDIR} ]; then mkdir -p ${DISTDIR}; fi @@ -32,5 +34,6 @@ fetch: pre-fetch tar -C ${.CURDIR}/src -czf ${DISTDIR}/${TARFILE} xfed; \ rm -rf ${.CURDIR}/src; \ fi +.endif .include <bsd.port.mk> |