blob: 3d640adeddccbf637d1575c90fb3f603e7d0c472 (
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
|
# New ports collection makefile for: etask
# Date created: 15 December 2004
# Whom: Dryice Liu <dryice@liu.com.cn>
#
# $FreeBSD$
#
PORTNAME= etask
PORTVERSION= 0.3.91
PORTREVISION= 1
CATEGORIES= deskutils elisp
MASTER_SITES= http://members.chello.at/rene.weichselbaum/ \
http://dryice.name/computer/FreeBSD/distfiles/
MAINTAINER= dryice@dryice.name
COMMENT= Manage your projects or tasks within GNU Emacs
RUN_DEPENDS= latex:${PORTSDIR}/print/teTeX-base \
dvips:${PORTSDIR}/print/dvipsk-tetex \
xpdf:${PORTSDIR}/graphics/xpdf
USE_EMACS= yes
EMACS_PORT_NAME?= emacs21
USE_GHOSTSCRIPT_RUN= yes
.if ${EMACS_PORT_NAME} != "emacs21"
PORTNAMESUFFIX= ${PKGNAMESUFFIX}
.endif
LISPDIR= ${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}/${PORTNAME}
WRKSRC= ${WRKDIR}/${DISTNAME}a
.if !defined(NOPORTDOCS)
PORTDOCS= etasktut.pdf gpl.txt README
.endif
do-build:
cd ${WRKSRC}; ${EMACS_NAME} -batch -no-site-file\
--eval="(add-to-list 'load-path \"${WRKSRC}\")"\
-f batch-byte-compile *.el
do-install:
${MKDIR} ${LISPDIR}
.for i in *.el *.elc
${INSTALL_DATA} ${WRKSRC}/${i} ${LISPDIR}
.endfor
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
.for i in ${PORTDOCS}
${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}
.endfor
.endif
.include <bsd.port.mk>
|