b686dd9180
pkglint --only "https instead of http" -r -F With manual adjustments afterwards since pkglint 19.4.4 fixed a few indentations in unrelated lines. This mainly affects projects hosted at SourceForce, as well as freedesktop.org, CTAN and GNU.
36 lines
944 B
Makefile
36 lines
944 B
Makefile
# $NetBSD: Makefile,v 1.23 2020/01/18 23:31:04 rillig Exp $
|
|
|
|
DISTNAME= ghostscript-fonts-8.11
|
|
PKGREVISION= 3
|
|
CATEGORIES= fonts
|
|
MASTER_SITES+= ${MASTER_SITE_SOURCEFORGE:=ghostscript/}
|
|
MASTER_SITES+= ftp://mirror.cs.wisc.edu/pub/mirrors/ghost/fonts/
|
|
DISTFILES= ${GS_FONTS_OTHER}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://gs-fonts.sourceforge.net/
|
|
COMMENT= Postscript fonts for Aladdin Ghostscript
|
|
|
|
GS_FONTS_OTHER= ghostscript-fonts-other-6.0.tar.gz
|
|
|
|
CONFLICTS= ghostscript-[0-5]* ghostscript-x11-[0-5]*
|
|
|
|
DIST_SUBDIR= ghostscript
|
|
NO_CONFIGURE= YES
|
|
NO_BUILD= YES
|
|
WRKSRC= ${WRKDIR}/fonts
|
|
|
|
FONTS_DIR= ${PREFIX}/share/ghostscript/fonts
|
|
INSTALLATION_DIRS= share/ghostscript/fonts
|
|
REQD_DIRS+= share/ghostscript
|
|
|
|
do-install:
|
|
for ext in afm gsf pfa pfm; \
|
|
do \
|
|
for f in ${WRKSRC}/*.$${ext}; \
|
|
do \
|
|
${INSTALL_DATA} $${f} ${DESTDIR}${FONTS_DIR}; \
|
|
done; \
|
|
done
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|