mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-03 01:38:07 -04:00
39 lines
974 B
Makefile
39 lines
974 B
Makefile
# $NetBSD: Makefile,v 1.20 2012/10/03 18:28:23 asau Exp $
|
|
|
|
DISTNAME= ghostscript-fonts-8.11
|
|
PKGREVISION= 3
|
|
CATEGORIES= fonts
|
|
MASTER_SITES+= ${MASTER_SITE_SOURCEFORGE:=ghostscript/} \
|
|
ftp://mirror.cs.wisc.edu/pub/mirrors/ghost/fonts/
|
|
DISTFILES= ${GS_FONTS_OTHER}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://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]*
|
|
|
|
PKG_INSTALLATION_TYPES= overwrite pkgviews
|
|
|
|
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"
|