mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
41b3051154
Approved by: portmgr (myself)
123 lines
2.9 KiB
Makefile
123 lines
2.9 KiB
Makefile
# Created by: Dryice Liu <dryice@liu.com.cn>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= planner.el
|
|
PORTVERSION= 3.42
|
|
PORTREVISION= 11
|
|
CATEGORIES= deskutils elisp
|
|
MASTER_SITES= http://download.gna.org/planner-el/ \
|
|
http://dryice.name/computer/FreeBSD/distfiles/
|
|
PKGNAMESUFFIX= -${EMACS_PORT_NAME}
|
|
DISTNAME= planner-${DISTVERSIONPREFIX}${DISTVERSION}${DISTVERSIONSUFFIX}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= PlannerMode is an organizer and day planner for Emacs
|
|
|
|
USE_EMACS= yes
|
|
USES= gmake
|
|
|
|
BUILD_DEPENDS+= ${LOCALBASE}/${EMACS_SITE_LISPDIR}/muse/muse.el:${PORTSDIR}/textproc/muse
|
|
|
|
OPTIONS_DEFINE= BBDB GNATS PSVN VM W3M WL XTLA DOCS
|
|
BBDB_DESC= BBDB support
|
|
GNATS_DESC= GNATS support
|
|
PSVN_DESC= PSVN support
|
|
VM_DESC= View Mail support
|
|
W3M_DESC= W3M support
|
|
WL_DESC= Wanderlust support
|
|
XTLA_DESC= XTLA support
|
|
|
|
NO_STAGE= yes
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${EMACS_PORT_NAME} != "emacs23"
|
|
PORTNAMESUFFIX= ${PKGNAMESUFFIX}
|
|
.endif
|
|
|
|
.if (${EMACS_PORT_NAME} == "emacs21")
|
|
PLIST_SUB+= HAS_ICAL="@comment "
|
|
.else
|
|
PLIST_SUB+= HAS_ICAL=""
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MBBDB}
|
|
BUILD_DEPENDS+= ${LOCALBASE}/${EMACS_VERSION_SITE_LISPDIR}/bbdb/bbdb-com.el:${PORTSDIR}/databases/bbdb
|
|
PLIST_SUB+= HAS_BBDB=""
|
|
.else
|
|
PLIST_SUB+= HAS_BBDB="@comment "
|
|
.endif
|
|
|
|
.if (${EMACS_PORT_NAME} == "emacs21")
|
|
PLIST_SUB+= HAS_ERC="@comment "
|
|
.else
|
|
# emacs 22 and above has ERC build in
|
|
PLIST_SUB+= HAS_ERC=""
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MGNATS}
|
|
BUILD_DEPENDS+= ${LOCALBASE}/${EMACS_SITE_LISPDIR}/gnats.el:${PORTSDIR}/databases/gnats4
|
|
PLIST_SUB+= HAS_GNATS=""
|
|
.else
|
|
PLIST_SUB+= HAS_GNATS="@comment "
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MPSVN}
|
|
BUILD_DEPENDS+= ${LOCALBASE}/${EMACS_VERSION_SITE_LISPDIR}/psvn/psvn.el:${PORTSDIR}/devel/psvn
|
|
PLIST_SUB+= HAS_PSVN=""
|
|
.else
|
|
PLIST_SUB+= HAS_PSVN="@comment "
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MVM}
|
|
BUILD_DEPENDS+= qp-decode:${PORTSDIR}/mail/vm
|
|
PLIST_SUB+= HAS_VM=""
|
|
.else
|
|
PLIST_SUB+= HAS_VM="@comment "
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MW3M}
|
|
BUILD_DEPENDS+= ${LOCALBASE}/${EMACS_VERSION_SITE_LISPDIR}/w3m/w3m.el:${PORTSDIR}/www/emacs-w3m
|
|
PLIST_SUB+= HAS_W3M=""
|
|
.else
|
|
PLIST_SUB+= HAS_W3M="@comment "
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MWL}
|
|
BUILD_DEPENDS+= ${LOCALBASE}/${EMACS_VERSION_SITE_LISPDIR}/wl/wl.el:${PORTSDIR}/mail/wanderlust
|
|
PLIST_SUB+= HAS_WL=""
|
|
.else
|
|
PLIST_SUB+= HAS_WL="@comment "
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MXTLA}
|
|
BUILD_DEPENDS+= ${LOCALBASE}/${EMACS_VERSION_SITE_LISPDIR}/xtla/xtla.el:${PORTSDIR}/devel/xtla
|
|
PLIST_SUB+= HAS_XTLA=""
|
|
.else
|
|
PLIST_SUB+= HAS_XTLA="@comment "
|
|
.endif
|
|
|
|
RUN_DEPENDS+= ${BUILD_DEPENDS}
|
|
|
|
LISPDIR= ${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}/planner
|
|
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
PORTDOCS= AUTHORS ChangeLog.1 ChangeLog.2 ChangeLog.3 ChangeLog \
|
|
COMMENTARY NEWS README
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} 's,PREFIX =,PREFIX ?=,' ${WRKSRC}/Makefile.defs.default
|
|
|
|
pre-build:
|
|
${CP} ${WRKSRC}/contrib/schedule.el ${WRKSRC}/schedule.el
|
|
|
|
post-install:
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
${MKDIR} ${DOCSDIR}
|
|
.for i in ${PORTDOCS}
|
|
${CP} -R ${WRKSRC}/${i} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|