summaryrefslogtreecommitdiff
path: root/editors/emacs
AgeCommit message (Collapse)AuthorFilesLines
2012-09-07Revbump after updating graphics/cairoadam1-2/+2
2012-08-13Bump PKGREVISION for fix in librsvg/buildlink3.mk.wiz1-2/+2
2012-08-13Fix CVE-2012-3479:wiz3-3/+41
When the Emacs user option `enable-local-variables' is set to `:safe' (the default value is t), Emacs should automatically refuse to evaluate `eval' forms in file-local variable sections. Due to the bug, Emacs instead automatically evaluates such `eval' forms. Thus, if the user changes the value of `enable-local-variables' to `:safe', visiting a malicious file can cause automatic execution of arbitrary Emacs Lisp code with the permissions of the user. Bug tracker ref: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=12155
2012-06-16Add emacs24. Change the logic for emacs-snapshot to be emacs25, which itdholland1-10/+12
presumably will be once the necessary upstream stuff appears.
2012-06-14Recursive PKGREVISION bump for libxml2 buildlink addition.sbd1-2/+2
2012-05-09Fix accepting keys in text mode; breakage caused by glib2 update.wiz3-3/+20
Patch from Debian, found for OpenBSD by Antoine Jacoutot and mentioned on current-users by Matthieu Herrb. Bump PKGREVISION.
2012-03-25Apply same post-extract chmod as emacs-snapshot to fix the same problem.dholland1-1/+2
2012-03-03More pcre PKGREVISION bumps.wiz1-1/+2
2012-02-19Update emacs to 23.4.minskim8-464/+11
Emacs 23.4 mainly fixes a security flaw in EDE (CVE-2012-0035), which was already fixed in emacs-23.3nb1 in pkgsrc.
2012-02-06Revbump forwiz1-2/+2
a) tiff update to 4.0 (shlib major change) b) glib2 update 2.30.2 (adds libffi dependency to buildlink3.mk) Enjoy.
2012-01-20PKGREVISION must not be in Makefile.common.obache2-3/+4
2012-01-19Add fix for CVE-2012-0035, bump PKGREVISION in Makefile.common since thistez3-2/+420
affects editors/emacs-nox11 also
2011-12-11editors/emacs: Fix DragonFlymarino5-13/+42
1) Stop overwriting of alloca on DragonFly 2) Don't overwrite dragonfly.h START_FILES and LIB_STANDARD 3) Remove callouts for gcc41 and gcc44 (specs file handles this) 4) Remove now-unnecessary DFLY_CRT_USRLIB constant 5) New definitions for START_FILES, LIB_STANDARD 6) Specify ORDINARY_LINK
2011-12-03Disable address randomization under Darwin to fix build problems withjmmv3-2/+28
Xcode 4.1. This does not fix all issues though, as the installation fails while stripping the binaries. Not sure how to get rid of this yet, and it seems to affect other packages as well.
2011-11-28Update to 23.3b:wiz4-12/+11
etc/grammar/fixes.patch was applied, it seems.
2011-11-01Recursive bump for graphics/freetype2 buildlink addition.sbd1-1/+3
2011-09-15Copy __got section when copying data segment on Mac OS X.minskim2-1/+16
Patch provided by Tom Yu in PR 45240.
2011-09-12Update to 23.3a: adds missing source files.wiz3-8/+20
2011-06-09update to 23.3drochner5-58/+38
Emacs 23.3 is primarily a bugfix release. Also included are a number of enhancements to VC and Rmail, and a new indentation library, smie.el. For details, see the file etc/NEWS.
2011-04-22recursive bump from gettext-lib shlib bump.obache1-2/+2
2011-03-23Fix EMACSLOADPATH for emacs24.minskim1-1/+5
2011-03-10Bump PKGREVISION form default GIF library change from libungif to giflib.obache1-2/+2
2011-03-09libungif/buildlink3.mk -> mk/giflib.buildlink3.mkdrochner1-2/+2
2011-02-08Instead of extracting version string from PKGNAME, usehiramatsu2-9/+4
${_EMACS_VERSION_MAJOR} and ${_EMACS_VERSION_MINOR} to determine installed version of emacs. Also, set minimum version of _EMACS_REQD to the same as ${_EMACS_VERSION_MAJOR}.${_EMACS_VERSION_MINOR}. Otherwise, buildlink does not work for emacs lisp libraries. Should fix PR/42763.
2011-01-14Fix build with png-1.5.wiz2-1/+29
2011-01-13png shlib name changed for png>=1.5.0, so bump PKGREVISIONs.wiz1-2/+2
2010-12-23Mechanically replace references to graphics/jpeg with the suitabledsainty1-2/+2
alternative from mk/jpeg.buildlink3.mk This allows selection of an alternative jpeg library (namely the x86 MMX, SSE, SSE2 accelerated libjpeg-turbo) via JPEG_DEFAULT=libjpeg-turbo, and follows the current standard model for alternatives (fam, motif, fuse etc). The mechanical edits were applied via the following script: #!/bin/sh for d in */*; do [ -d "$d" ] || continue for i in "$d/"Makefile* "$d/"*.mk; do case "$i" in *.orig|*"*"*) continue;; esac out="$d/x" sed -e 's;graphics/jpeg/buildlink3\.mk;mk/jpeg.buildlink3.mk;g' \ -e 's;BUILDLINK_PREFIX\.jpeg;JPEGBASE;g' \ < "$i" > "$out" if cmp -s "$i" "$out"; then rm -f "$out" else echo "Edited $i" mv -f "$i" "$i.orig" && mv "$out" "$i" fi done done
2010-11-15PKGREVISION bumps for changes to gtk2, librsvg, libbonobo and libgnomeabs1-2/+2
2010-10-25Allow emacs24 as EMACS_TYPE.minskim1-2/+7
2010-10-21Fixes build on NetBSD with X11_TYPE=native.obache3-2/+26
* honor PREFIX * reorder rpath so that additional libraries will be prefered than builtin X.
2010-10-12Be consistent and provide upper limits for all EMACS_REQD cases.joerg1-2/+2
2010-09-14More PKGREVISION bumps for pixman update.wiz1-2/+2
2010-06-14Needs revbump for png update.dholland1-2/+2
2010-06-01Update emacs to 23.2.minskim12-143/+506
Patches were provided by Makoto Fujiwara in PR 43335. Excerpt from the announcement: In addition to a large number of bugfixes, Emacs 23.2 includes several new packages, such as the CEDET suite of development tools (including Semantic, a set of libraries and utilities for parsing source code, and EDE, a package for managing code projects), and a new mode for editing Javascript. The default mail composition mode is now Message mode, which provides features such as MIME handling. Many other part of Emacs have also been improved. For a more complete list of changes, see the file etc/NEWS.
2010-05-15Fix termcap support.roy3-10/+14
2010-05-05Enable terminfo support for NetBSD if available.roy1-2/+4
2010-02-21Mention files that include this one.wiz1-1/+4
2010-02-21Add RCS Id (hi roy!).wiz2-2/+4
2010-02-19SETGIDGAME. Not MAKE_JOBS_SAFE. Bump revision.joerg1-5/+10
2010-01-24More PKGREVISION bumps of jpeg dependencies.wiz1-2/+2
Identified by parsing the NetBSD-i386-5.0.1/2009Q3 pkg_summary files and Robert Elz.
2010-01-20When running terminfo but compiled for termcap, we cannot assumeroy3-3/+18
that we actually have anything useable in termcap_term_buffer so just use the terminfo fixed size defined ealier.
2009-10-07fit for NetBSD-mips variants, do not use pmax configuration.obache6-10/+78
prevent unrequisite warning messages on NetBSD-alpha (patch-ac) and NetBSD-mips variants (patch-af). fixes PR 39027. Bump PKGREVISION.
2009-09-07Strip PKGREVISION from the emacs version string for a directory name.minskim1-2/+3
2009-08-26bump revision because of graphics/jpeg updatesno1-1/+3
2009-08-23Silence unnecessary warnings.minskim1-2/+2
2009-08-22Derive EMACSLOADPATH from the currently-installed emacs, not from theminskim1-7/+6
Makefile fragment in pkgsrc.
2009-08-12Include curses.buildlink3.mk on platforms which want to link against curses.hasso1-1/+6
Unbreaks build on DargonFly and probably some others.
2009-08-06Update patches for emacs-23.1.minskim3-40/+57
These should have been committed when emacs was updated.
2009-08-05Let EMACS_TYPE support editors/emacs and editors/emacs-nox11 asminskim1-12/+13
emacs23 and emacs23nox, respectively; editors/emacs is the default one.
2009-08-05Update editors/emacs and editors/emacs-nox11 to 23.1.minskim28-3101/+3381
Major changes: - Improved Unicode support. - Font rendering with Fontconfig and Xft. - Support for using X displays and text terminals in one session, and for running as a daemon. - Support for multi-file commits in distributed version-control systems (VC-dir). - The default X toolkit is now Gtk+, rather than Lucid.