source: scripts/scripts/untested/blfs-scripts/blfs-polypaudio.sh @ 7f65c0e

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

r625@server (orig r623): jim | 2005-10-31 12:43:24 -0800
Final Move

  • Property mode set to 100755
File size: 1.5 KB
Line 
1#!/bin/bash
2
3### polypaudio ###
4
5cd ${SRC}
6LOG=polypaudio-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 polypaudio-${POLYPAUDIO_VER}
17cd ${PKGDIR}
18
19# Fix the generated polypaudio pkgconfig files to look at the right libdir
20files=`ls *.pc.in`
21for file in ${files}; do
22   sed -i -e "/^libdir=/s@\(.*\)lib.*@\1${libdirname}@g" $file
23done
24
25# Fix the symlinking of pacat to parec during install when pacat already exists
26sed -i -e 's@ln -s pacat@ln -sf pacat@g' polyp/Makefile.in
27
28# Use LDFLAGS to appease libtool
29max_log_init polypaudio ${POLYPAUDIO_VER} "blfs (shared)" ${CONFLOGS} ${LOG}
30CC="${CC-gcc} ${ARCH_CFLAGS}" \
31CXX="${CXX-g++} ${ARCH_CFLAGS}" \
32CFLAGS="-O2 -pipe ${TGT_CFLAGS}" \
33CXXFLAGS="-O2 -pipe ${TGT_CFLAGS}" \
34./configure --prefix=/usr \
35   --sysconfdir=/etc ${extra_conf} \
36   --mandir=/usr/share/man \
37   >> ${LOGFILE} 2>&1 &&
38echo " o Configure OK" &&
39
40min_log_init ${BUILDLOGS} &&
41make \
42   >> ${LOGFILE} 2>&1 &&
43echo " o Build OK" &&
44
45min_log_init ${INSTLOGS} &&
46make install \
47   >> ${LOGFILE} 2>&1 &&
48echo " o ALL OK" || barf
49
50# polypaudio generates a conf file which points to its modules under
51# /usr/${libdirname} . Here we will keep 2 copies and generate a symlink
52if [ "${MULTIARCH}" = "Y" ]; then
53   mv /etc/polypaudio/daemon.conf /etc/polypaudio/daemon.conf-${BUILDENV}
54   ln -sf daemon.conf-${BUILDENV} /etc/polypaudio/daemon.conf
55fi
Note: See TracBrowser for help on using the repository browser.