source: scripts/untested/blfs-scripts/blfs-cups.sh @ 617118d

clfs-1.2clfs-2.1clfs-3.0.0-systemdclfs-3.0.0-sysvinitsystemdsysvinit
Last change on this file since 617118d was 617118d, checked in by Jim Gifford <clfs@…>, 18 years ago

r561@server (orig r559): root | 2005-06-05 02:38:49 -0700
Fixed Directory Structure

  • Property mode set to 100755
File size: 932 bytes
Line 
1#!/bin/bash
2
3### cups ###
4
5cd ${SRC}
6LOG=cups-blfs.log
7
8SELF=`basename ${0}`
9set_buildenv
10set_libdirname
11setup_multiarch
12if [ ! "${libdirname}" = "lib" ]; then
13   extra_conf="--libdir=/usr/${libdirname}"
14fi
15
16unpack_tarball cups-${CUPS_VER}
17cd ${PKGDIR}
18
19sed -i -e "s@pam/pam@security/pam@g" \
20   {config-scripts/cups-pam.m4,scheduler/auth.c,configure}
21
22# TODO: check cups-config generation and remove rpaths for lib64
23max_log_init cups ${CUPS_VER} "blfs (shared)" ${CONFLOGS} ${LOG}
24CC="${CC-gcc} ${ARCH_CFLAGS}" \
25CXX="${CXX-g++} ${ARCH_CFLAGS}" \
26CFLAGS="${TGT_CFLAGS}" \
27CXXFLAGS="${TGT_CFLAGS}" \
28./configure ${extra_conf} \
29   >> ${LOGFILE} 2>&1 &&
30echo " o Configure OK" &&
31
32min_log_init ${BUILDLOGS} &&
33make \
34   >> ${LOGFILE} 2>&1 &&
35echo " o Build OK" &&
36
37min_log_init ${INSTLOGS} &&
38make install \
39   >> ${LOGFILE} 2>&1 &&
40echo " o ALL OK" || barf
41
42if [ "Y" = "${MULTIARCH}" ]; then
43   use_wrapper /usr/bin/cups-config
44fi
Note: See TracBrowser for help on using the repository browser.