the Fink project is an effort to port
popular Unix programs to Mac OS X
Package: artoolkit
Version: 2.72.1
Revision: 2
###
Architecture: powerpc, i386
###
Source: mirror:sourceforge:artoolkit/ARToolKit-%v.tgz
Source-MD5: 4328b512711529309bad4bd1d791952c
SourceDirectory: ARToolKit
###
DocFiles: README.txt COPYING.txt ChangeLog.txt
###
PatchFile: artoolkit.patch
PatchFile-MD5: 602f72c940e7c44c8975e58b0fb9b410
###
BuildDepends: fink ( >= 0.24.12 )
BuildDependsOnly: true
#
CompileScript: <<
/usr/bin/printf "y\ny\n" | ./Configure
make
<<
InstallScript: <<
install -d %i/lib
install -m644 lib/libAR*.a %i/lib
install -d %i/include/AR
install -m644 include/AR/*.h %i/include/AR
install -d %i/bin
install -m755 bin/calib_camera2 %i/bin
install -m755 bin/calib_cparam %i/bin
install -m755 bin/calib_dist %i/bin
install -m755 bin/mk_patt %i/bin
install -d %i/share/doc/%N
cp -rp doc %i/share/doc/%N
install -d %i/share/doc/%N/patterns
install -m644 patterns/*.pdf %i/share/doc/%N/patterns
<<
###
Maintainer: Hans-Christoph Steiner
HomePage: http://www.hitl.washington.edu/artoolkit/
License: GPL
Description: Library for Augmented Reality (AR) tracking
DescDetail: <<
ARToolKit is a software library for building Augmented Reality (AR)
applications. These are applications that involve the overlay of virtual
imagery on the real world. For example, in the image to the right a
three-dimensional virtual character appears standing on a real card. It can be
seen by the user in the head set display they are wearing. When the user moves
the card, the virtual character moves with it and appears attached to the real
object.
One of the key difficulties in developing Augmented Reality applications is
the problem of tracking the users viewpoint. In order to know from what
viewpoint to draw the virtual imagery, the application needs to know where the
user is looking in the real world.
ARToolKit uses computer vision algorithms to solve this problem. The ARToolKit
video tracking libraries calculate the real camera position and orientation
relative to physical markers in real time. This enables the easy development
of a wide range of Augmented Reality applications.
<<
--- /tmp/ARToolKit/lib/SRC/AR/Makefile.in 2004-11-04 03:51:27.000000000 -0500
+++ ARToolKit/lib/SRC/AR/Makefile.in 2009-12-06 13:08:19.000000000 -0500
@@ -7,7 +7,9 @@
# compiler
#
CC= cc
-CFLAG= @CFLAG@ -I$(INC_DIR)
+# arUtil.c has some "common symbols" which can cause linking problems on Mac OS X:
+# http://gcc.gnu.org/ml/gcc/2005-06/msg00378.html
+CFLAG= @CFLAG@ -I$(INC_DIR) -fno-common
#
# For making the library
#