aboutsummaryrefslogtreecommitdiffstats
path: root/math/ses/Makefile
blob: 02c2a745b4369a1e219d05f11d7ef504b3d2a03f (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
# New ports collection makefile for:    ses
# Date created:         11 February 2005
# Whom:             dd
#
# $FreeBSD$
#

PORTNAME=   ses
PORTVERSION=    031130
PORTREVISION=   1
CATEGORIES= math elisp
MASTER_SITES=   http://home.comcast.net/~jyavner/ses/
DISTNAME=   ses21-${PORTVERSION}
EXTRACT_SUFX=   .tgz

MAINTAINER= ports@FreeBSD.org
COMMENT=    Simple Emacs Spreadsheet

BUILD_DEPENDS=  emacs:${PORTSDIR}/editors/emacs
RUN_DEPENDS=    emacs:${PORTSDIR}/editors/emacs

BROKEN=     Does not build

DOC_FILES=  ses-example.ses ses-readme.txt \
        ses-coverage.el testcover.el unsafep-coverage.el
DOC_DIR=    share/doc/ses
ELISP_FILES=    ses.el unsafep.el
ELISP_DIR=  share/emacs/site-lisp/ses

PLIST_FILES=    ${ELISP_FILES:S/^/${ELISP_DIR}\//} \
        ${ELISP_FILES:S/^/${ELISP_DIR}\//S/$/c/} \
        ${DOC_FILES:S/^/${DOC_DIR}\//}
PLIST_DIRS= ${ELISP_DIR} ${DOC_DIR}

.include <bsd.port.pre.mk>

.if ${ARCH} == "ia64"
BROKEN=     "Does not build on ia64"
.endif

do-build:
.for __f in ${ELISP_FILES}
    cd ${WRKSRC} && echo '(setq load-path (cons "." load-path)) \
                  (batch-byte-compile)' | \
            emacs -batch -q -l /dev/stdin ${__f} 2> /dev/null
.endfor

do-install:
    ${MKDIR} ${PREFIX}/${ELISP_DIR}
.for __f in ${ELISP_FILES}
    ${INSTALL_DATA} ${WRKSRC}/${__f} ${WRKSRC}/${__f}c \
        ${PREFIX}/${ELISP_DIR}
.endfor
    ${MKDIR} ${PREFIX}/${DOC_DIR}
.for __f in ${DOC_FILES}
    ${INSTALL_DATA} ${WRKSRC}/${__f} ${PREFIX}/${DOC_DIR}
.endfor

.include <bsd.port.post.mk>