mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
e9e533c79f
- Allow staging PR: ports/182399 Submitted by: Yasuhiro KIMURA <yasu utahime.org> (maintainer)
38 lines
846 B
Makefile
38 lines
846 B
Makefile
# 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}
|
|
|
|
do-build:
|
|
cd ${WRKSRC}; ${EMACS_CMD} -batch -q -f batch-byte-compile c-sig.el
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${LISPDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/c-sig.el* ${STAGEDIR}${LISPDIR}
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
.for file in c-sig-eng.faq c-sig-eng.man c-sig-jp.faq c-sig-jp.man
|
|
${INSTALL_MAN} ${WRKSRC}/${file} ${STAGEDIR}${DOCSDIR}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|