mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-06 22:51:41 +00:00
07461dbb56
PR: ports/9724 Submitted by: Pedro F. Giffuni <pfgiffun@bachue.usc.unal.edu.co>
35 lines
962 B
Makefile
35 lines
962 B
Makefile
# New ports collection makefile for: gsfonts
|
|
# Version required: 5.10a
|
|
# Date created: 11 September 1997
|
|
# Whom: giffunip
|
|
#
|
|
# $Id: Makefile,v 1.2 1999/01/27 07:41:26 fenner Exp $
|
|
#
|
|
|
|
DISTNAME= gsfonts-5.10
|
|
CATEGORIES= print
|
|
MASTER_SITES= ftp://ftp.cs.wisc.edu/ghost/gnu/fonts/ \
|
|
$(MASTER_SITE_GNU)
|
|
MASTER_SITE_SUBDIR= ghostscript
|
|
DISTFILES= ${GS_FONTS_STD} ${GS_FONTS_OTHER}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
|
|
BUILD_DEPENDS= $(LOCALBASE)/bin/type1inst:${PORTSDIR}/x11-fonts/p5-type1inst \
|
|
$(X11BASE)/bin/mkfontdir:${PORTSDIR}/x11/XFree86
|
|
|
|
EXTRACT_ONLY=
|
|
NO_BUILD= yes
|
|
|
|
GS_FONTS_STD= ghostscript-fonts-5.10a.tar.gz
|
|
GS_FONTS_OTHER= ghostscript-fonts-other-5.10.tar.gz
|
|
GSDIR= ${PREFIX}/share/ghostscript
|
|
|
|
do-install:
|
|
@${MKDIR} ${GSDIR}/fonts
|
|
tar -xzf ${DISTDIR}/${GS_FONTS_OTHER} -C ${GSDIR}/fonts
|
|
tar -xzf ${DISTDIR}/${GS_FONTS_STD} -C ${GSDIR}/fonts
|
|
(cd ${PREFIX}/share/ghostscript/fonts; $(LOCALBASE)/bin/type1inst -nogs -nolog -q)
|
|
|
|
.include <bsd.port.mk>
|