pkgsrc/editors/xemacs-current/Makefile
magick 2a0c9d7deb Update xemacs-current from 21.5.18 to 21.5.19
From the ChangeLog:

*          XEmacs 21.5.19 "chives" is released.
      "chives" is the twentieth in the VEGETABLE series.


Relative to XEmacs 21.5.18 "chestnut", "chives" includes a large
number of minor enhancements and work-in-progress.  Some important or
annoying bugs have been fixed:

  - The lstream data truncation bug (often observed as truncated emails
    or truncated process input in buffers) has been identified and
    fixed, we believe (hard to test).

  - The bug where process output insertion replaced the whole buffer,
    rather than just the region, has been fixed.

  - The "Metacity maximize" bug (which was XEmacs's fault, not the
    window manager's) has been fixed.

Known remaining bugs include:

  - Aborts due to recursive entry to the allocation code from error
    handlers.  Workaround: avoid getting the memory full warnings (at
    75% and 95% of memory space).

  - A regression test failure in no-Mule builds.  Workaround: don't
    run the c-tests.el series when running tests.  (Simply move
    tests/automated/c-tests.el out of the way.)

Currently fairly stable, this seems to be a good point to release a
beta as a checkpoint.  At the user level the most visible changes are
extension of the "behavior" mechanism for enabling and disabling
features, and a major reorganization of the documentation in the
source tree.  For behaviors, see the Options->Behaviors submenu.

The source documentation changes include

   At top level,
      README has been gutted, with most content moved to the FAQ.
      BUGS and README.packages were removed, with much of their content
      moved to the FAQ.
      GETTING.GNU.SOFTWARE was removed.

   In etc,
      BETA, CHARSETS, CODING-STANDARDS, CODINGS, DEBUG, DISTRIB, MACHINES,
      and PACKAGES were removed, with most content moved to various Texinfo
      documents.
      FTP, GNU, LPF, MAILINGLISTS MORE.STUFF, MOTIVATION, ORDERS,
      ORDERS.EUROPE, ORDERS.JAPAN, README.HYPERBOLE, README.OO-BROWSER,
      SERVICE, and TERMS were removed.

   PROBLEMS and etc/README were revised.

For developers, the following important internal API changes occurred.

  - Initialization code (called from emacs.c:main_1()) has been
    refactored.  See the ChangeLog (2004-10-27, Ben Wing) for details.

  - The GCPRO API has been refactored.  See the ChangeLog (2004-10-27,
    Ben Wing) for details.  (Yes, it was a megapatch: same log entry.)

For more detailed information, there is a list of credits, and then
the full ChangeLogs, following the availability information.

For general information about XEmacs, the developers, and the user
community, see our home page,

		       http://www.xemacs.org/
2005-03-02 22:05:19 +00:00

66 lines
1.7 KiB
Makefile

# $NetBSD: Makefile,v 1.46 2005/03/02 22:05:19 magick Exp $
DISTNAME= xemacs-21.5.19
CATEGORIES= editors
MASTER_SITES= ${MASTER_SITE_XEMACS:=xemacs-21.5/}
MAINTAINER= magick@NetBSD.org
HOMEPAGE= http://www.xemacs.org/
COMMENT= *BETA* XEmacs text editor version 21.5.19
CONFLICTS+= gnuclient-[0-9]*
USE_BUILDLINK3= YES
USE_X11= YES
BUILD_DEFS+= XEMACS_WIDGETS
PLIST_SUBST+= EMACSVER=xemacs-21.5-b19
MESSAGE_SUBST+= EMACSVER=xemacs-21.5-b19
.if ${MACHINE_ARCH} == "arm" || ${MACHINE_ARCH} == "arm32"
GCC_REQD+= 2.95.3
.endif
.include "options.mk"
XEMACS_WIDGETS?= lucid
.if ${XEMACS_WIDGETS} == "gtk"
. include "../../x11/gtk/buildlink3.mk"
WITH_WIDGETS= --with-gtk
.elif ${XEMACS_WIDGETS} == "gnome"
. include "../../x11/gnome-libs/buildlink3.mk"
WITH_WIDGETS= --with-gnome
.elif ${XEMACS_WIDGETS} == "motif"
. include "../../mk/motif.buildlink3.mk"
.else
. include "../../mk/xaw.buildlink3.mk"
WITH_WIDGETS= --with-widgets=lucid
.endif
.include "../../databases/gdbm/buildlink3.mk"
.include "../../graphics/jpeg/buildlink3.mk"
.include "../../graphics/png/buildlink3.mk"
.include "../../graphics/tiff/buildlink3.mk"
INFOPATH= ${PREFIX}/info:${X11BASE}/info:/usr/local/info
HAS_CONFIGURE= YES
CONFIGURE_ARGS+= ${MACHINE_GNU_PLATFORM}
CONFIGURE_ARGS+= --prefix=${PREFIX}
CONFIGURE_ARGS+= --with-clash-detection
CONFIGURE_ARGS+= --error-checking=none
CONFIGURE_ARGS+= --with-mule=yes
CONFIGURE_ARGS+= --without-ncurses
CONFIGURE_ARGS+= --without-msw
CONFIGURE_ARGS+= ${WITH_WIDGETS}
CONFIGURE_ARGS+= --infopath="${INFOPATH}"
CONFIGURE_ARGS+= --site-includes=${PREFIX}/include:${WRKDIR}
CONFIGURE_ARGS+= --site-libraries=${PREFIX}/lib
CFLAGS+= -Dunix
post-patch:
@${RM} -f ${WRKSRC}/etc/ctags.1.orig
.include "../../mk/bsd.pkg.mk"