blob: f18104b3f1b3bcd67b9f8af578a2cede04758a40 (
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
|
# New ports collection makefile for: xtla
# Date created: 27 June 2004
# Whom: Dryice Liu <dryice@liu.com.cn>
#
# $FreeBSD$
#
PORTNAME= xtla
PORTVERSION= 1.1
PORTEPOCH= 1
CATEGORIES= devel elisp
MASTER_SITES= http://download.gna.org/xtla-el/ \
http://bsdchat.com/dist/dryice/
PKGNAMESUFFIX= -${EMACS_PORT_NAME}
MAINTAINER= dryice@dryice.name
COMMENT= An Emacs front-end to tla
BUILD_DEPENDS+= tla:${PORTSDIR}/devel/tla \
${LOCALBASE}/${EMACS_VERSION_SITE_LISPDIR}/tree-widget/tree-widget.el:${PORTSDIR}/editors/tree-widget
RUN_DEPENDS= ${BUILD_DEPENDS}
USE_EMACS= yes
EMACS_PORT_NAME?= emacs21
.if ${EMACS_PORT_NAME} != "emacs21"
PORTNAMESUFFIX= ${PKGNAMESUFFIX}
.endif
LISPDIR= ${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}/${PORTNAME}
HAS_CONFIGURE= yes
CONFIGURE_ARGS+= --with-emacs=${EMACS_NAME} --with-diff=gdiff --with-patch=gpatch
USE_GMAKE= yes
INFO= xtla
do-install:
${MKDIR} ${LISPDIR}
.for i in *.el *.elc
${INSTALL_DATA} ${WRKSRC}/lisp/${i} ${LISPDIR}
.endfor
${INSTALL_DATA} ${WRKSRC}/texinfo/xtla.info ${PREFIX}/info
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
.for i in ANNOUNCEMENTS BINDINGS FEATURES HACKING TODO
${INSTALL_DATA} ${WRKSRC}/docs/${i} ${DOCSDIR}
.endfor
.endif
post-install:
install-info --dir ${PREFIX}/info/dir ${PREFIX}/info/xtla.info
.include <bsd.port.mk>
|