2011-01-13 14:53:34 by Thomas Klausner | Files touched by this commit (50) |
Log message:
png shlib name changed for png>=1.5.0, so bump PKGREVISIONs.
|
2010-12-23 12:45:04 by David Sainty | Files touched by this commit (254) |
Log message:
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
|
2010-12-08 23:00:11 by Min Sik Kim | Files touched by this commit (3) | |
Log message:
Update emacs-snapshot to 24.0.50.20101204.
- Gnus updated
New files: color.el, proto-stream.el, rtree.el, and shr-color.el.
|
2010-11-20 21:20:11 by Min Sik Kim | Files touched by this commit (2) |
Log message:
Update emacs-snapshot to 24.0.50.20101120.
- Sync with Tramp 2.2.0.
* net/tramp.el (tramp-handle-insert-file-contents): Don't use
`file-remote-p' (due to compatibility).
* net/tramp-sh.el (tramp-do-copy-or-rename-file-directly)
(tramp-do-copy-or-rename-file-out-of-band): Use `ignore-errors'.
|
2010-11-17 18:06:09 by Min Sik Kim | Files touched by this commit (4) |
Log message:
Update emacs-snapshot to 24.0.50.20101116.
- New languages in org-babel: calc, js, ledger, lisp, org, platuml,
and scheme.
|
2010-11-15 23:59:19 by David Brownlee | Files touched by this commit (1062) |
Log message:
PKGREVISION bumps for changes to gtk2, librsvg, libbonobo and libgnome
|
2010-11-04 00:46:12 by Min Sik Kim | Files touched by this commit (3) |
Log message:
Update emacs-snapshot to 20101030.
Changes:
* progmodes/cc-fonts.el (c-font-lock-enum-tail): New function
which fontifies the tail of an enum.
(c-basic-matchers-after): Insert a call to the above new function.
This fixes bug #7264.
* cus-start.el: Add :set properties for minor modes menu-bar-mode,
tool-bar-mode, transient-mark-mode. (Bug#7306)
* minibuffer.el (completion-cycling): New var (bug#7266).
* iswitchb.el (iswitchb-kill-buffer): Avoid `iswitchb-make-buflist'
which changes the order of matches seen by users (bug#7231).
* server.el (server-port): New option. (Bug#854)
* epa-mail.el (epa-mail-encrypt): Handle local-part only
recipients; expand mail aliases (Bug#7280).
* image.el (image-checkbox-checked, image-checkbox-unchecked):
Delete (Bug#7222).
* epg-config.el (epg-gpg-program): Try to use "gpg2" if \
"gpg"
executable is not available on the system (Bug#7268).
|
2010-10-25 01:57:34 by Min Sik Kim | Files touched by this commit (3) |
Log message:
Update emacs-snapshot to 24.0.50.20101024.
Changes:
- New directory for SRecode template files.
- Make the *Packages* buffer read-only.
|
2010-10-20 02:06:22 by Min Sik Kim | Files touched by this commit (3) |
Log message:
Update emacs-snapshot to 24.0.50.20101016.
Recent changes:
* mail/rmail.el (rmail-show-message-1): Catch an error of
base64-decode-region and just show an error message (bug#7165).
* subr.el (last): Deal with dotted lists (reported in bug#7174).
* subr.el (last): Use `safe-length' instead of `length' (bug#7206).
* image.el (image-library-alist): Declare as obsolete alias.
(image-type-available-p): Use `dynamic-library-alist'.
* subr.el (last): Make it faster. (Bug#7174)
* cus-theme.el (custom-theme--listed-faces): Add cursor face.
(describe-theme-1): Extract doc from unloaded themes.
* cus-theme.el (describe-theme, customize-themes)
(custom-theme-save): New commands.
(custom-new-theme-mode-map): Bind C-x C-s.
(custom-new-theme-mode): Use custom--initialize-widget-variables.
(customize-create-theme): New optional arg THEME.
(custom-theme-revert): Use it.
(custom-theme-visit-theme): Remove dead code.
(custom-theme-merge-theme): Use custom-available-themes.
(custom-theme-write): Make interactive.
(custom-theme-write): Use custom-theme-name-valid-p.
(describe-theme-1, custom-theme-choose-revert)
(custom-theme-checkbox-toggle, custom-theme-selections-toggle):
New funs.
(custom-theme-allow-multiple-selections): New option.
(custom-theme-choose-mode): New major mode.
* ibuffer.el (ibuffer-mode-map): Don't redefine the cursor keys,
since that's too annoying. Move the filter groups commands to
TAB/backtab.
|
2010-09-18 02:50:37 by Min Sik Kim | Files touched by this commit (4) | |
Log message:
Update emacs-snapshot to 24.0.50.20100916.
Changes:
- progmodes/sql.el updated to 2.7.
- Major code cleanup for tramp.
- Migrate to Tramp 2.2.
|