summaryrefslogtreecommitdiff
path: root/games/simgear/buildlink3.mk
AgeCommit message (Collapse)AuthorFilesLines
2013-01-26Revbump after graphics/jpeg and textproc/icuadam1-2/+2
2012-09-30Update to 2.8.0; fixes build with current boost.dholland1-2/+2
Build system changed to cmake. Rename patch-ab; the other pre-existing patches do not appear to be needed any further. No recent upstream news or changelog appears to exist. The project home page doesn't admit the existence of versions newer than 2.0.0, but there are several, corresponding to the recent versions of FlightGear.
2011-12-23revbump recursively to force build against fixed plib pkg (whichdrochner1-2/+2
installs static libraries), from David Holland
2010-12-23Mechanically replace references to graphics/jpeg with the suitabledsainty1-2/+2
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-08-27Changes 2.0.0:adam1-2/+2
* No changelog available.
2010-01-18Second try at jpeg-8 recursive PKGREVISION bump.wiz1-2/+2
2009-08-26bump revision because of graphics/jpeg updatesno1-1/+2
2009-03-20Simply and speed up buildlink3.mk files and processing.joerg1-13/+6
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.
2009-03-05Regen in canonical form.joerg1-4/+5
2008-03-14update flightgear/simgear to 1.0.0, from Yorick Hardy per PR pkg/38160drochner1-2/+2
changes: -many bugfixes -UI improvements -new and improved aircraft models pkgsrc change: pull in SDL for fullscreen mode
2007-07-12import simgear-0.3.10, prepared by Juan Romero Pardines in pkgsrc-wipdrochner1-0/+23
This is a library fon 3d simulations, used by the flightgear flight simulator.