ccbf0141d6
Many small changes which enhance APEL's functionality. Due to the charasteristic of APEL as a portability layer of emacsen, no user visible change, but more portability, possibly.
42 lines
1.1 KiB
Makefile
42 lines
1.1 KiB
Makefile
# $NetBSD: Makefile,v 1.4 2003/01/11 09:28:47 uebayasi Exp $
|
|
|
|
DISTNAME= apel-10.4
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ftp://ftp.m17n.org/pub/mule/apel/
|
|
|
|
MAINTAINER= tech-pkg-ja@jp.netbsd.org
|
|
HOMEPAGE= http://www.kanji.zinbun.kyoto-u.ac.jp/~tomo/elisp/APEL/
|
|
COMMENT= Portable Emacs Library
|
|
|
|
#CONFLICTS+= apel-*
|
|
#CONFLICTS+= xemacs-apel-*
|
|
|
|
.include "../../mk/emacs.mk"
|
|
|
|
MAKE_FLAGS+= EMACS=${EMACS_FLAVOR}
|
|
MAKE_FLAGS+= LISPDIR=${EMACS_LISPPREFIX}
|
|
MAKE_FLAGS+= VERSION_SPECIFIC_LISPDIR=${EMACS_LISPPREFIX}
|
|
|
|
EMACS_VERSIONS_ACCEPTED= emacs21 emacs20 xemacs211 xemacs215
|
|
|
|
.if ${EMACS_FLAVOR} == "emacs"
|
|
ALL_TARGET= elc
|
|
INSTALL_TARGET= install
|
|
PLIST_SRC= ${PKGDIR}/PLIST.emacs
|
|
.else # ${EMACS_FLAVOR} == "xemacs"
|
|
ALL_TARGET=
|
|
INSTALL_TARGET= install-package
|
|
PLIST_SRC= ${PKGDIR}/PLIST.xemacs
|
|
MAKE_FLAGS+= PACKAGEDIR=${EMACS_LISPPREFIX:C|/lisp$||}
|
|
.endif
|
|
|
|
DOCDIR= ${PREFIX}/share/doc/apel
|
|
|
|
.if ${EMACS_FLAVOR} == "emacs"
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${DOCDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README.en ${DOCDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README.ja ${DOCDIR}
|
|
.endif
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|