From 7f10bb2960d106ac01336ac2a7f30f58ef8c95b0 Mon Sep 17 00:00:00 2001 From: tg Date: Thu, 6 Jan 2000 11:46:19 +0000 Subject: - Install python-mode.el. PR: 15702 Submitted by: "Dmitry S. Sivachenko" - Only use Tk support if X11 is installed. PR: 15910 Submitted by: Nathan Dorfman --- lang/python15/Makefile | 6 +++++- lang/python15/pkg-plist | 2 ++ 2 files changed, 7 insertions(+), 1 deletion(-) (limited to 'lang/python15') diff --git a/lang/python15/Makefile b/lang/python15/Makefile index fe715b119522..3cc135b675b2 100644 --- a/lang/python15/Makefile +++ b/lang/python15/Makefile @@ -32,9 +32,11 @@ MAN1= python.1 SETUP_FILE= Setup # -# Support for Tk is compiled in by default. +# Support for Tk is compiled in by default only if X11 is installed. # +.if exists(${X11_BASE}) WITH_TK?= yes +.endif .if defined(WITH_TK) && $(WITH_TK) == yes TK_DEPENDS= tk82.1:${PORTSDIR}/x11-toolkits/tk82 SETUP_LOCAL= Setup.tk @@ -104,6 +106,8 @@ pre-install: post-install: strip ${PREFIX}/bin/python @${MKDIR} ${PREFIX}/share/doc/python + @${MKDIR} ${PREFIX}/share/emacs/site-lisp + ${INSTALL_DATA} ${WRKSRC}/Misc/python-mode.el ${PREFIX}/share/emacs/site-lisp ${INSTALL_DATA} ${WRKSRC}/Misc/COPYRIGHT ${PREFIX}/share/doc/python @${MKDIR} ${PREFIX}/lib/python1.5/site-packages .if defined(WITH_TOOLS) && ${WITH_TOOLS} == yes diff --git a/lang/python15/pkg-plist b/lang/python15/pkg-plist index 2360c6ba0f0d..58ef1c97477d 100644 --- a/lang/python15/pkg-plist +++ b/lang/python15/pkg-plist @@ -1,6 +1,7 @@ bin/python1.5 bin/python share/doc/python/COPYRIGHT +share/emacs/site-lisp/python-mode.el include/python1.5/Python.h include/python1.5/abstract.h include/python1.5/bitset.h @@ -995,3 +996,4 @@ lib/python1.5/xmllib.pyo @dirrm lib/python1.5 @exec mkdir -p %D/lib/python1.5/site-packages @dirrm share/doc/python +@unexec rmdir share/emacs/site-lisp 2>/dev/null || true -- cgit