2011-02-08 14:20:14 by Hiramatsu Yoshifumi | Files touched by this commit (7) |
Log message:
Instead of extracting version string from PKGNAME, use
${_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-14 12:06:52 by Matthias Scheler | Files touched by this commit (2) |
Log message:
Port Thomas Klausner's "png" build fix from the "emacs23" \
package to
this emacs version.
|
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-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-10-12 15:22:46 by Joerg Sonnenberger | Files touched by this commit (3) |
Log message:
Be consistent and provide upper limits for all EMACS_REQD cases.
|
2010-09-14 13:13:17 by Thomas Klausner | Files touched by this commit (46) | |
Log message:
More PKGREVISION bumps for pixman update.
|
2010-06-25 00:19:24 by Thomas Klausner | Files touched by this commit (2) |
Log message:
Add workaround for systems coming with a copy of libpng.
Closes PR pkg/43485 reported by Rob Quinn.
|
2010-06-14 11:54:42 by David A. Holland | Files touched by this commit (1) | |
Log message:
Needs revbump for png update.
|
2010-02-20 11:32:20 by Thomas Klausner | Files touched by this commit (2) |
Log message:
Add RCS Id.
|