diff options
author | itojun <itojun> | 2001-01-23 10:37:41 +0000 |
---|---|---|
committer | itojun <itojun> | 2001-01-23 10:37:41 +0000 |
commit | 961db547f5344f30296ece317a83ce5d9ba3a58f (patch) | |
tree | df463026cadb910086016d54af4e7d079c824f09 | |
parent | ef4c71475de5bcefcac96fae3d0863d00bb4bc7d (diff) | |
download | pkgsrc-961db547f5344f30296ece317a83ce5d9ba3a58f.tar.gz |
gmake is needed.
http://www-mtl.mit.edu/~mcmahill/netbsd/pkgstat/2001-01-23-alpha/fonts/jisx0208fonts/.broken.alpha-1.5_bondage
-rw-r--r-- | fonts/jisx0208fonts/Makefile | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/fonts/jisx0208fonts/Makefile b/fonts/jisx0208fonts/Makefile index 0741bbc3049..a3ad496e0a9 100644 --- a/fonts/jisx0208fonts/Makefile +++ b/fonts/jisx0208fonts/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.7 2001/01/12 15:00:09 itojun Exp $ +# $NetBSD: Makefile,v 1.8 2001/01/23 10:37:41 itojun Exp $ # DISTNAME= jisx0208fonts-20010112 @@ -10,6 +10,9 @@ DISTFILES= ${ELISA10X8} ${ELISA8X8} ${KANAME12} ${KAPPA20} ${NAGA10} \ MAINTAINER= tech-pkg-ja@jp.netbsd.org +# not USE_GMAKE +BUILD_DEPENDS+= ${GMAKE}:../../devel/gmake + USE_NON_RECTANGULAR?= NO USE_SHINONOME?= YES USE_KANAME?= YES @@ -80,8 +83,8 @@ post-extract: @(cd ${WRKDIR}/shinonome12-1.0.8 ; \ ${SETENV} ${SHINONOME_CONFIGURE_ENV} ${CONFIGURE_SCRIPT} \ ${SHINONOME_CONFIGURE_ARGS} ; \ - ${SETENV} ${MAKE_ENV} gmake bdf; \ - rm hankaku/*.bdf latin1/*.bdf) + ${SETENV} ${MAKE_ENV} ${GMAKE} bdf; \ + ${RM} hankaku/*.bdf latin1/*.bdf) .endif (cd ${WRKSRC}; ${MAKE} prepare) @@ -91,7 +94,7 @@ PATCHDIR= ${.CURDIR}/NO-EXIST .endif pre-install: - [ -d ${FONTDIR} ] || ${MKDIR} -p ${FONTDIR} + [ -d ${FONTDIR} ] || ${MKDIR} ${FONTDIR} post-install: ${MKDIR} ${PREFIX}/share/doc/jisx0208fonts |