
CVS log for wip/wxGTK-contrib-unicode/buildlink3.mk
Up to [NetBSD + pkgsrc-wip] / wip / wxGTK-contrib-unicode
Request diff between arbitrary revisions - Display revisions graphically
Keyword substitution: kv
Default branch: MAIN
Revision 1.5: download - view: text, markup, annotated - select for diffs
Sun Dec 26 05:01:24 2010 UTC (16 months, 4 weeks ago) by davesainty
Branches: MAIN
CVS tags: HEAD
Diff to: previous 1.4: preferred, colored
Changes since revision 1.4: +1 -1
lines
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
Revision 1.4: download - view: text, markup, annotated - select for diffs
Sun Jun 13 22:47:21 2010 UTC (23 months, 1 week ago) by thomasklausner
Branches: MAIN
Diff to: previous 1.3: preferred, colored
Changes since revision 1.3: +1 -1
lines
Bump PKGREVISION for libpng shlib name change.
Also add some patches to remove use of deprecated symbols and fix other
problems when looking for or compiling against libpng-1.4.x.
Revision 1.3: download - view: text, markup, annotated - select for diffs
Fri Mar 20 19:43:53 2009 UTC (3 years, 2 months ago) by jsonn
Branches: MAIN
Diff to: previous 1.2: preferred, colored
Changes since revision 1.2: +5 -13
lines
Convert buildlink3.mk files to new world order.
Revision 1.2: download - view: text, markup, annotated - select for diffs
Sat Dec 13 23:50:44 2008 UTC (3 years, 5 months ago) by shattered
Branches: MAIN
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +2 -2
lines
Sync PLISTs with x11/wxGTK28*. Bump versions in bl3.mk.
Revision 1.1.1.1 (vendor branch): download - view: text, markup, annotated - select for diffs
Tue Oct 3 15:16:26 2006 UTC (5 years, 7 months ago) by milosn
Branches: milosn
CVS tags: milosn_20061003
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +0 -0
lines
hack of x11/wxGTK-contrib with unicode support.
Revision 1.1: download - view: text, markup, annotated - select for diffs
Tue Oct 3 15:16:26 2006 UTC (5 years, 7 months ago) by milosn
Branches: MAIN
Initial revision
NetBSD-CVSweb <admin[at]NetBSD[dot]se>