clfs-1.2
clfs-2.1
clfs-3.0.0-systemd
clfs-3.0.0-sysvinit
systemd
sysvinit
Last change
on this file since e5345f18 was 61bc4da, checked in by Jim Gifford <clfs@…>, 19 years ago |
r572@server (orig r570): ryan | 2005-06-09 08:46:47 -0700
Fix tarball naming
|
-
Property mode
set to
100755
|
File size:
939 bytes
|
Rev | Line | |
---|
[617118d] | 1 | #!/bin/bash
|
---|
| 2 |
|
---|
| 3 | ### cups ###
|
---|
| 4 |
|
---|
| 5 | cd ${SRC}
|
---|
| 6 | LOG=cups-blfs.log
|
---|
| 7 |
|
---|
| 8 | SELF=`basename ${0}`
|
---|
| 9 | set_buildenv
|
---|
| 10 | set_libdirname
|
---|
| 11 | setup_multiarch
|
---|
| 12 | if [ ! "${libdirname}" = "lib" ]; then
|
---|
| 13 | extra_conf="--libdir=/usr/${libdirname}"
|
---|
| 14 | fi
|
---|
| 15 |
|
---|
[61bc4da] | 16 | unpack_tarball cups-${CUPS_VER}-source
|
---|
[617118d] | 17 | cd ${PKGDIR}
|
---|
| 18 |
|
---|
| 19 | sed -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
|
---|
| 23 | max_log_init cups ${CUPS_VER} "blfs (shared)" ${CONFLOGS} ${LOG}
|
---|
| 24 | CC="${CC-gcc} ${ARCH_CFLAGS}" \
|
---|
| 25 | CXX="${CXX-g++} ${ARCH_CFLAGS}" \
|
---|
| 26 | CFLAGS="${TGT_CFLAGS}" \
|
---|
| 27 | CXXFLAGS="${TGT_CFLAGS}" \
|
---|
| 28 | ./configure ${extra_conf} \
|
---|
| 29 | >> ${LOGFILE} 2>&1 &&
|
---|
| 30 | echo " o Configure OK" &&
|
---|
| 31 |
|
---|
| 32 | min_log_init ${BUILDLOGS} &&
|
---|
| 33 | make \
|
---|
| 34 | >> ${LOGFILE} 2>&1 &&
|
---|
| 35 | echo " o Build OK" &&
|
---|
| 36 |
|
---|
| 37 | min_log_init ${INSTLOGS} &&
|
---|
| 38 | make install \
|
---|
| 39 | >> ${LOGFILE} 2>&1 &&
|
---|
| 40 | echo " o ALL OK" || barf
|
---|
| 41 |
|
---|
| 42 | if [ "Y" = "${MULTIARCH}" ]; then
|
---|
| 43 | use_wrapper /usr/bin/cups-config
|
---|
| 44 | fi
|
---|
Note:
See
TracBrowser
for help on using the repository browser.