mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-05 22:43:24 +00:00
edcf8b3594
Now try to use those variables everywhere around DIST* and PATCH* definitions as far as possible, for ease of the future updates and the neatness. Okay, 60% of `japanese' ports have been done. :)
30 lines
599 B
Makefile
30 lines
599 B
Makefile
# New ports collection makefile for: japanese AFM files
|
|
# Date created: 11 September 1997
|
|
# Whom: KIRIYAMA Kazuhiko <kiri@kiri.toba-cmt.ac.jp>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= japaneseAFM
|
|
PORTVERSION= 1.0
|
|
CATEGORIES= japanese print
|
|
MASTER_SITES= ftp://ftp.ascii.co.jp/pub/TeX/ascii-ptex/
|
|
DISTNAME= ${PORTNAME}
|
|
|
|
MAINTAINER= kiri@kiri.toba-cmt.ac.jp
|
|
|
|
NO_WRKSUBDIR= yes
|
|
NO_BUILD= yes
|
|
|
|
AFMDIR= ${PREFIX}/share/fonts/afm
|
|
|
|
do-install:
|
|
@${MKDIR} ${AFMDIR}
|
|
.for font in GothicBBB-Medium Ryumin-Light
|
|
.for dir in H V
|
|
${INSTALL_DATA} ${WRKSRC}/${font}-${dir} ${AFMDIR}
|
|
.endfor
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|