configure: WARNING: ---------------------------------------------------------------------------- * I found a copy of pkgconfig, but there is no libart-2.0.pc file around. You may want to set the PKG_CONFIG_PATH variable to point to its location. ----------------------------------------------------------------------------
The issue is the RRDtool configure script is looking in /usr/include vs. /usr/local/include for the libart files. So there are a few ways to tweak this.
You can set the correct environment variable:
export CPPFLAGS=' -I/usr/local/include/libart-2.0'
That solved my RRDTool installation issue.