mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-28 01:06:17 +00:00
2ab1f4ed47
Emacs lisp modules for the Python language. PR: 87314 Submitted by: Dario Freni <saturnero@guri.org> WWW: http://python-mode.sourceforge.net/
38 lines
863 B
Makefile
38 lines
863 B
Makefile
# New ports collection makefile for: python-mode.el
|
|
# Date created: 11 October 2005
|
|
# Whom: Dario Freni <saturnero@gufi.org
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= python-mode.el
|
|
PORTVERSION= 1.0.a
|
|
CATEGORIES= lang elisp python
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR=python-mode
|
|
DISTNAME= python-mode-1.0alpha
|
|
|
|
MAINTAINER= saturnero@gufi.org
|
|
COMMENT= Emacs lisp module for the Python language
|
|
|
|
NO_BUILD= yes
|
|
|
|
CONFLICTS= python-2.4.[012]*
|
|
EMACSLISPDIR= ${PREFIX}/share/emacs/site-lisp
|
|
XEMACSLISPDIR= ${PREFIX}/lib/xemacs/site-lisp
|
|
|
|
LISPFILES= python-mode.el pycomplete.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>
|