d4f0d0048a
- Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}. - Bump PORTREVISION for ports intalling files in ${X11BASE}.
34 lines
763 B
Makefile
34 lines
763 B
Makefile
# New ports collection makefile for: pymacs
|
|
# Date created: 23 July 2005
|
|
# Whom: mwm@mired.org
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= Pymacs
|
|
PORTVERSION= 0.22
|
|
PORTREVISION= 1
|
|
CATEGORIES= devel editors python elisp
|
|
MASTER_SITES= http://pymacs.progiciels-bpi.ca/archives/ \
|
|
${MASTER_SITE_GENTOO}
|
|
MASTER_SITE_SUBDIR= distfiles
|
|
|
|
MAINTAINER= mwm@mired.org
|
|
COMMENT= A Python package for scripting emacs
|
|
|
|
USE_PYTHON= yes
|
|
USE_PYDISTUTILS=yes
|
|
USE_PYTHON_PREFIX= yes
|
|
USE_EMACS= yes
|
|
|
|
.if !defined(EMACS_PORT_NAME)
|
|
EMACS_PORT_NAME=xemacs21
|
|
.endif
|
|
|
|
# Install the emacs side of things
|
|
post-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/pymacs.el ${PREFIX}/${EMACS_SITE_LISPDIR}
|
|
${EMACS_NAME} -batch -f batch-byte-compile \
|
|
${PREFIX}/${EMACS_SITE_LISPDIR}/pymacs.el
|
|
|
|
.include <bsd.port.mk>
|