mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-28 01:06:17 +00:00
d9ed90620d
We cannot contact them for a long time. Discussed with: hrs Approved by: kiri(blanket), mita(blanket), shige(blanket), taoka(blanket)
32 lines
624 B
Makefile
32 lines
624 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= ${MASTER_SITE_LOCAL}
|
|
MASTER_SITE_SUBDIR= kiri
|
|
DISTNAME= ${PORTNAME}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Japanese AFM fonts
|
|
|
|
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>
|