diff options
author | ats <ats@FreeBSD.org> | 1995-08-01 22:10:14 +0000 |
---|---|---|
committer | ats <ats@FreeBSD.org> | 1995-08-01 22:10:14 +0000 |
commit | ae843dc2ebc1aed5913ef8ada6b08f72d4be359b (patch) | |
tree | 373b98984dd3b483d49b9e546e642b2730ccfc39 /japanese/kon2-16dot | |
parent | ed31df94019354e31bbea06b197e3860fdcf761b (diff) | |
download | FreeBSD-ports-ae843dc2ebc1aed5913ef8ada6b08f72d4be359b.zip FreeBSD-ports-ae843dc2ebc1aed5913ef8ada6b08f72d4be359b.tar.gz |
Fix the Makefile that it also works for the MASTER_SITE_OVERRIDE case.
The fonts are already in the distfiles and can be fetched with the
normal fetch target.
Diffstat (limited to 'japanese/kon2-16dot')
-rw-r--r-- | japanese/kon2-16dot/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/japanese/kon2-16dot/Makefile b/japanese/kon2-16dot/Makefile index ea9d163..4892d87 100644 --- a/japanese/kon2-16dot/Makefile +++ b/japanese/kon2-16dot/Makefile @@ -3,7 +3,7 @@ # Date created: 7 June 1995 # Whom: Takashi Ogura <ogura@st.rim.or.jp> # -# $Id: Makefile,v 1.1.1.1 1995/06/24 09:25:16 asami Exp $ +# $Id: Makefile,v 1.2 1995/06/25 11:46:09 asami Exp $ # DISTNAME= kon @@ -12,13 +12,18 @@ CATEGORIES+= japanese MASTER_SITES= ftp://ftp.iij.ad.jp/pub/linux-j/JE-sources/JE/ DISTFILES= kon-0.99.4e.tgz +.if !defined(MASTER_SITE_OVERRIDE) FONT_SITE= ftp://ftp.iij.ad.jp/pub/X/XFree86/XFree86/3.1.1/untarred/xc/fonts/bdf/misc/ FONTFILES= k14.bdf 7x14rk.bdf +.else +DISTFILES += k14.bdf 7x14rk.bdf +.endif MAINTAINER= asami@FreeBSD.ORG USE_GMAKE= yes +.if !defined(MASTER_SITE_OVERRIDE) pre-fetch: @(cd ${DISTDIR}; \ for file in ${FONTFILES} ; do \ @@ -28,6 +33,7 @@ pre-fetch: fi \ fi \ done) +.endif post-configure: sed -e 's%%CURDIR%%${.CURDIR}' \ |