1997-09-03 19:27:58 +00:00
|
|
|
# New ports collection makefile for: X-Emacs
|
1998-04-20 05:15:54 +00:00
|
|
|
# Version required: 20.4
|
1997-09-03 19:27:58 +00:00
|
|
|
# Date created: 26 August 1997
|
|
|
|
# Whom: Michael Elbel (me)
|
|
|
|
#
|
1999-08-22 23:33:47 +00:00
|
|
|
# $Id: Makefile,v 1.28 1999/08/22 18:57:45 mharo Exp $
|
1997-09-03 19:27:58 +00:00
|
|
|
#
|
|
|
|
|
1998-04-20 05:15:54 +00:00
|
|
|
DISTNAME= xemacs-20.4
|
1997-09-03 19:27:58 +00:00
|
|
|
CATEGORIES= editors
|
1997-12-15 20:07:46 +00:00
|
|
|
MASTER_SITES= \
|
1998-04-20 05:15:54 +00:00
|
|
|
ftp://ftp.xemacs.org/pub/xemacs/${DISTNAME}/ \
|
|
|
|
ftp://ftp.mpi-sb.mpg.de/pub/gnu/mirror/ftp.xemacs.org/xemacs/${DISTNAME}/ \
|
1997-12-15 20:07:46 +00:00
|
|
|
ftp://ftp.usyd.edu.au:/pub/Xemacs/${DISTNAME}/ \
|
|
|
|
ftp://ftp.lab.kdd.co.jp/xemacs/${DISTNAME}/ \
|
1998-04-20 05:15:54 +00:00
|
|
|
ftp://ftp.th-darmstadt.de:/pub/editors/xemacs/${DISTNAME}/
|
1997-12-27 02:53:26 +00:00
|
|
|
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${MULEDISTFILE}
|
1997-09-03 19:27:58 +00:00
|
|
|
|
|
|
|
MAINTAINER= me@FreeBSD.org
|
|
|
|
|
1998-09-17 00:33:02 +00:00
|
|
|
LIB_DEPENDS= Xpm.4:${PORTSDIR}/graphics/xpm \
|
1998-09-15 11:46:15 +00:00
|
|
|
jpeg.9:${PORTSDIR}/graphics/jpeg \
|
1999-01-23 07:05:35 +00:00
|
|
|
png.3:${PORTSDIR}/graphics/png
|
1997-09-03 19:27:58 +00:00
|
|
|
|
|
|
|
USE_GMAKE= yes
|
|
|
|
STRIP=
|
|
|
|
HAS_CONFIGURE= yes
|
1999-02-03 23:44:30 +00:00
|
|
|
XEMACS_ARCH= ${MACHINE_ARCH}--freebsd
|
|
|
|
CONFIGURE_ARGS= ${XEMACS_ARCH} --prefix=${PREFIX} \
|
1999-01-04 03:29:20 +00:00
|
|
|
--with-clash-detection \
|
1998-10-07 21:38:00 +00:00
|
|
|
--lockdir=/var/run/emacs/lock \
|
1997-09-03 19:27:58 +00:00
|
|
|
--with-sound=native \
|
1997-11-18 20:41:44 +00:00
|
|
|
--site-includes=${PREFIX}/include \
|
|
|
|
--site-libraries=${PREFIX}/lib \
|
1997-11-12 21:41:33 +00:00
|
|
|
--sitelispdir="${PREFIX}/lib/xemacs/site-lisp ${PREFIX}/share/emacs/site-lisp" \
|
1999-01-25 22:06:11 +00:00
|
|
|
--with-session=yes \
|
1998-10-01 19:29:50 +00:00
|
|
|
${WITH_XFACE} ${WITH_MULE} ${WITH_DIALOGS} ${WITH_OFFIX}
|
1997-09-03 19:27:58 +00:00
|
|
|
MAN1= ctags.1 etags.1 gnuattach.1 gnuclient.1 gnudoit.1 \
|
|
|
|
gnuserv.1 xemacs.1
|
1997-12-15 20:07:46 +00:00
|
|
|
ALL_TARGET= all dist
|
1999-02-03 23:44:30 +00:00
|
|
|
PLIST_SUB= XEMACS_VER=20.4 XEMACS_ARCH=${XEMACS_ARCH}
|
1997-09-03 19:27:58 +00:00
|
|
|
|
1998-03-02 01:38:49 +00:00
|
|
|
# Have
|
1997-09-03 19:27:58 +00:00
|
|
|
pre-configure:
|
|
|
|
@echo "To compile in the MULE features, set the environment variable USE_MULE"
|
1998-01-01 21:06:47 +00:00
|
|
|
.if defined(HAVE_MOTIF)
|
1998-03-02 01:38:49 +00:00
|
|
|
@echo ""
|
1998-01-01 21:06:47 +00:00
|
|
|
@echo "If your MOTIF library is actually lesstif, you might occasionally"
|
|
|
|
@echo "experience locked-up frames."
|
|
|
|
@echo "In this case, set the environment variable MOTIF_STATIC and recompile, "
|
|
|
|
@echo "which will force the use of athena widgets for dialogs."
|
|
|
|
.endif
|
1997-09-03 19:27:58 +00:00
|
|
|
|
|
|
|
.if defined(USE_MULE)
|
|
|
|
WITH_MULE= --with-mule
|
1997-12-27 02:53:26 +00:00
|
|
|
MULEDISTFILE= ${DISTNAME}-mule.tar.gz
|
1998-01-01 21:06:47 +00:00
|
|
|
PLIST= ${PKGDIR}/PLIST.mule
|
1997-09-03 19:27:58 +00:00
|
|
|
.endif
|
|
|
|
|
|
|
|
# hack to avoid shipping binaries linked with Motif
|
|
|
|
.if defined(MOTIF_STATIC)
|
|
|
|
WITH_DIALOGS= --with-dialogs=athena
|
|
|
|
.endif
|
|
|
|
|
1998-10-01 19:29:50 +00:00
|
|
|
# Drop faces (libcompface) and offix (libDnd) if building package,
|
|
|
|
# autodetect otherwise
|
1998-02-16 14:38:26 +00:00
|
|
|
.if defined(PACKAGE_BUILDING)
|
|
|
|
WITH_XFACE?= --with-xface=no
|
1998-10-01 19:29:50 +00:00
|
|
|
WITH_OFFIX?= --with-offix=no
|
1998-02-16 14:38:26 +00:00
|
|
|
.endif
|
|
|
|
|
1997-09-03 19:27:58 +00:00
|
|
|
post-install:
|
1997-12-15 20:07:46 +00:00
|
|
|
.for file in b2m ctags etags gnuclient ${DISTNAME}
|
1997-09-03 19:27:58 +00:00
|
|
|
strip ${PREFIX}/bin/${file}
|
|
|
|
.endfor
|
1997-11-08 22:15:37 +00:00
|
|
|
# ``make install'' does not set the permissions like pkg_add does.
|
1999-08-22 19:01:07 +00:00
|
|
|
${CHMOD} 1777 /var/run/emacs/lock
|
|
|
|
${CHMOD} 755 ${PREFIX}/lib/xemacs/site-lisp
|
|
|
|
${CHMOD} 755 ${PREFIX}/share/emacs/site-lisp
|
1998-03-02 01:38:49 +00:00
|
|
|
${RM} -f ${PREFIX}/bin/send-pr
|
1998-10-07 21:38:00 +00:00
|
|
|
# install xemacs20.sh into ${PREFIX}/etc/rc.d
|
1999-08-22 23:33:47 +00:00
|
|
|
@if [ ! -d ${PREFIX}/etc/rc.d ]; then ${MKDIR} ${PREFIX}/etc/rc.d; fi
|
1998-10-07 21:38:00 +00:00
|
|
|
${INSTALL_SCRIPT} ${FILESDIR}/xemacs20.sh ${PREFIX}/etc/rc.d
|
1997-09-03 19:27:58 +00:00
|
|
|
|
|
|
|
.include <bsd.port.mk>
|