2011-05-27 15:23:09 by Rui-Xiang Guo | Files touched by this commit (166) |
Log message:
Update chromium to 11.0.696.72. Many thanks to
Matthias Rampke <matthias@rampke.de> who helps to test and provide patches
for DragonFly BSD to make this pkg having full support on it.
|
2011-05-02 22:39:10 by abs | Files touched by this commit (1) |
Log message:
Add libXtst to fix build with modular x11
|
2011-04-28 05:17:07 by Rui-Xiang Guo | Files touched by this commit (2) | |
Log message:
Remove useless files when update to 10.0.648.205.
|
2011-04-28 05:09:01 by Rui-Xiang Guo | Files touched by this commit (444) |
Log message:
Update chromium to 10.0.648.205 that is based on the OpenBSD's ports with
modifying for *BSD support and additional NetBSD specific patches.
This version includes some security bug fixes.
|
2011-03-28 12:14:50 by Rui-Xiang Guo | Files touched by this commit (3) |
Log message:
Fix check failed for socketpair.
Reference the patches from http://chromium.hybridsource.org
|
2011-03-28 12:09:24 by Rui-Xiang Guo | Files touched by this commit (1) |
Log message:
Disable TLS support under NetBSD to avoid core dump.
See http://mail-index.netbsd.org/pkgsrc-users/2011/01/20/msg013549.html
|
2011-01-23 15:30:26 by Thomas Klausner | Files touched by this commit (1) |
Log message:
Fix path to libvpx.
|
2011-01-19 08:57:49 by Thomas Klausner | Files touched by this commit (2) |
Log message:
Fix build with png-1.5.
|
2011-01-17 23:36:00 by Tobias Nygren | Files touched by this commit (1) |
Log message:
note SA42850
|
2010-12-26 06:01:21 by David Sainty | Files touched by this commit (78) |
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
|