mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-17 03:25:46 +00:00
9ed2d736db
Submitted by: NIIMI Satoshi <sa2c at sa2c dot net>
71 lines
1.8 KiB
Makefile
71 lines
1.8 KiB
Makefile
# New ports collection makefile for: GNU emacs
|
|
# Date created: 29 October 1994
|
|
# Whom: jkh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= emacs
|
|
PORTVERSION= ${EMACS_VER}
|
|
PORTREVISION= 5
|
|
CATEGORIES+= editors ipv6
|
|
MASTER_SITES= ${MASTER_SITE_GNU}
|
|
MASTER_SITE_SUBDIR= emacs
|
|
|
|
PATCH_SITES= ${MASTER_SITE_LOCAL}
|
|
PATCH_SITE_SUBDIR= shige/emacs
|
|
PATCHFILES= emacs-20.7-linespace-patch.gz
|
|
PATCH_DIST_STRIP= -p1
|
|
|
|
MAINTAINER?= ports@FreeBSD.org
|
|
COMMENT?= GNU editing macros
|
|
|
|
ONLY_FOR_ARCHS= i386 alpha
|
|
DEPRECATED= "editors/emacs is recommended instead for new installations"
|
|
|
|
USE_AUTOTOOLS= autoconf:213
|
|
USE_GMAKE= yes
|
|
EMACS_VER= 20.7
|
|
LATEST_LINK?= ${PKGNAMEPREFIX}emacs20
|
|
CONFIGURE_TARGET= ${MACHINE_ARCH}--freebsd
|
|
.if defined(WITHOUT_X11)
|
|
CONFIGURE_ARGS= --with-x=no --with-pop
|
|
.else
|
|
CONFIGURE_ARGS= --with-x-toolkit --with-pop
|
|
USE_XLIB= yes
|
|
.endif
|
|
CONFIGURE_ARGS+= --with-line-space \
|
|
--bindir='$${archlibdir}' \
|
|
--infodir='$${datadir}/emacs/$${version}/info'
|
|
MAKE_ARGS+= manext=20.1
|
|
|
|
MAKE_ENV= INSTALL_SCRIPT="${INSTALL_SCRIPT}"
|
|
MAN1= emacs20.1 etags20.1 ctags20.1
|
|
PLIST_SUB= EMACS_VER=${EMACS_VER} EMACS_ARCH=${CONFIGURE_TARGET}
|
|
|
|
RECOMPILE_ELS= dired.el startup.el
|
|
|
|
pre-build:
|
|
${RM} -rf ${WRKSRC}/info/*
|
|
|
|
post-build:
|
|
# to rebuild emacs because startup.elc should be updated
|
|
@(cd ${WRKSRC}/lisp; \
|
|
${WRKSRC}/src/emacs -batch -q -no-init-file \
|
|
-f batch-byte-compile ${RECOMPILE_ELS} ; \
|
|
)
|
|
@${RM} -f ${WRKSRC}/src/emacs ${WRKSRC}/src/emacs-${EMACS_VER}*
|
|
@(cd ${BUILD_WRKSRC}; \
|
|
${SETENV} ${MAKE_ENV} \
|
|
${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${ALL_TARGET} ;\
|
|
)
|
|
|
|
BINDIR= ${PREFIX}/libexec/emacs/${EMACS_VER}/${CONFIGURE_TARGET}
|
|
post-install::
|
|
for f in b2m ctags emacs emacsclient etags rcs-checkin; do \
|
|
${LN} -sf ${BINDIR}/$${f} ${PREFIX}/bin/$${f}20; \
|
|
done
|
|
${LN} -sf ${BINDIR}/emacs-${EMACS_VER} ${PREFIX}/bin/emacs-${EMACS_VER}
|
|
|
|
.include <bsd.port.mk>
|