Import yaml-mode-0.0.7nb20120306 as wip/yaml-mode.
Emacs major mode for editing YAML files; YAML Ain't Markup Language. See: http://yaml.org/
This commit is contained in:
parent
16c23c4ea8
commit
dea4f76505
5 changed files with 55 additions and 0 deletions
3
yaml-mode/DESCR
Normal file
3
yaml-mode/DESCR
Normal file
|
@ -0,0 +1,3 @@
|
|||
Emacs major mode for editing YAML files; YAML Ain't Markup Language.
|
||||
|
||||
See: http://yaml.org/
|
10
yaml-mode/MESSAGE
Normal file
10
yaml-mode/MESSAGE
Normal file
|
@ -0,0 +1,10 @@
|
|||
===========================================================================
|
||||
$NetBSD: MESSAGE,v 1.1.1.1 2012/03/06 04:38:39 phonohawk Exp $
|
||||
|
||||
Append the following line to your .emacs file:
|
||||
|
||||
(autoload 'yaml-mode "yaml-mode"
|
||||
"Major mode for editing YAML files." t)
|
||||
(add-to-list 'auto-mode-alist '("\\.ya?ml$" . yaml-mode))
|
||||
|
||||
===========================================================================
|
36
yaml-mode/Makefile
Normal file
36
yaml-mode/Makefile
Normal file
|
@ -0,0 +1,36 @@
|
|||
# $NetBSD: Makefile,v 1.1.1.1 2012/03/06 04:38:39 phonohawk Exp $
|
||||
#
|
||||
|
||||
DISTNAME= yaml-mode-0.0.7
|
||||
CATEGORIES= editors
|
||||
|
||||
MAINTAINER= pho@cielonegro.org
|
||||
HOMEPAGE= http://www.emacswiki.org/emacs/YamlMode
|
||||
COMMENT= Emacs major mode for editing YAML files
|
||||
LICENSE= gnu-gpl-v2
|
||||
|
||||
GIT_REPOSITORIES= master
|
||||
GIT_REPO.master= git://github.com/yoshiki/${PKGBASE}.git
|
||||
GIT_MODULE.master= ${PKGBASE}
|
||||
|
||||
PKG_DESTDIR_SUPPORT= user-destdir
|
||||
INSTALLATION_DIRS+= ${EMACS_LISPPREFIX}
|
||||
INSTALLATION_DIRS+= share/doc/${PKGBASE}
|
||||
|
||||
WRKSRC= ${WRKDIR}/${PKGBASE}
|
||||
USE_LANGUAGES= # none
|
||||
NO_CONFIGURE= YES
|
||||
|
||||
do-build:
|
||||
cd ${WRKSRC} \
|
||||
&& ${EMACS_BIN} -batch -f batch-byte-compile ${PKGBASE}.el
|
||||
|
||||
do-install:
|
||||
${INSTALL_DATA} ${WRKSRC}/*.el ${DESTDIR}${EMACS_LISPPREFIX}
|
||||
${INSTALL_DATA} ${WRKSRC}/*.elc ${DESTDIR}${EMACS_LISPPREFIX}
|
||||
${INSTALL_DATA} ${WRKSRC}/Changes ${DESTDIR}${PREFIX}/share/doc/${PKGBASE}
|
||||
${INSTALL_DATA} ${WRKSRC}/README ${DESTDIR}${PREFIX}/share/doc/${PKGBASE}
|
||||
|
||||
.include "../../wip/mk/git-package.mk"
|
||||
.include "../../editors/emacs/modules.mk"
|
||||
.include "../../mk/bsd.pkg.mk"
|
5
yaml-mode/PLIST
Normal file
5
yaml-mode/PLIST
Normal file
|
@ -0,0 +1,5 @@
|
|||
@comment $NetBSD: PLIST,v 1.1.1.1 2012/03/06 04:38:39 phonohawk Exp $
|
||||
share/doc/yaml-mode/Changes
|
||||
share/doc/yaml-mode/README
|
||||
${EMACS_LISPPREFIX}/yaml-mode.el
|
||||
${EMACS_LISPPREFIX}/yaml-mode.elc
|
1
yaml-mode/distinfo
Normal file
1
yaml-mode/distinfo
Normal file
|
@ -0,0 +1 @@
|
|||
$NetBSD: distinfo,v 1.1.1.1 2012/03/06 04:38:39 phonohawk Exp $
|
Loading…
Reference in a new issue