mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-05 01:55:52 +00:00
d4f0d0048a
- Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}. - Bump PORTREVISION for ports intalling files in ${X11BASE}.
52 lines
1.3 KiB
Makefile
52 lines
1.3 KiB
Makefile
# New ports collection makefile for: egg-canna
|
|
# Date created: 4 March 2005
|
|
# Whom: Hajimu UMEMOTO <ume@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= egg-canna
|
|
PORTVERSION= 20011110
|
|
PORTREVISION= 1
|
|
CATEGORIES= japanese editors elisp
|
|
MASTER_SITES= http://cgi18.plala.or.jp/nyy/canna/
|
|
PKGNAMESUFFIX= -${EMACS_PORT_NAME}
|
|
DISTNAME= ${PORTNAME}.el
|
|
EXTRACT_SUFX= # empty
|
|
|
|
MAINTAINER= ume@FreeBSD.org
|
|
COMMENT= Canna Conversion Facility in Egg Input Method Architecture
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/${EMACS_VERSION_SITE_LISPDIR}/egg/egg-sim.el:${PORTSDIR}/editors/tamago${EMACS_SUFFIX}
|
|
RUN_DEPENDS= ${BUILD_DEPENDS}
|
|
|
|
USE_EMACS= yes
|
|
EMACS_PORT_NAME?= emacs21
|
|
|
|
.if ${EMACS_PORT_NAME} == emacs21 || ${EMACS_PORT_NAME} == emacs22
|
|
EMACS_SUFFIX= #
|
|
.else
|
|
EMACS_SUFFIX= ${PKGNAMESUFFIX}
|
|
.endif
|
|
|
|
NO_WRKSUBDIR= yes
|
|
|
|
EXTRACT_CMD= ${CP}
|
|
EXTRACT_BEFORE_ARGS= -p
|
|
EXTRACT_AFTER_ARGS= .
|
|
|
|
PLIST_FILES= ${EMACS_VERSION_SITE_LISPDIR}/${DISTNAME} \
|
|
${EMACS_VERSION_SITE_LISPDIR}/${DISTNAME}c
|
|
|
|
do-build:
|
|
@cd ${WRKDIR} && ${EMACS_CMD} -batch -q -no-site-file -no-init-file \
|
|
-f batch-byte-compile ${DISTNAME}
|
|
|
|
do-install:
|
|
@${INSTALL_DATA} ${WRKSRC}/${DISTNAME} \
|
|
${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}
|
|
@${INSTALL_DATA} ${WRKSRC}/${DISTNAME}c \
|
|
${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}
|
|
|
|
.include <bsd.port.mk>
|