2011-04-01 15:00:32 by Thomas Klausner | Files touched by this commit (2) |
Log message:
Add patch that should fix build with png-1.5.
|
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-06-14 12:34:39 by David A. Holland | Files touched by this commit (1) | |
Log message:
Needs revbump for png update.
|
2009-12-29 22:51:00 by Joerg Sonnenberger | Files touched by this commit (2) |
Log message:
Fix the mysterious bulk build failure (temacs can only run in batch mode).
|
2009-08-26 21:58:47 by Jens Rehsack | Files touched by this commit (1461) | |
Log message:
bump revision because of graphics/jpeg update
|
2009-06-14 20:53:01 by Joerg Sonnenberger | Files touched by this commit (10) |
Log message:
Convert @exec/@unexec to @pkgdir or drop it.
|
2009-06-14 19:50:28 by Joerg Sonnenberger | Files touched by this commit (75) |
Log message:
Remove @dirrm entries from PLISTs
|
2009-03-20 20:25:55 by Joerg Sonnenberger | Files touched by this commit (1252) |
Log message:
Simply and speed up buildlink3.mk files and processing.
This changes the buildlink3.mk files to use an include guard for the
recursive include. The use of BUILDLINK_DEPTH, BUILDLINK_DEPENDS,
BUILDLINK_PACKAGES and BUILDLINK_ORDER is handled by a single new
variable BUILDLINK_TREE. Each buildlink3.mk file adds a pair of
enter/exit marker, which can be used to reconstruct the tree and
to determine first level includes. Avoiding := for large variables
(BUILDLINK_ORDER) speeds up parse time as += has linear complexity.
The include guard reduces system time by avoiding reading files over and
over again. For complex packages this reduces both %user and %sys time to
half of the former time.
|
2008-11-10 18:21:40 by Thomas Klausner | Files touched by this commit (147) |
Log message:
Bump PKGREVISION for libXaw API depends bump due to libXaw8 removal.
|