mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-22 04:17:44 +00:00
7a325e6491
Update x11-fonts/mkfontscale to 1.2.0 Remove x11-fonts/mkfontdir, which has been merged into mkfontscale. Update dependencies and bump portrevisions. Add an entry to UPDATING and MOVES Changelog: https://lists.x.org/archives/xorg/2019-March/059633.html Thanks to Antoine for the exp-run! PR: 236336 (exp-run) Obtained from: FreeBSD Graphics Team dev repo https://github.com/FreeBSDDesktop/freebsd-ports/tree/feature/mkfontscale Sponsored by: B3 Init
34 lines
865 B
Makefile
34 lines
865 B
Makefile
# Created by: Junho CHOI <junho.choi@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= kaistfonts
|
|
PORTVERSION= 1.0
|
|
PORTREVISION= 5
|
|
CATEGORIES= korean x11-fonts
|
|
MASTER_SITES= ftp://ftp.kr.freebsd.org/pub/FreeBSD-kr/distfiles/
|
|
PKGNAMESUFFIX= -ksc
|
|
DISTNAME= ${PKGNAME}
|
|
DISTFILES= kaist-newmj18.bdf.gz ks_philgi16.bdf.gz \
|
|
kaist-newmj16.bdf.gz ks_iyagi16.bdf.gz
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= X11 KAIST font(ksc5601.1987-0 encoding) collection
|
|
|
|
SUB_FILES= pkg-message
|
|
|
|
BUILD_DEPENDS= bdftopcf:x11-fonts/bdftopcf
|
|
|
|
USES= fonts gmake
|
|
NO_WRKSUBDIR= yes
|
|
MAKE_ENV= DISTDIR=${DISTDIR} DISTFILES="${DISTFILES}" FONTSDIR="${FONTSDIR}"
|
|
|
|
do-extract:
|
|
@${RM} -r ${WRKSRC} && \
|
|
${MKDIR} ${WRKSRC} && \
|
|
cd ${WRKSRC} && \
|
|
for file in ${DISTFILES}; do \
|
|
${GUNZIP_CMD} -c < ${_DISTDIR}/$$file > `${ECHO_CMD} $$file | ${SED} -e 's/\.Z//' -e 's/\.gz//'`; \
|
|
done
|
|
|
|
.include <bsd.port.mk>
|