mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-23 09:10:43 +00:00
a3cc513bfc
- Convert USE_EMACS to USES=emacs - Remove editors/emacs-nox11 (refer to nox flavors of editors/emacs and editors/emacs-devel) - Permit default Emacs flavor to be specified in make.conf - Rename japanese/migemo-emacs23 to japanese/migemo-emacs - Update and simplify audio/emms and fix build on FreeBSD 10 [1] - Update databases/bbdd and fix build on FreeBSD 10 [1] - Update editors/emacs-devel - Ensure Makefile shell commands that change directory are executed in a subshell - Silence some portlint warnings [1] By not depending on base texinfo PR: 225404 Reviewed by: antoine Approved by: portmgr (mat) ashish (maintainer) Differential Revision: https://reviews.freebsd.org/D13506
38 lines
865 B
Makefile
38 lines
865 B
Makefile
# Created by: Yoichi NAKAYAMA <yoichi@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= tramp
|
|
PORTVERSION= 2.3.0
|
|
PORTREVISION= 4
|
|
CATEGORIES= net elisp
|
|
MASTER_SITES= GNU
|
|
PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX}
|
|
|
|
MAINTAINER= kuriyama@FreeBSD.org
|
|
COMMENT= Transparent remote file access tool for Emacs
|
|
|
|
LICENSE= GPLv3+
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
USES= cpe emacs gmake makeinfo
|
|
|
|
GNU_CONFIGURE= yes
|
|
CPE_VENDOR= gnu
|
|
|
|
TRAMP_LISPDIR= ${EMACS_VERSION_SITE_LISPDIR}/${PORTNAME}
|
|
PLIST_SUB+= TRAMP_LISPDIR=${TRAMP_LISPDIR}
|
|
CONFIGURE_ENV= TEXI2DVI=no
|
|
CONFIGURE_ARGS= --with-lispdir=${PREFIX}/${TRAMP_LISPDIR} \
|
|
--with-emacs=${EMACS_CMD}
|
|
|
|
INFO= tramp
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} 's/^make/${MAKE_CMD}/' ${WRKSRC}/configure
|
|
|
|
.if ${FLAVOR:U} != nox && ${FLAVOR:U} != devel_nox
|
|
PLIST_FILES+= ${TRAMP_LISPDIR}/tramp-gvfs.el ${TRAMP_LISPDIR}/tramp-gvfs.elc
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|