601583c320
Patch provided by Sergey Svishchev in private mail.
53 lines
1.4 KiB
Makefile
53 lines
1.4 KiB
Makefile
# $NetBSD: Makefile,v 1.16 2007/02/22 19:26:29 wiz Exp $
|
|
|
|
DISTNAME= # empty
|
|
PKGNAME= ms-ttf-20020306
|
|
PKGREVISION= 5
|
|
CATEGORIES= fonts
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=corefonts/}
|
|
DISTFILES= andale32.exe webdin32.exe trebuc32.exe georgi32.exe \
|
|
verdan32.exe comic32.exe arialb32.exe impact32.exe \
|
|
arial32.exe times32.exe courie32.exe
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://corefonts.sourceforge.net/
|
|
COMMENT= TrueType fonts from Microsoft
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
BUILD_DEPENDS+= cabextract-[0-9]*:../../archivers/cabextract
|
|
|
|
LICENSE= ms-ttf-license
|
|
RESTRICTED= No redistribution in altered form
|
|
|
|
NO_BIN_ON_CDROM= ${RESTRICTED}
|
|
NO_BIN_ON_FTP= ${RESTRICTED}
|
|
NO_SRC_ON_CDROM= ${RESTRICTED}
|
|
|
|
NO_CONFIGURE= yes
|
|
NO_BUILD= yes
|
|
|
|
USE_X11BASE= yes
|
|
DIST_SUBDIR= ms-ttf
|
|
EVAL_PREFIX+= CABEXTRACT_PREFIX=cabextract
|
|
CABEXTRACT_PREFIX_DEFAULT=${LOCALBASE}
|
|
EXTRACT_CMD= ${CABEXTRACT_PREFIX}/bin/cabextract -q $${extract_file}
|
|
FONTDIR= ${PREFIX}/lib/X11/fonts/TTF
|
|
DOCDIR= ${PREFIX}/share/doc/ms-ttf
|
|
FONTS_DIRS.ttf= ${FONTDIR}
|
|
|
|
INSTALLATION_DIRS= ${FONTDIR} ${DOCDIR}
|
|
|
|
post-extract:
|
|
${_PKG_SILENT}${_PKG_DEBUG} \
|
|
for f in ${WRKSRC}/*.TTF ; do \
|
|
${MV} $$f `echo $$f | ${SED} 's|TTF$$|ttf|'`; \
|
|
done
|
|
|
|
do-install:
|
|
cd ${WRKSRC} && for f in *.ttf ; do \
|
|
${INSTALL_DATA} $$f ${DESTDIR}${FONTDIR}/$$f; \
|
|
done
|
|
${INSTALL_DATA} ${.CURDIR}/../../licenses/${LICENSE} ${DESTDIR}${DOCDIR}
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|