mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-20 00:21:35 +00:00
f935a609c5
supports them. This is determined by running ``configure --help'' in do-configure target and set the shell variable _LATE_CONFIGURE_ARGS which is then passed to CONFIGURE_ARGS. - Remove --mandir and --infodir in ports' Makefile where applicable Few ports use REINPLACE_CMD to achieve the same effect, remove them too. - Correct some manual pages location from PREFIX/man to MANPREFIX/man - Define INFO_PATH where necessary - Document that .info files are installed in a subdirectory relative to PREFIX/INFO_PATH and slightly change add-plist-info to use INFO_PATH and subdirectory detection. PR: ports/111470 Approved by: portmgr Discussed with: stas (Mk/*), gerald (info related stuffs) Tested by: pointyhat exp run
93 lines
2.2 KiB
Makefile
93 lines
2.2 KiB
Makefile
# New ports collection makefile for: emacs22
|
|
# Date created: April 12 2005
|
|
# Whom: Kenneth Vestergaard Schmidt <kvs@pil.dk>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= emacs
|
|
PORTVERSION= ${EMACS_VER}
|
|
PORTREVISION= 1
|
|
CATEGORIES= editors ipv6
|
|
MASTER_SITES= ${MASTER_SITE_GNU_ALPHA}
|
|
MASTER_SITE_SUBDIR= emacs/pretest
|
|
|
|
MAINTAINER= keramida@ceid.upatras.gr
|
|
COMMENT= GNU editing macros
|
|
|
|
.if !defined(WITHOUT_X11)
|
|
.if defined(WITHOUT_GTK)
|
|
LIB_DEPENDS= Xaw3d.${XAWVER}:${PORTSDIR}/x11-toolkits/Xaw3d
|
|
.endif
|
|
LIB_DEPENDS+= jpeg.9:${PORTSDIR}/graphics/jpeg \
|
|
tiff.4:${PORTSDIR}/graphics/tiff \
|
|
ungif.5:${PORTSDIR}/graphics/libungif \
|
|
png.5:${PORTSDIR}/graphics/png
|
|
.endif
|
|
|
|
CONFLICTS= emacs-19.* emacs-21.* \
|
|
xemacs-[0-9]* xemacs-devel-[0-9]* \
|
|
xemacs-mule-[0-9]* xemacs-devel-mule-[0-9]*
|
|
|
|
EMACS_VER= 22.0.99
|
|
GNU_CONFIGURE= yes
|
|
USE_GMAKE= yes
|
|
ALL_TARGET= bootfast
|
|
.if !defined(WITHOUT_X11)
|
|
.if !defined(WITHOUT_GTK)
|
|
USE_GNOME= gtk20
|
|
.else
|
|
USE_XLIB= yes
|
|
.endif
|
|
USE_XPM= yes
|
|
.endif
|
|
|
|
CONFIGURE_TARGET= ${MACHINE_ARCH}-freebsd
|
|
.if defined(WITHOUT_X11)
|
|
CONFIGURE_ARGS= --with-x=no
|
|
.else
|
|
.if !defined(WITHOUT_GTK)
|
|
CONFIGURE_ARGS= --with-gtk
|
|
.endif
|
|
.endif
|
|
|
|
.if defined(WITHOUT_XIM)
|
|
CONFIGURE_ARGS+= --without-xim
|
|
.endif
|
|
|
|
MAN1= ctags.1 emacs.1 emacsclient.1 etags.1
|
|
PLIST_SUB= EMACS_VER=${EMACS_VER} EMACS_ARCH=${CONFIGURE_TARGET}
|
|
|
|
MAKE_ENV= LC_ALL=C
|
|
|
|
INFO= ada-mode autotype calc ccmode cl dired-x ebrowse ediff \
|
|
efaq eintr elisp emacs-mime emacs erc eshell eudc \
|
|
flymake forms gnus idlwave info message mh-e newsticker \
|
|
org pcl-cvs pgg rcirc reftex sc ses sieve smtpmail speedbar \
|
|
tramp url vip viper widget woman
|
|
|
|
LATEST_LINK= emacs22
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${ARCH} == "ia64"
|
|
BROKEN= Emacs 22.X does not currently build on ia64
|
|
.endif
|
|
|
|
pre-everything::
|
|
.if !defined(WITHOUT_X11) && !defined(WITHOUT_GTK)
|
|
@${ECHO_MSG} "====>"
|
|
@${ECHO_MSG} "====> To disable GTK+ interface support, define WITHOUT_X11 or WITHOUT_GTK"
|
|
@${ECHO_MSG} "====>"
|
|
.endif
|
|
.if !defined(WITHOUT_X11) && !defined(WITHOUT_XIM)
|
|
@${ECHO_MSG} "====>"
|
|
@${ECHO_MSG} "====> To disable X11 Input Method support, define WITHOUT_XIM"
|
|
@${ECHO_MSG} "====>"
|
|
.endif
|
|
|
|
post-patch:
|
|
@${RM} -f ${WRKSRC}/info/*
|
|
|
|
.include <bsd.port.post.mk>
|