source: scripts_home/scripts/untested/gnome-scripts/gnome-platform-scripts/gnome-platform-esound.sh@ 1c9c5c3

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

r624@server (orig r622): jim | 2005-10-31 12:40:28 -0800
Rearranging Archive

  • Property mode set to 100755
File size: 1.3 KB
Line 
1#!/bin/bash
2
3### esound ###
4
5cd ${SRC}
6LOG=esound-gnome-platform.log
7
8SELF=`basename ${0}`
9set_buildenv
10set_libdirname
11setup_multiarch
12if [ ! "${libdirname}" = "lib" ]; then
13 extra_conf="--libdir=/usr/${libdirname}"
14fi
15
16# override TARBALLS to point at gnome/platform tree
17GNOME_REL_MAJ=`echo ${GNOME_REL} | sed 's@\([0-9]*\.[0-9]*\).*@\1@g'`
18export TARBALLS=${GNOME_TARBALLS}/platform/${GNOME_REL_MAJ}/${GNOME_REL}/sources
19
20unpack_tarball esound-${ESOUND_VER}
21cd ${PKGDIR}
22
23max_log_init esound ${ESOUND_VER} "gnome-platform (shared)" ${CONFLOGS} ${LOG}
24CC="${CC-gcc} ${ARCH_CFLAGS}" \
25CXX="${CXX-g++} ${ARCH_CFLAGS}" \
26CFLAGS="${TGT_CFLAGS}" \
27CXXFLAGS="${TGT_CFLAGS}" \
28LDFLAGS="-L/usr/${libdirname}" \
29./configure --prefix=/usr --sysconfdir=/etc ${extra_conf} \
30 --with-libwrap \
31 >> ${LOGFILE} 2>&1 &&
32echo " o Configure OK" &&
33
34# TODO: need to patch generated libtool...
35# $max_cmd_len doesn't appear to be defined...
36# proper fix would be to patch ltmain.sh
37apply_patch esound-0.2.35-libtool_skip_max_cmd_len-1
38
39min_log_init ${BUILDLOGS} &&
40make \
41 >> ${LOGFILE} 2>&1 &&
42echo " o Build OK" &&
43
44min_log_init ${INSTLOGS} &&
45make install \
46 >> ${LOGFILE} 2>&1 &&
47echo " o ALL OK" || barf
48
49if [ "Y" = "${MULTIARCH}" ]; then
50 use_wrapper /usr/bin/esd-config
51fi
Note: See TracBrowser for help on using the repository browser.