The Anti-Grain Geometry (AGG) package contains a general purpose C++ graphical toolkit. It can be used in many areas of computer programming where high quality 2D graphics is an essential part of the project.
This package is known to build and work properly using an LFS-7.4 platform.
Download (HTTP): http://www.antigrain.com/agg-2.5.tar.gz
Download MD5 sum: 0229a488bc47be10a2fee6cf0b2febd6
Download size: 552 KB
Estimated disk space required: 122 MB
Estimated build time: 1.2 SBU
pkg-config-0.28, SDL-1.2.15, and Xorg Libraries
User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/agg
Install agg by running the following commands:
sed -i 's: -L@x_libraries@::' src/platform/X11/Makefile.am && sed -i '/^AM_C_PROTOTYPES/d' configure.in && bash autogen.sh --prefix=/usr --disable-static && make
This package does not come with a test suite.
Now, as the root
user:
make install
sed -i 's: -L@x_libraries@::' src/platform/X11/Makefile.am: This fixes compiling with the current Xorg Libraries.
sed -i '/^AM_C_PROTOTYPES/d' configure.in: this fixes reconfiguring with the current version of automake.
bash autogen.sh: This script uses autotools to create the configure script, then it runs configure with the given arguments.
--disable-static
: This
switch prevents installation of static versions of the libraries.
Last updated on 2013-09-06 12:06:41 -0700