0043079b8d
Bugs fixed - monotone crashed on x86_64 when a netsync action required the parsing of an URL. This has been fixed. (closes monotone issue 100) - monotone's automation interface version was reported wrongly as 12.1, where it should have been 13.0.
34 lines
906 B
Makefile
34 lines
906 B
Makefile
# $NetBSD: Makefile,v 1.5 2010/11/30 10:30:54 jmmv Exp $
|
|
#
|
|
|
|
DISTNAME= monotone-0.99.1
|
|
PKGNAME= ${EMACS_PKGNAME_PREFIX}${DISTNAME:S/-/-el-/}
|
|
CATEGORIES= devel scm
|
|
MASTER_SITES= http://monotone.ca/downloads/0.99/
|
|
|
|
MAINTAINER= jmmv@NetBSD.org
|
|
HOMEPAGE= http://monotone.ca/
|
|
COMMENT= Emacs packages to work with the monotone VCS
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
EL_FILES= monotone monotone-nav
|
|
|
|
do-build:
|
|
.for f in ${EL_FILES}
|
|
${EMACS_BIN} --no-init-file --no-site-file --batch \
|
|
--directory ${WRKSRC}/contrib \
|
|
-f batch-byte-compile ${WRKSRC}/contrib/${f}.el
|
|
.endfor
|
|
|
|
do-install:
|
|
${INSTALL_DATA_DIR} ${DESTDIR}${EMACS_LISPPREFIX}
|
|
.for f in ${EL_FILES}
|
|
${INSTALL_DATA} ${WRKSRC}/contrib/${f}.el \
|
|
${DESTDIR}${EMACS_LISPPREFIX}
|
|
${INSTALL_DATA} ${WRKSRC}/contrib/${f}.elc \
|
|
${DESTDIR}${EMACS_LISPPREFIX}
|
|
.endfor
|
|
|
|
.include "../../editors/emacs/modules.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|