freebsd-ports/textproc/ruby-rd-mode.el/Makefile
Jimmy Olgeni 22d7896c17 Remove indefinite articles and trailing periods from COMMENT, plus
minor COMMENT typos and surrounding whitespace fixes. A few Makefiles
where not included as they contain Latin-1 characters that break
the Phabricator workflow. Categories T-V.

CR:		D509
Approved by:	portmgr (antoine)
2014-08-03 14:15:08 +00:00

40 lines
1 KiB
Makefile

# Created by: Akinori MUSHA aka knu <knu@idaemons.org>
# $FreeBSD$
PORTNAME= rd-mode.el
PORTVERSION= 0.6.38
CATEGORIES= textproc ruby elisp
MASTER_SITES= # none
PKGNAMEPREFIX= ruby- # not ${RUBY_PKGNAMEPREFIX} since this is not version specific
DISTFILES= # none
MAINTAINER= knu@FreeBSD.org
COMMENT= Emacs lisp module for editing RD files
BUILD_DEPENDS= ${NONEXISTENT}:${PORTSDIR}/textproc/ruby-rdtool:patch
USE_RUBY= yes
WRKSRC= ${WRKDIR}/utils
NO_BUILD= yes
ELISP_FILES= rd-mode.el
EMACSLISPDIR= ${PREFIX}/share/emacs/site-lisp
XEMACSLISPDIR= ${PREFIX}/lib/xemacs/site-lisp
do-extract:
${MKDIR} ${WRKDIR}
${LN} -sf `cd ${.CURDIR}/../ruby-rdtool; ${MAKE} -V WRKSRC`/utils ${WRKSRC}
do-install:
@${MKDIR} ${STAGEDIR}${RUBY_ELISPDIR}/
@${MKDIR} ${STAGEDIR}${XEMACSLISPDIR}/
@${MKDIR} ${STAGEDIR}${EMACSLISPDIR}/
.for f in ${ELISP_FILES}
${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${RUBY_ELISPDIR}/
${LN} -sf ${RUBY_ELISPDIR}/${f} ${STAGEDIR}${EMACSLISPDIR}/
${LN} -sf ${RUBY_ELISPDIR}/${f} ${STAGEDIR}${XEMACSLISPDIR}/
.endfor
.include <bsd.port.mk>