Changeset 83ea618


Ignore:
Timestamp:
Feb 21, 2006, 12:25:06 AM (18 years ago)
Author:
Jim Gifford <clfs@…>
Branches:
clfs-1.2, clfs-2.1, clfs-3.0.0-systemd, clfs-3.0.0-sysvinit, master, systemd, sysvinit
Children:
662fbfc
Parents:
b15e4602
Message:

r613@server (orig r611): ryan | 2005-08-05 23:41:20 -0700
Update


File:
1 edited

Legend:

Unmodified
Added
Removed
  • scripts/untested/blfs-scripts/blfs-foomatic.sh

    rb15e4602 r83ea618  
    1919
    2020min_log_init ${INSTLOGS}
    21 make install
     21make install \
    2222  >> ${LOGFILE} 2>&1 &&
    2323echo " o Install OK" || barf
     
    2626LOG=foomatic-db-hpijs-blfs.log
    2727
    28 unpack_tarball foomatic-db-hpijs-${FOOMATIC_DB_HPIJS_VER}
     28unpack_tarball foomatic-db-hpijs-${FOOMATIC_DB_HPIJS_VER}-current
    2929cd ${PKGDIR}
    3030
     
    3535echo " o Configure OK" &&
    3636
     37min_log_init ${BUILDLOGS}
     38make \
     39  >> ${LOGFILE} 2>&1 &&
     40echo " o Build OK" || barf
     41
    3742min_log_init ${INSTLOGS}
    38 make install
     43make install \
    3944  >> ${LOGFILE} 2>&1 &&
    4045echo " o Install OK" || barf
     
    5257echo " o Configure OK" &&
    5358
     59min_log_init ${BUILDLOGS}
     60make \
     61  >> ${LOGFILE} 2>&1 &&
     62echo " o Build OK" || barf
     63
    5464min_log_init ${INSTLOGS}
    55 make install
     65make install \
    5666  >> ${LOGFILE} 2>&1 &&
    5767echo " o Install OK" || barf
     
    6979fi
    7080
    71 #### we probably want libxml2
    72 cd ${SRC}
    73 LOG=foomatic-db-engine-blfs.log
    74 
    75 unpack_tarball foomatic-db-engine-${FOOMATIC_DB_ENG_VER}
    76 cd ${PKGDIR}
    77 
    78 max_log_init foomatic-db-engine ${FOOMATIC_DB_ENG_VER} "blfs (shared)" ${CONFLOGS} ${LOG}
    79 CC="${CC-gcc} ${ARCH_CFLAGS}" \
    80 ./configure --prefix=/usr \
    81   >> ${LOGFILE} 2>&1 &&
    82 echo " o Configure OK" &&
    83 
    84 min_log_init ${INSTLOGS}
    85 make install
    86   >> ${LOGFILE} 2>&1 &&
    87 echo " o Install OK" || barf
    88 
    89 if [ ! "${libdirname}" = "lib" ]; then
    90    # additional symlinks for lib64 cups, ppr to get the foomatic filters
    91    # TODO: this needs to be done better
    92 
    93    mkdir -p /usr/${libdirname}/cups/filter
    94    ln -sf /usr/bin/foomatic-rip /usr/${libdirname}/cups/filter
    95    mkdir -p /usr/${libdirname}/ppr/interfaces
    96    mkdir -p /usr/${libdirname}/ppr/lib
    97    ln -sf /usr/bin/foomatic-rip /usr/${libdirname}/ppr/interfaces
    98    ln -sf /usr/bin/foomatic-rip /usr/${libdirname}/ppr/lib
    99 fi
    100 
Note: See TracChangeset for help on using the changeset viewer.