pkgsrc-Bugs archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

Re: PR/47883 CVS commit: pkgsrc/mk/tools



The following reply was made to PR pkg/47883; it has been noted by GNATS.

From: Izumi Tsutsui <tsutsui%ceres.dti.ne.jp@localhost>
To: dholland-pbugs%NetBSD.org@localhost
Cc: gnats-bugs%NetBSD.org@localhost, tsutsui%ceres.dti.ne.jp@localhost
Subject: Re: PR/47883 CVS commit: pkgsrc/mk/tools
Date: Thu, 4 Jul 2013 20:31:20 +0900

 >  >  >  Modified Files:
 >  >  >        pkgsrc/mk/tools: replace.mk
 >  >  >  
 >  >  >  Log Message:
 >  >  >  create X related tools also for X11_TYPE=native.
 >  >  >  
 >  >  >  might fix PR pkg/47883.
 >  >  
 >  >  Should the following commits that changed bdftopcf to 
 > ${TOOLS_PATH.bdftopcf}
 >  >  (and also changed gzip to ${TOOLS_PATH.gzip}) also be reverted?
 >  >  http://mail-index.netbsd.org/pkgsrc-changes/2011/11/23/msg063416.html
 >  >  http://mail-index.netbsd.org/pkgsrc-changes/2012/04/18/msg071259.html
 > 
 > I don't think so. Stuff that is run from the pkgsrc makefile doesn't
 > run within the wrapper system (unless you do it explicitly) so those
 > changes are still necessary. (AFAIK.)
 
 I don't understand what you mean.
 
 What's different among the following Makefile stuff?
 
 (1) pkgsrc/fonts/jisx0213fonts/Makefile (which was "fixed" in this PR)
 ---
 do-build:
        @cd ${WRKSRC}; \
        for f in ${FONTS}; do \
                bdftopcf $${f}.bdf | \
                ${GZIP_CMD} -c >$${f}.pcf.gz; \
        done
 ---
 
 (2) pkgsrc/fonts/uni-vga/Makefile
 ---
 do-build:
        ${TOOLS_PATH.bdftopcf} -o ${WRKSRC}/u_vga16.pcf ${WRKSRC}/u_vga16.bdf
        ${TOOLS_PATH.gzip} -9 ${WRKSRC}/u_vga16.pcf
 ---
 
 (3) pkgsrc/fonts/misaki-fonts/Makefile
 ---
 do-build:
 .for filename in ${INSTALL_FONTS}
        ${TOOLS_PATH.bdftopcf}  -o ${WRKSRC}/${filename:S/bdf/pcf/} 
${WRKSRC}/${filename}
        ${GZIP_CMD} ${WRKSRC}/${filename:S/bdf/pcf/}
 .endfor
 ---
 


Home | Main Index | Thread Index | Old Index