Sun Oct 9 02:49:48 2011 UTC ()
This can be built with emacs23nox too.


(kim)
diff -r1.23 -r1.24 pkgsrc/devel/python-mode/Makefile

cvs diff -r1.23 -r1.24 pkgsrc/devel/python-mode/Attic/Makefile (expand / switch to unified diff)

--- pkgsrc/devel/python-mode/Attic/Makefile 2009/08/06 01:44:50 1.23
+++ pkgsrc/devel/python-mode/Attic/Makefile 2011/10/09 02:49:48 1.24
@@ -1,35 +1,38 @@ @@ -1,35 +1,38 @@
1# $NetBSD: Makefile,v 1.23 2009/08/06 01:44:50 minskim Exp $ 1# $NetBSD: Makefile,v 1.24 2011/10/09 02:49:48 kim Exp $
2# 2#
3 3
4DISTNAME= python-mode-1.0 4DISTNAME= python-mode-1.0
5PKGNAME= ${EMACS_PKGNAME_PREFIX}${DISTNAME} 5PKGNAME= ${EMACS_PKGNAME_PREFIX}${DISTNAME}
6PKGREVISION= 1 6PKGREVISION= 1
7CATEGORIES= devel python 7CATEGORIES= devel python
8MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=python-mode/} 8MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=python-mode/}
9 9
10MAINTAINER= pkgsrc-users@NetBSD.org 10MAINTAINER= pkgsrc-users@NetBSD.org
11HOMEPAGE= http://sourceforge.net/projects/python-mode/ 11HOMEPAGE= http://sourceforge.net/projects/python-mode/
12COMMENT= Emacs mode for editing python files 12COMMENT= Emacs mode for editing python files
13 13
14PKG_DESTDIR_SUPPORT= user-destdir 14PKG_DESTDIR_SUPPORT= user-destdir
15 15
16ELISP_FILES= python-mode.el 16ELISP_FILES= python-mode.el
17# Could be installed as well, but what about pycomplete.py? 17# Could be installed as well, but what about pycomplete.py?
18#ELISP_FILES+= doctest-mode.el pycomplete.el 18#ELISP_FILES+= doctest-mode.el pycomplete.el
19 19
20# Note that XEmacs >=21.4.4 includes a python-mode in the prog-modes 20# Note that XEmacs >=21.4.4 includes a python-mode in the prog-modes
21# package. Also, python-mode does not appear to work as is with XEmacs 21.1 21# package. Also, python-mode does not appear to work as is with XEmacs 21.1
22EMACS_VERSIONS_ACCEPTED= emacs23 emacs22 emacs22nox emacs21 emacs21nox emacs20 22EMACS_VERSIONS_ACCEPTED= emacs23 emacs23nox \
 23 emacs22 emacs22nox \
 24 emacs21 emacs21nox \
 25 emacs20
23 26
24.include "../../editors/emacs/modules.mk" 27.include "../../editors/emacs/modules.mk"
25 28
26INSTALLATION_DIRS= ${EMACS_LISPPREFIX:S/^${PREFIX}\///} 29INSTALLATION_DIRS= ${EMACS_LISPPREFIX:S/^${PREFIX}\///}
27 30
28do-build: 31do-build:
29 for file in ${ELISP_FILES}; do \ 32 for file in ${ELISP_FILES}; do \
30 ${EMACS_BIN} --no-init-file -batch \ 33 ${EMACS_BIN} --no-init-file -batch \
31 -f batch-byte-compile ${WRKSRC}/$${file}; \ 34 -f batch-byte-compile ${WRKSRC}/$${file}; \
32 done 35 done
33 36
34do-install: 37do-install:
35 for file in ${ELISP_FILES}; do \ 38 for file in ${ELISP_FILES}; do \