1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-05 01:55:52 +00:00
freebsd-ports/lang/python-mode.el/Makefile
Ruslan Makhmatkhanov f831a5f25d Commit all the non-functional changes to python ports to reduce the diff size
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
2013-05-11 11:37:54 +00:00

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>