mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-18 03:46:03 +00:00
605c645403
japanese/ipa-ttfonts -> japanese/font-mplus-ipa japanese/ipa-ttfonts -> japanese/font-ipa japanese/kochi-ttfonts -> japanese/font-kochi japanese/mplusfonts -> japanese/font-mplus japanese/sazanami-ttf -> japanese/font-sazanami japanese/shinonome -> japanese/font-shinonome japanese/umefont -> japanese/font-ume japanese/vlgothic -> japanese/font-vlgothic While basically these are port name changes for consistency, installation directories are also changed: font files -> ${PREFIX}/share/${PORTNAME}/* symlinks -> ${PREFIX}/share/fonts/{TTF,OTF,fontname,...}/* symlinks -> ${PREFIX}/lib/X11/fonts/{TTF,OTF,misc,fontname,...}/* A user-visible one is that the directory name "TrueType" is replaced with "TTF".
58 lines
1.6 KiB
Makefile
58 lines
1.6 KiB
Makefile
# New ports collection makefile for: umefont
|
|
# Date created: 25 May 2008
|
|
# Whom: hrs
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= font-ume
|
|
PORTVERSION= 0.0.401
|
|
CATEGORIES= japanese x11-fonts
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE_JP}
|
|
MASTER_SITE_SUBDIR= ume-font/22212
|
|
DISTNAME= umefont-401
|
|
|
|
MAINTAINER= hrs@FreeBSD.org
|
|
COMMENT= Ume Japanese TrueType fonts
|
|
|
|
RUN_DEPENDS= fc-cache:${PORTSDIR}/x11-fonts/fontconfig
|
|
|
|
NO_BUILD= yes
|
|
PKGINSTALL= ${WRKDIR}/pkg-install
|
|
PKGDEINSTALL= ${WRKDIR}/pkg-install
|
|
SUB_FILES= pkg-install
|
|
SUB_LIST= X_FONTSDIR=${PREFIX}/${X_FONTSDIR}
|
|
PLIST_SUB= X_FONTSDIR=${X_FONTSDIR} \
|
|
LOCAL_FONTSDIR=${LOCAL_FONTSDIR}
|
|
PORTDOCS= readme.html
|
|
|
|
LOCAL_FONTSDIR= share/fonts
|
|
X_FONTSDIR= lib/X11/fonts
|
|
|
|
do-install:
|
|
${MKDIR} ${DATADIR}
|
|
${INSTALL_DATA} ${WRKSRC}/*.ttf ${DATADIR}
|
|
${MKDIR} ${LOCALBASE}/${LOCAL_FONTSDIR}/TTF
|
|
${LN} -s -f \
|
|
${DATADIR}/*.ttf ${LOCALBASE}/${LOCAL_FONTSDIR}/TTF/
|
|
${MKDIR} ${LOCALBASE}/${X_FONTSDIR}/TTF
|
|
${LN} -s -f \
|
|
${DATADIR}/*.ttf ${LOCALBASE}/${X_FONTSDIR}/TTF/
|
|
${INSTALL_DATA} ${FILESDIR}/20-unhint-ume.conf \
|
|
${FILESDIR}/62-fonts-ume.conf \
|
|
${PREFIX}/etc/fonts/conf.avail
|
|
${LN} -s -f ../conf.avail/20-unhint-ume.conf \
|
|
${PREFIX}/etc/fonts/conf.d/20-unhint-ume.conf
|
|
${LN} -s -f ../conf.avail/62-fonts-ume.conf \
|
|
${PREFIX}/etc/fonts/conf.d/62-fonts-ume.conf
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR}
|
|
.endif
|
|
|
|
post-install:
|
|
${LOCALBASE}/bin/fc-cache -s -f -v ${LOCALBASE}/${X_FONTSDIR}/TTF
|
|
${SETENV} PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL
|
|
|
|
.include <bsd.port.mk>
|