source: scripts/untested/blfs-scripts/blfs-polypaudio.sh@ 10e90e4

clfs-1.2 clfs-2.1 clfs-3.0.0-systemd clfs-3.0.0-sysvinit systemd sysvinit
Last change on this file since 10e90e4 was 7ed0e05, checked in by Jim Gifford <clfs@…>, 19 years ago

r619@server (orig r617): ryan | 2005-08-07 00:07:42 -0700
Add new packages for blfs builds



  • 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.