diff options
author | wiz <wiz> | 2010-02-03 12:40:43 +0000 |
---|---|---|
committer | wiz <wiz> | 2010-02-03 12:40:43 +0000 |
commit | 96adad6abb9ea2e6a76f116ceb08300dfc61720a (patch) | |
tree | b61fefa8e956f536738f59d35e546ea5746398ad /fonts/umefont-ttf/Makefile | |
parent | 27094d3e01dabd094c2b93a270af3227ec1beb8f (diff) | |
download | pkgsrc-96adad6abb9ea2e6a76f116ceb08300dfc61720a.tar.gz |
Initial import of umefont-ttf-412, packaged for wip by Ryo ONODERA.
This package contains 18 Japanese fonts of Umefont family.
Ume Gothic/Ume P Gothic and O5/C4/C5/S4/S5
Ume UI Gothic and O5
Ume Mincho/Ume P Mincho and S3
Diffstat (limited to 'fonts/umefont-ttf/Makefile')
-rw-r--r-- | fonts/umefont-ttf/Makefile | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/fonts/umefont-ttf/Makefile b/fonts/umefont-ttf/Makefile new file mode 100644 index 00000000000..16e415996be --- /dev/null +++ b/fonts/umefont-ttf/Makefile @@ -0,0 +1,58 @@ +# $NetBSD: Makefile,v 1.1.1.1 2010/02/03 12:40:43 wiz Exp $ +# + +DISTNAME= umefont-412 +PKGNAME= ${DISTNAME:S/-/-0./} +CATEGORIES= fonts japanese +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE_JP:=ume-font/22212/} + +MAINTAINER= ryo_on@yk.rim.or.jp +HOMEPAGE= http://sourceforge.jp/projects/ume-font/wiki/FrontPage +COMMENT= Ume 18 Japanese fonts (Mincho and Gothic) +# LICENSE= M+ FONTS License + +PKG_DESTDIR_SUPPORT= user-destdir + +USE_X11BASE= YES +NO_CONFIGURE= YES +NO_BUILD= YES + +DOCSDIR= ${PREFIX}/share/doc/${PKGBASE} + +INSTALLATION_DIRS= lib/X11/fonts/TTF \ + ${DOCSDIR} + +FONTDIR= ${PREFIX}/lib/X11/fonts/TTF +FONTS_DIRS.ttf= ${FONTDIR} + +INSTALL_FONTS= ume-pgc4.ttf \ + ume-pgc5.ttf \ + ume-pgo4.ttf \ + ume-pgo5.ttf \ + ume-pgs4.ttf \ + ume-pgs5.ttf \ + ume-pmo3.ttf \ + ume-pms3.ttf \ + ume-tgc4.ttf \ + ume-tgc5.ttf \ + ume-tgo4.ttf \ + ume-tgo5.ttf \ + ume-tgs4.ttf \ + ume-tgs5.ttf \ + ume-tmo3.ttf \ + ume-tms3.ttf \ + ume-ugo4.ttf \ + ume-ugo5.ttf +INSTALL_DOCS= license.html + +USE_LANGUAGES= # none + +do-install: +.for fontfile in ${INSTALL_FONTS} + ${INSTALL_DATA} ${WRKSRC}/${fontfile} ${DESTDIR}${FONTDIR} +.endfor +.for docfile in ${INSTALL_DOCS} + ${INSTALL_DATA} ${WRKSRC}/${docfile} ${DESTDIR}${DOCSDIR} +.endfor + +.include "../../mk/bsd.pkg.mk" |