mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-05 01:55:52 +00:00
f831a5f25d
for an exp-run of updated python versions. - trim Makefile headers - remove leading indefinite article from COMMENT - use PYTHON shortcut in MASTER_SITES - whitespace fixes - remove checks for unsupported versions of FreeBSD - use static value ``33'' instead of PYTHON_SUFFIX in lang/python33/pkg-plist, because this value is not supposed to be changed across the branch and for consistency with other python3 ports - remove conflicts in lang/python-mode.el with not more existing python-2.4
34 lines
774 B
Makefile
34 lines
774 B
Makefile
# Created by: Dario Freni <saturnero@gufi.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= python-mode.el
|
|
PORTVERSION= 1.0
|
|
PORTREVISION= 1
|
|
PORTEPOCH= 1
|
|
CATEGORIES= lang elisp python
|
|
MASTER_SITES= SF/python-mode/OldFiles
|
|
DISTNAME= python-mode-${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Emacs lisp module for the Python language
|
|
|
|
NO_BUILD= yes
|
|
|
|
EMACSLISPDIR= ${PREFIX}/share/emacs/site-lisp
|
|
XEMACSLISPDIR= ${PREFIX}/lib/xemacs/site-lisp
|
|
|
|
LISPFILES= doctest-mode.el pycomplete.el pycomplete.py python-mode.el
|
|
|
|
do-install:
|
|
${MKDIR} ${EMACSLISPDIR}
|
|
${MKDIR} ${XEMACSLISPDIR}
|
|
for i in ${LISPFILES}; do \
|
|
${INSTALL_DATA} ${WRKSRC}/$${i} ${EMACSLISPDIR}/$${i}; \
|
|
${LN} -sf ${EMACSLISPDIR}/$${i} ${XEMACSLISPDIR}; \
|
|
done;
|
|
|
|
post-install:
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|