#!/bin/bash ### fltk ### cd ${SRC} LOG=fltk-blfs.log SELF=`basename ${0}` set_buildenv set_libdirname setup_multiarch if [ ! "${libdirname}" = "lib" ]; then extra_conf="--libdir=/usr/${libdirname}" fi unpack_tarball fltk-${FLTK_VER}-source cd ${PKGDIR} max_log_init fltk ${FLTK_VER} "blfs (shared)" ${CONFLOGS} ${LOG} CC="${CC-gcc} ${ARCH_CFLAGS}" \ CXX="${CXX-g++} ${ARCH_CFLAGS}" \ CFLAGS="${TGT_CFLAGS}" \ CXXFLAGS="${TGT_CFLAGS}" \ ./configure --prefix=/usr ${extra_conf} \ --enable-shared --enable-threads \ --enable-xft --enable-xdbe \ >> ${LOGFILE} 2>&1 && echo " o Configure OK" && min_log_init ${BUILDLOGS} && make ${PMFLAGS} \ >> ${LOGFILE} 2>&1 && echo " o Build OK" && min_log_init ${INSTLOGS} && make install \ >> ${LOGFILE} 2>&1 && echo " o ALL OK" || barf if [ "Y" = "${MULTIARCH}" ]; then # just for consistencies sake, saw it miss these on -64 ranlib /usr/${libdirname}/libfltk*.a use_wrapper /usr/bin/fltk-config fi