blob: 1bbbed9796d6f09f704c0d5c00e4a158d54adcf2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
# New ports collection makefile for: emacs-wiki
# Date created: March 09 2005
# Whom: Dryice Liu <dryice@liu.com.cn>
#
# $FreeBSD$
#
PORTNAME= emacs-wiki
PORTVERSION= 2.72
PORTREVISION= 5
CATEGORIES= textproc elisp
MASTER_SITES= http://www.mwolson.org/static/dist/emacs-wiki/ \
http://dryice.name/computer/FreeBSD/distfiles/
PKGNAMESUFFIX= -${EMACS_PORT_NAME}
MAINTAINER= dryice@FreeBSD.org
COMMENT= Create and use hyperlinks and simple formatting in plain text files
USE_EMACS= yes
EMACS_PORT_NAME?= emacs21
.if ${EMACS_PORT_NAME} != "emacs21"
PORTNAMESUFFIX= ${PKGNAMESUFFIX}
.endif
RUN_DEPENDS+= ${PREFIX}/${EMACS_SITE_LISPDIR}/xml-parse.el:${PORTSDIR}/textproc/xml-parse.el
RUN_DEPENDS+= ${PREFIX}/${EMACS_SITE_LISPDIR}/htmlize.el:${PORTSDIR}/textproc/htmlize.el
.if defined(WITH_CONTRIB)
PLIST_SUB+= CONTRIB=""
.else
PLIST_SUB+= CONTRIB="@comment "
.endif
INFO= emacs-wiki
LISPDIR= ${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}/${PORTNAME}
pre-everything::
.if !defined(WITH_CONTRIB)
@${ECHO_MSG} ""
@${ECHO_MSG} "You may want to build with WITH_CONTRIB=yes"
@${ECHO_MSG} "to install some extra packages. Note this may"
@${ECHO_MSG} "shadow the versions you already installed elsewhere."
@${ECHO_MSG} ""
.endif
do-build:
cd ${WRKSRC}; makeinfo --no-split emacs-wiki.texi
do-install:
${MKDIR} ${LISPDIR}
.for i in *.el
${INSTALL_DATA} ${WRKSRC}/${i} ${LISPDIR}
.endfor
${INSTALL_DATA} ${WRKSRC}/emacs-wiki.info ${PREFIX}/info
.if defined(WITH_CONTRIB)
${MKDIR} ${LISPDIR}/contrib
.for i in *.el
${INSTALL_DATA} ${WRKSRC}/contrib/${i} ${LISPDIR}/contrib
.endfor
.endif
.include <bsd.port.mk>
|