Up to [cvs.netbsd.org] / pkgsrc / editors / emacs
Request diff between arbitrary revisions
Default branch: MAIN
Revision 1.12 / (download) - annotate - [select for diffs], Wed Mar 9 16:28:21 2011 UTC (14 months, 2 weeks ago) by drochner
Branch: MAIN
CVS Tags: pkgsrc-2012Q1-base,
pkgsrc-2012Q1,
pkgsrc-2011Q4-base,
pkgsrc-2011Q4,
pkgsrc-2011Q3-base,
pkgsrc-2011Q3,
pkgsrc-2011Q2-base,
pkgsrc-2011Q2,
pkgsrc-2011Q1-base,
pkgsrc-2011Q1,
HEAD
Changes since 1.11: +2 -2
lines
Diff to previous 1.11 (colored)
libungif/buildlink3.mk -> mk/giflib.buildlink3.mk
Revision 1.11 / (download) - annotate - [select for diffs], Thu Dec 23 11:44:28 2010 UTC (17 months ago) by dsainty
Branch: MAIN
CVS Tags: pkgsrc-2010Q4-base,
pkgsrc-2010Q4
Changes since 1.10: +2 -2
lines
Diff to previous 1.10 (colored)
Mechanically replace references to graphics/jpeg with the suitable
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
Revision 1.10 / (download) - annotate - [select for diffs], Tue Jun 1 21:44:54 2010 UTC (23 months, 3 weeks ago) by minskim
Branch: MAIN
CVS Tags: pkgsrc-2010Q3-base,
pkgsrc-2010Q3,
pkgsrc-2010Q2-base,
pkgsrc-2010Q2
Changes since 1.9: +2 -2
lines
Diff to previous 1.9 (colored)
Update emacs to 23.2. 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.
Revision 1.9 / (download) - annotate - [select for diffs], Wed Aug 5 22:04:50 2009 UTC (2 years, 9 months ago) by minskim
Branch: MAIN
CVS Tags: pkgsrc-2010Q1-base,
pkgsrc-2010Q1,
pkgsrc-2009Q4-base,
pkgsrc-2009Q4,
pkgsrc-2009Q3-base,
pkgsrc-2009Q3
Changes since 1.8: +97 -49
lines
Diff to previous 1.8 (colored)
Update editors/emacs and editors/emacs-nox11 to 23.1. 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.
Revision 1.8 / (download) - annotate - [select for diffs], Tue Nov 11 02:14:59 2008 UTC (3 years, 6 months ago) by minskim
Branch: MAIN
CVS Tags: pkgsrc-2009Q2-base,
pkgsrc-2009Q2,
pkgsrc-2009Q1-base,
pkgsrc-2009Q1,
pkgsrc-2008Q4-base,
pkgsrc-2008Q4
Changes since 1.7: +3 -2
lines
Diff to previous 1.7 (colored)
Adjust paths to PLIST files so that they can be reached from editors/emacs-nox11.
Revision 1.6.4.1 / (download) - annotate - [select for diffs], Thu May 1 13:41:33 2008 UTC (4 years ago) by rtr
Branch: pkgsrc-2008Q1
Changes since 1.6: +9 -9
lines
Diff to previous 1.6 (colored) next main 1.7 (colored)
pullup ticket #2359 - requested by tonnerre
emacs, emacs-nox11: fix for security issue
revisions pulled up:
- pkgsrc/editors/emacs/Makefile 1.107,1.108
- pkgsrc/editors/emacs/Makefile.common r0
- pkgsrc/editors/emacs/distinfo 1.36
- pkgsrc/editors/emacs/options.mk 1.7
- pkgsrc/editors/emacs/patches/patch-ac 1.16
- pkgsrc/editors/emacs/patches/patch-af 1.11
- pkgsrc/editors/emacs-nox11/DESCR r0
- pkgsrc/editors/emacs-nox11/Makefile 1.28
Module Name: pkgsrc
Committed By: jlam
Date: Fri Apr 25 16:35:32 UTC 2008
Modified Files:
pkgsrc/editors/emacs: Makefile options.mk
pkgsrc/editors/emacs-nox11: Makefile
Removed Files:
pkgsrc/editors/emacs: Makefile.common
pkgsrc/editors/emacs-nox11: DESCR
Log Message:
Make emacs and emacs-nox11 look more like xemacs and xemacs-nox11 in
terms of file structure. Also add DESTDIR support.
------------------------------------------------------------------------
Module Name: pkgsrc
Committed By: tonnerre
Date: Tue Apr 29 12:54:56 UTC 2008
Modified Files:
pkgsrc/editors/emacs: Makefile distinfo
Added Files:
pkgsrc/editors/emacs/patches: patch-ac patch-af
Log Message:
Fix two emacs vulnerabilities:
- Fix unsafe handling of local variables iin hack-local-variables
(CVE-2007-5795).
- Prevent symlink attack on arbitrary files using the temp files vcdiff
generates (CVE-2008-1694).
Revision 1.7 / (download) - annotate - [select for diffs], Fri Apr 25 16:35:32 2008 UTC (4 years, 1 month ago) by jlam
Branch: MAIN
CVS Tags: pkgsrc-2008Q3-base,
pkgsrc-2008Q3,
pkgsrc-2008Q2-base,
pkgsrc-2008Q2,
cwrapper,
cube-native-xorg-base,
cube-native-xorg
Changes since 1.6: +9 -9
lines
Diff to previous 1.6 (colored)
Make emacs and emacs-nox11 look more like xemacs and xemacs-nox11 in terms of file structure. Also add DESTDIR support.
Revision 1.6 / (download) - annotate - [select for diffs], Thu Nov 1 06:44:08 2007 UTC (4 years, 6 months ago) by uebayasi
Branch: MAIN
CVS Tags: pkgsrc-2008Q1-base,
pkgsrc-2007Q4-base,
pkgsrc-2007Q4
Branch point for: pkgsrc-2008Q1
Changes since 1.5: +10 -1
lines
Diff to previous 1.5 (colored)
Back port Carbon Emacs support from wip. Patch from Obata-san.
Revision 1.5 / (download) - annotate - [select for diffs], Tue Oct 16 21:33:00 2007 UTC (4 years, 7 months ago) by wiz
Branch: MAIN
Changes since 1.4: +1 -11
lines
Diff to previous 1.4 (colored)
Remove some legacy support after branching 2007Q3.
Revision 1.4 / (download) - annotate - [select for diffs], Thu Aug 23 13:57:38 2007 UTC (4 years, 9 months ago) by obache
Branch: MAIN
CVS Tags: pkgsrc-2007Q3-base,
pkgsrc-2007Q3
Changes since 1.3: +2 -2
lines
Diff to previous 1.3 (colored)
Fixes typo in comment (Motif => GTK).
Revision 1.3 / (download) - annotate - [select for diffs], Wed Aug 15 23:03:04 2007 UTC (4 years, 9 months ago) by tnn
Branch: MAIN
Changes since 1.2: +2 -2
lines
Diff to previous 1.2 (colored)
add missing closing quotation mark
Revision 1.2 / (download) - annotate - [select for diffs], Mon Aug 13 12:40:57 2007 UTC (4 years, 9 months ago) by jlam
Branch: MAIN
Changes since 1.1: +73 -32
lines
Diff to previous 1.1 (colored)
Fix up the use of package options in the Emacs packages:
(1) Get rid of "nox11" -- the concept of "no" in package options is
expressed by negating an option; use "-x11" instead.
(2) Teach editors/emacs20 to use package options instead of EMACS_USE_POP,
EMACS_USE_X, EMACS_USE_X_TOOLKIT and USE_INET6. We now use similar
options as the other emacs packages, i.e. "x11", "motif", "xaw",
as well as "pop" and "inet6".
(3) Make the emacs*-nox11 packages simply remove all X11 options by
setting PKG_OPTIONS.emacs appropriately and include the corresponding
emacs Makefile. This allows for modifications to the emacs "X11"
versions to be automatically picked up by the "non-X11" versions.
The two corresponding versions of emacs now share the same version
numbering, including PKGREVISIONs.
Bump the PKGREVISIONs on all Emacs editor packages.
Revision 1.1 / (download) - annotate - [select for diffs], Mon Jun 11 13:57:16 2007 UTC (4 years, 11 months ago) by markd
Branch: MAIN
CVS Tags: pkgsrc-2007Q2-base,
pkgsrc-2007Q2
Update emacs{,-nox11} to 22.1.
update based in part on wip/emacs-current and wip/emacs22 packages.
Many many changes since 21.4a. Read NEWS file for details.