blob: 218b00508fef338314eb272f6fd087fcc586d361 (
plain)
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
|
# Created by: KIMURA Yasuhiro <yasu@utahime.org>
# $FreeBSD$
PORTNAME= c-sig
PORTVERSION= 3.8
PORTREVISION= 14
CATEGORIES= mail elisp
MASTER_SITES= LOCAL
MASTER_SITE_SUBDIR= tota/${PORTNAME}
PKGNAMESUFFIX= -${EMACS_PORT_NAME}
DISTNAME= ${PORTNAME}.${PORTVERSION}
MAINTAINER= yasu@utahime.org
COMMENT= Signature insertion tool for Emacs
LICENSE= GPLv2
USE_EMACS= yes
NO_WRKSUBDIR= yes
OPTIONS_DEFINE= DOCS
LISPDIR= ${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}/${PORTNAME}
NO_STAGE= yes
.include <bsd.port.options.mk>
do-build:
cd ${WRKSRC}; ${EMACS_CMD} -batch -q -f batch-byte-compile c-sig.el
do-install:
${MKDIR} ${LISPDIR}
${INSTALL_DATA} ${WRKSRC}/c-sig.el* ${LISPDIR}
.if ${PORT_OPTIONS:MDOCS}
${MKDIR} ${DOCSDIR}
.for file in c-sig-eng.faq c-sig-eng.man c-sig-jp.faq c-sig-jp.man
${INSTALL_MAN} ${WRKSRC}/${file} ${DOCSDIR}
.endfor
.endif
.include <bsd.port.mk>
|