2014-08-12 01:10:12 by Thomas Klausner | Files touched by this commit (30) |
Log message:
Switch from ffmpeg to ffmpeg1.
Note: many of these didn't build, so I couldn't verify them.
|
2013-07-22 14:19:55 by Sergey Litvinov | Files touched by this commit (3) |
Log message:
Update to version 4.0.1
* Enhancements for Visualizing Multi-block Datasets
* Enhancements to the Properties Panel
* Extended annotations with mathtext
* Exporting vector graphics
* Completely redesigned ParaViewWeb
* Enhancement to CoProcessing Modules
* Improvements to Scalar Bar (Color Legend)
|
2013-03-24 23:16:52 by Sergey Litvinov | Files touched by this commit (1) |
Log message:
Remove unused patch
|
2013-03-24 23:06:08 by Sergey Litvinov | Files touched by this commit (4) | |
Log message:
Version update to 3.98.0
|
2012-11-11 13:56:09 by Sergey Litvinov | Files touched by this commit (2) |
Log message:
wip/paraview: Changed a version number mismatch
|
2012-11-10 18:30:40 by Sergey Litvinov | Files touched by this commit (3) | |
Log message:
Version update to 3.14.1
|
2012-10-12 12:45:48 by Aleksej Saushev | Files touched by this commit (1) |
Log message:
Fix dependency description, it makes pbulk fail.
|
2012-10-04 21:44:06 by Aleksej Saushev | Files touched by this commit (18) |
Log message:
Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.
Mark packages that don't or might probably not have staged installation.
|
2012-03-01 11:17:44 by Sergey Litvinov | Files touched by this commit (3) |
Log message:
Update version to 3.12
Add a workaround to protoc problem
|
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
|