36 lines
896 B
Makefile
36 lines
896 B
Makefile
# $OpenBSD: Makefile,v 1.2 2004/02/01 20:40:45 sturm Exp $
|
|
|
|
COMMENT= "35 standard PostScript fonts with Adobe name aliases"
|
|
|
|
VER= 6.0
|
|
PKGNAME= ghostscript-fonts-${VER}
|
|
DISTNAME= gnu-gs-fonts-std-${VER}
|
|
CATEGORIES= x11 print
|
|
|
|
HOMEPAGE= http://www.cs.wisc.edu/~ghost/doc/cvs/Fonts.htm
|
|
|
|
# GPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ${MASTER_SITE_GNU:=ghostscript/}
|
|
|
|
WRKDIST= ${WRKDIR}
|
|
USE_X11= Yes
|
|
NO_BUILD= Yes
|
|
NO_REGRESS= Yes
|
|
PKG_ARCH= *
|
|
FONTDIR= ${PREFIX}/share/ghostscript
|
|
X11FONTDIR= ${PREFIX}/lib/X11/fonts
|
|
|
|
do-install:
|
|
${INSTALL_DATA_DIR} ${FONTDIR}
|
|
cd ${WRKDIST} && tar cf - fonts | (cd ${FONTDIR} && tar -xf -)
|
|
${INSTALL_DATA} ${FILESDIR}/fonts.alias ${FONTDIR}/fonts
|
|
${INSTALL_DATA_DIR} ${X11FONTDIR}
|
|
cd ${X11FONTDIR} && ln -s ../../../share/ghostscript/fonts ghostscript
|
|
|
|
.include <bsd.port.mk>
|