aec52aea3e
of this (you need a recent current for this) - create fonts.alias in ${WRKSRC} so that fonts.dir does not get installed - remove quotes around COMMENT while here - bump PKGNAME
40 lines
967 B
Makefile
40 lines
967 B
Makefile
# $OpenBSD: Makefile,v 1.15 2007/07/22 08:02:45 ajacoutot Exp $
|
|
|
|
COMMENT= fixed width fonts especially for long hacking sessions
|
|
|
|
DISTNAME= terminus-font-4.20
|
|
PKGNAME= ${DISTNAME}p0
|
|
CATEGORIES= x11
|
|
|
|
HOMEPAGE= http://www.is-vn.bg/hamster/jimmy-en.html
|
|
|
|
MAINTAINER= Victor Sahlstedt <salan@legonet.org>
|
|
|
|
# GPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= http://www.is-vn.bg/hamster/ \
|
|
http://legonet.org/~salan/distfiles/
|
|
|
|
CONFIGURE_STYLE= simple
|
|
NO_REGRESS= Yes
|
|
USE_X11= Yes
|
|
|
|
ALL_TARGET= pcf
|
|
|
|
FONTDIR= ${PREFIX}/lib/X11/fonts/terminus
|
|
|
|
do-install:
|
|
${GZIP_CMD} ${WRKSRC}/*.pcf
|
|
${X11BASE}/bin/mkfontdir ${WRKSRC}
|
|
egrep '\.pcf\.gz' ${WRKSRC}/fonts.dir | \
|
|
sed 's/\.pcf\.gz//g' > ${WRKSRC}/fonts.alias
|
|
${INSTALL_DATA_DIR} ${FONTDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/*.pcf.gz ${FONTDIR}
|
|
${INSTALL_DATA} ${WRKBUILD}/fonts.alias ${FONTDIR}/fonts.alias-terminus
|
|
|
|
.include <bsd.port.mk>
|