7fc5bd70f3
editors/emacs: - Update to 24.3 - Update CANNA patchset[1] - Unbreak ARM support by using the patch from emacs-devel port - Add missing INSTALLS_ICONS[2] - Remove a patch which is already integrated upstream - Fix Makefile header editors/emacs-devel: - Update to bzr revision 112178 - Fix Makefile header - Add missing INSTALLS_ICONS[2] editors/emacs23: - Remove ABI versions from LIB_DEPENDS - Fix Makefile header - Add missing INSTALLS_ICONS[2] Mk/bsd.emacs.mk: - Update major version for editors/emacs port *: - Bump PORTREVISION to chase Emacs updates PR: ports/177428[2] Submitted by: Yuji TAKANO[1] (via private email), bdrewery[2]
39 lines
944 B
Makefile
39 lines
944 B
Makefile
# New ports collection makefile for: elscreen
|
|
# Date created: 27 May 2002
|
|
# Whom: Yoichi NAKAYAMA <yoichi@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= elscreen
|
|
PORTVERSION= 1.4.6
|
|
PORTREVISION= 7
|
|
CATEGORIES= misc elisp
|
|
MASTER_SITES= ftp://ftp.morishima.net/pub/morishima.net/naoto/ElScreen/%SUBDIR%/
|
|
MASTER_SITE_SUBDIR= . old
|
|
|
|
MAINTAINER= kuriyama@FreeBSD.org
|
|
COMMENT= GNU screen like utility on Emacsen
|
|
|
|
USE_EMACS= yes
|
|
.include <bsd.port.pre.mk>
|
|
.if (${EMACS_PORT_NAME} == "emacs20")
|
|
DEPPORT_SUFFIX= -${EMACS_PORT_NAME}
|
|
.else
|
|
DEPPORT_SUFFIX=
|
|
.endif
|
|
|
|
RUN_DEPENDS= ${LOCALBASE}/${EMACS_VERSION_SITE_LISPDIR}/emu/emu.el:${PORTSDIR}/editors/apel${DEPPORT_SUFFIX}
|
|
|
|
EMACS_NO_BUILD_DEPENDS= YES
|
|
NO_BUILD= YES
|
|
|
|
do-install:
|
|
${INSTALL_DATA} ${WRKSRC}/elscreen.el ${PREFIX}/${EMACS_SITE_LISPDIR}
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
.for i in ChangeLog README
|
|
${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
.include <bsd.port.post.mk>
|