mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-08 06:48:28 +00:00
a5da770e67
Xorg is now looking in ${LOCALBASE}/share/fonts by default Xorg now accepts symlinks in etc/X11/fontpath.d (as decribed in Xserver(1)) Large cleanup on lots of font ports All fonts are now properly dynamically generating fonts.dir and fonts.scale instead of sometime overwriting existing ones) All fonts are generating fontconfig's cache Improve consistency in fonts ports
44 lines
1.3 KiB
Makefile
44 lines
1.3 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= sazanami
|
|
PORTVERSION= 20040629
|
|
PORTREVISION= 4
|
|
CATEGORIES= japanese x11-fonts
|
|
MASTER_SITES= SFJP/efont/10087
|
|
PKGNAMEPREFIX= ja-font-
|
|
|
|
MAINTAINER= hrs@FreeBSD.org
|
|
COMMENT= Sazanami Japanese TrueType fonts
|
|
|
|
USES= fonts tar:bzip2
|
|
NO_BUILD= yes
|
|
PKGINSTALL= ${WRKDIR}/pkg-install
|
|
PKGDEINSTALL= ${WRKDIR}/pkg-install
|
|
SUB_FILES= pkg-install
|
|
DATADIR= ${PREFIX}/share/font-${PORTNAME}
|
|
PORTDOCS= README doc
|
|
|
|
FONTNAME= TTF
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}${DATADIR}
|
|
${INSTALL_DATA} ${WRKSRC}/*.ttf ${STAGEDIR}${DATADIR}
|
|
${MKDIR} ${STAGEDIR}${FONTSDIR}
|
|
cd ${STAGEDIR}${FONTSDIR}/ && ${LN} -s -f \
|
|
../../../${DATADIR_REL}/*.ttf .
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/etc/fonts/conf.avail \
|
|
${STAGEDIR}${PREFIX}/etc/fonts/conf.d
|
|
${INSTALL_DATA} ${FILESDIR}/20-unhint-${PORTNAME}.conf \
|
|
${FILESDIR}/62-fonts-${PORTNAME}.conf \
|
|
${STAGEDIR}${PREFIX}/etc/fonts/conf.avail
|
|
${LN} -s -f ../conf.avail/20-unhint-${PORTNAME}.conf \
|
|
${STAGEDIR}${PREFIX}/etc/fonts/conf.d/20-unhint-${PORTNAME}.conf
|
|
${LN} -s -f ../conf.avail/62-fonts-${PORTNAME}.conf \
|
|
${STAGEDIR}${PREFIX}/etc/fonts/conf.d/62-fonts-${PORTNAME}.conf
|
|
post-install:
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
cd ${WRKSRC} && ${CP} -R ${PORTDOCS} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|