mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
55 lines
1.4 KiB
Makefile
55 lines
1.4 KiB
Makefile
# New ports collection makefile for: bitmap for emacs20
|
|
# Date created: 23 September 1998
|
|
# Whom: Shigeyuki FUKUSHIMA <shige@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= bitmap
|
|
PORTVERSION= ${BITMAP_VER}
|
|
CATEGORIES= editors elisp
|
|
MASTER_SITES= ftp://ftp.jpl.org/pub/elisp/bitmap/
|
|
DISTNAME= bitmap-mule-${BITMAP_VER}
|
|
PKGNAMESUFFIX= -${EMACS_PORT_NAME}
|
|
|
|
MAINTAINER= shige@FreeBSD.org
|
|
|
|
# distfile version
|
|
BITMAP_VER= 8.3
|
|
BITMAPDOCDIR= share/doc/bitmap
|
|
BITMAP_FONT= ${X11BASE}/lib/X11/fonts/local/etl8x16-bitmap.pcf.gz
|
|
|
|
# emacs20
|
|
EMACS_PORT_NAME= emacs20
|
|
|
|
# target name for make build
|
|
ALL_TARGET= elc
|
|
|
|
BUILD_DEPENDS= uncompface:${PORTSDIR}/mail/faces
|
|
RUN_DEPENDS= ${BITMAP_FONT}:${PORTSDIR}/x11-fonts/bitmap-fonts
|
|
PLIST_SUB= BITMAPDOCDIR=${BITMAPDOCDIR}
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if defined(EMACS_PORT_NAME)
|
|
# depends on apel
|
|
BUILD_DEPENDS+= ${LOCALBASE}/${EMACS_LIBDIR}/${EMACS_VER}/site-lisp/emu/emu.el:${PORTSDIR}/editors/apel-${EMACS_PORT_NAME}
|
|
RUN_DEPENDS+= ${LOCALBASE}/${EMACS_LIBDIR}/${EMACS_VER}/site-lisp/emu/emu.el:${PORTSDIR}/editors/apel-${EMACS_PORT_NAME}
|
|
.else
|
|
.BEGIN:
|
|
@${ECHO} "Error: Bad port."
|
|
@${ECHO} "You must define EMACS_PORT_NAME."
|
|
@${FALSE}
|
|
.endif
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${LOCALBASE}/${BITMAPDOCDIR}
|
|
@(cd ${WRKSRC} ; \
|
|
for i in ChangeLog NEWS README.* ; do \
|
|
${INSTALL_DATA} ${WRKSRC}/$${i} ${LOCALBASE}/${BITMAPDOCDIR}/ ; \
|
|
done)
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|