head	1.1;
access;
symbols;
locks; strict;
comment	@# @;


1.1
date	2003.07.31.17.37.38;	author shige;	state Exp;
branches;
next	;


desc
@@


1.1
log
@Add elisp/emacsen ports in the ports tree @@ 2003/07/31
@
text
@# New ports collection makefile for:	bitmap-fonts
# Date created:		23 September 1998
# Whom:			Shigeyuki FUKUSHIMA <shige@@FreeBSD.org>
#
# $FreeBSD$
# $ports: ports/x11-fonts/bitmap-fonts/Makefile,v 1.20 2003/03/25 14:20:19 shige Exp $
#

PORTNAME=	bitmap-fonts
PORTVERSION=	${BITMAP_FONTS_VER}
CATEGORIES=	x11-fonts elisp
MASTER_SITES=	ftp://ftp.jpl.org/pub/elisp/bitmap/ \
		ftp://ftp.jpl.org/pub/elisp/bitmap/snapshots/
DISTNAME=	${PORTNAME}-${BITMAP_FONTS_VER}

MAINTAINER=	shige@@FreeBSD.org
COMMENT=	Bitmap font, (6x12, 7x14, 8x16, 12x24) dots bitmap font

BUILD_DEPENDS=	bdftopcf:${PORTSDIR}/x11/XFree86

# distfile version
BITMAP_FONTS_VER=	1.0
BITMAP_FONTS_SIZE=	12 14 16 20 24
FONTSDIR=	lib/X11/fonts/local
PKGINSTALL=	${WRKDIR}/INSTALL
PKGDEINSTALL=	${WRKDIR}/DEINSTALL
WRKSRC=		${WRKDIR}

USE_X_PREFIX=	yes

PLIST_SUB=	FONTSDIR=${FONTSDIR}

.include <bsd.port.pre.mk>

.if ${XFREE86_VERSION} == 3
BUILD_DEPENDS=	bdftopcf:${PORTSDIR}/x11/XFree86
.elif ${XFREE86_VERSION} == 4
RUN_DEPENDS=	bdftopcf:${PORTSDIR}/x11/XFree86-4-clients
.endif

do-build:
	@@(cd ${WRKSRC}; \
	    for i in ${BITMAP_FONTS_SIZE} ; do \
	        bdftopcf bitmap$${i}.bdf > bitmap$${i}.pcf ; \
	        ${GZIP_CMD} bitmap$${i}.pcf ; \
	    done ; \
	)
	@@for file in INSTALL DEINSTALL; do \
		${SED} -e 's,%%FONTSDIR%%,${FONTSDIR},g' \
			< ${FILESDIR}/$${file}.tmpl > ${WRKDIR}/$${file}; \
	done

pre-install:
	@@${SETENV} PKG_PREFIX=${X11BASE} \
		${SH} ${PKGREQ} ${PKGNAME} INSTALL

do-install:
	@@(cd ${WRKSRC}; \
	    for i in ${BITMAP_FONTS_SIZE} ; do \
	        ${INSTALL_DATA} bitmap$${i}.pcf.gz ${X11BASE}/${FONTSDIR} ; \
	    done ; \
	)

post-install:
	@@${SETENV} PKG_PREFIX=${X11BASE} \
		${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL

.include <bsd.port.post.mk>
@
