links-2.1_pre2-r1.ebuild is broken in non-graphical builds. The proper configure parameter to enable the graphic-mode is --enable-graphics. However --disable-graphics (presently in the ebuild) is ignored by configure. Instead one must use --without-graphics or the build will fail on systems not providing any graphical system. The following patch seems to fix the problem ;) --- links-2.1_pre2-r1.ebuild Mon Jul 15 22:00:34 2002 +++ links-2.1_pre2-r1.ebuild Thu Jul 18 04:36:09 2002 @@ -36,7 +36,7 @@ use png \ && myconf="${myconf} --enable-graphics --with-libpng" \ - || myconf="${myconf} --disable-graphics --without-libpng" + || myconf="${myconf} --without-graphics --without-libpng" use jpeg \ && myconf="${myconf} --with-libjpeg" \
Created attachment 2354 [details, diff] Fixes non-graphical builds.
thanks for catching this.