9c8b5ede43
developer is officially maintaining the package. The rationale for changing this from "tech-pkg" to "pkgsrc-users" is that it implies that any user can try to maintain the package (by submitting patches to the mailing list). Since the folks most likely to care about the package are the folks that want to use it or are already using it, this would leverage the energy of users who aren't developers.
37 lines
1 KiB
Makefile
37 lines
1 KiB
Makefile
# $NetBSD: Makefile,v 1.15 2006/03/04 21:29:29 jlam Exp $
|
|
#
|
|
|
|
DISTNAME= python-mode-4.54
|
|
PKGNAME= ${EMACS_PKGNAME_PREFIX}${DISTNAME}
|
|
PKGREVISION= 1
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=python-mode/}
|
|
DISTFILES= python-mode.el
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.sourceforge.net/project/python-mode/
|
|
COMMENT= Emacs mode for editing python files
|
|
|
|
# Note that XEmacs >=21.4.4 includes a python-mode in the prog-modes
|
|
# package. Also, python-mode does not appear to work as is with XEmacs 21.1
|
|
EMACS_VERSIONS_ACCEPTED= emacs21 emacs21nox emacs20
|
|
|
|
WRKSRC= ${WRKDIR}
|
|
DIST_SUBDIR= python-mode-20041204
|
|
|
|
.include "../../mk/emacs.mk"
|
|
|
|
INSTALLATION_DIRS= ${EMACS_LISPPREFIX:S/^${PREFIX}\///}
|
|
|
|
do-extract:
|
|
${CP} ${DISTDIR}/${DIST_SUBDIR}/python-mode.el ${WRKDIR}
|
|
|
|
do-build:
|
|
${EMACS_BIN} --no-init-file -batch \
|
|
-f batch-byte-compile ${WRKDIR}/python-mode.el
|
|
|
|
do-install:
|
|
${INSTALL_DATA} ${WRKDIR}/python-mode.el ${EMACS_LISPPREFIX}
|
|
${INSTALL_DATA} ${WRKDIR}/python-mode.elc ${EMACS_LISPPREFIX}
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|