mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
7acef1cd7a
spelled out (many of which are ${PKGDIR}/MESSAGE -> ${PKGMESSAGE} type fixes that shouldn't have been necessary) and the string "/pkg/" appear.
119 lines
3.2 KiB
Makefile
119 lines
3.2 KiB
Makefile
# New ports collection makefile for: apel for emacs
|
|
# Date created: 23 September 1998
|
|
# Whom: Shigeyuki FUKUSHIMA <shige@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= apel
|
|
PORTVERSION= ${APEL_VER}
|
|
CATEGORIES= editors elisp
|
|
MASTER_SITES= ftp://ftp.etl.go.jp/pub/mule/apel/ \
|
|
ftp://ftp.center.osaka-u.ac.jp/mule/apel/
|
|
PKGNAMESUFFIX= -${EMACS_PORT_NAME}
|
|
|
|
MAINTAINER?= shige@FreeBSD.org
|
|
|
|
# distfile version
|
|
APEL_VER= 10.2
|
|
# setupel filename
|
|
APEL_SETUPEL= apel-setupel.el
|
|
# document install directory by install-doc target
|
|
APELDOCDIR?= share/doc/apel
|
|
|
|
# This is a master port.
|
|
PORTCLASS?= master
|
|
|
|
# emacs port setup
|
|
.if (${PORTCLASS} == "master")
|
|
EMACS_PORT_NAME= emacs
|
|
# emacs requires *-setupel.el
|
|
REQUIRE_SETUPEL= YES
|
|
.endif
|
|
|
|
# target name for make build
|
|
ALL_TARGET?= elc
|
|
# environments
|
|
SCRIPTS_ENV+= TARGETS="${APEL_SETUPEL}"
|
|
PLIST_SUB+= APELDOCDIR=${APELDOCDIR} APEL_SETUPEL=${APEL_SETUPEL}
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if defined(EMACS_PORT_NAME)
|
|
# depends on custom: emacs-19.34 or mule-19.34
|
|
.if (${EMACS_VER} == "19.34")
|
|
BUILD_DEPENDS+= ${LOCALBASE}/${EMACS_LIBDIR_WITH_VER}/site-lisp/custom.el:${PORTSDIR}/editors/custom-${EMACS_PORT_NAME}
|
|
RUN_DEPENDS+= ${LOCALBASE}/${EMACS_LIBDIR_WITH_VER}/site-lisp/custom.el:${PORTSDIR}/editors/custom-${EMACS_PORT_NAME}
|
|
.endif
|
|
.if defined(EMACS_PACKAGESDIR)
|
|
BUILD_DEPENDS+= ${LOCALBASE}/${EMACS_LIBDIR}/xemacs-packages/lisp/xemacs-base/advice.el:${PORTSDIR}/editors/xemacs-packages
|
|
RUN_DEPENDS+= ${LOCALBASE}/${EMACS_LIBDIR}/xemacs-packages/lisp/xemacs-base/advice.el:${PORTSDIR}/editors/xemacs-packages
|
|
.endif
|
|
.else
|
|
.BEGIN:
|
|
@${ECHO} "Error: Bad port."
|
|
@${ECHO} "You must define EMACS_PORT_NAME."
|
|
@${FALSE}
|
|
.endif
|
|
|
|
pre-configure:
|
|
.if defined(REQUIRE_SETUPEL) && (${REQUIRE_SETUPEL} == "YES")
|
|
@${CP} ${FILESDIR}/${APEL_SETUPEL}.in ${WRKDIR}
|
|
.endif
|
|
|
|
pre-install:
|
|
.if defined(EMACS_PACKAGESDIR) && defined(EMACS_PACKAGES_SUBDIRS)
|
|
@${MAKE} mkdir-site-packages
|
|
.endif
|
|
.if defined(EMACS_PACKAGESDIR) && defined(XEMACS_PKGNAME)
|
|
@${MAKE} pkg-el-install
|
|
.endif
|
|
|
|
post-install:
|
|
.if defined(REQUIRE_SETUPEL) && (${REQUIRE_SETUPEL} == "YES")
|
|
@${MAKE} setupel-install
|
|
.endif
|
|
.if defined(EMACS_PACKAGESDIR) && defined(MANIFEST)
|
|
@${MAKE} manifest-install
|
|
.endif
|
|
.if !defined(NOPORTDOCS)
|
|
@${MAKE} doc-install
|
|
.endif
|
|
|
|
|
|
###############################################################################
|
|
#
|
|
# local functions
|
|
#
|
|
mkdir-site-packages:
|
|
@(for i in ${EMACS_PACKAGES_SUBDIRS} ; do \
|
|
${MKDIR} ${LOCALBASE}/${EMACS_PACKAGESDIR}/$${i} ; \
|
|
done)
|
|
|
|
pkg-el-install:
|
|
@(if [ -f ${FILESDIR}/_pkg.el ] ; then \
|
|
${MKDIR} ${LOCALBASE}/${EMACS_PACKAGESDIR}/lisp/${XEMACS_PKGNAME} ;\
|
|
${INSTALL_DATA} ${FILESDIR}/_pkg.el \
|
|
${LOCALBASE}/${EMACS_PACKAGESDIR}/lisp/${XEMACS_PKGNAME}/_pkg.el ;\
|
|
fi)
|
|
|
|
doc-install:
|
|
@${MKDIR} ${LOCALBASE}/${APELDOCDIR}
|
|
@(cd ${WRKSRC} ; \
|
|
for i in ChangeLog README.* ; do \
|
|
${INSTALL_DATA} $${i} ${LOCALBASE}/${APELDOCDIR}/ ; \
|
|
done)
|
|
|
|
setupel-install:
|
|
@${INSTALL_DATA} ${WRKDIR}/${APEL_SETUPEL} \
|
|
${LOCALBASE}/${EMACS_LIBDIR_WITH_VER}/site-lisp
|
|
|
|
manifest-install:
|
|
@${RM} -f ${WRKDIR}/${MANIFEST}
|
|
@${CAT} ${PLIST} | ${GREP} -e "^%%EMACS_PACKAGESDIR%%" | \
|
|
${SED} -e "s;^%%EMACS_PACKAGESDIR%%/;;" > ${WRKDIR}/${MANIFEST}
|
|
@${INSTALL_DATA} ${WRKDIR}/${MANIFEST} \
|
|
${LOCALBASE}/${EMACS_PACKAGESDIR}/pkginfo/
|
|
|
|
.include <bsd.port.post.mk>
|