source: scripts/scripts/untested/blfs-scripts/blfs-xine-ui.sh @ 0b402ff

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

r698@server (orig r696): ryan | 2005-11-13 00:00:47 -0800

r704@rei: lfs | 2005-11-13 19:01:08 +1100
Import updates for untested blfs-scripts



  • Property mode set to 100755
File size: 1.1 KB
RevLine 
[0b402ff]1#!/bin/bash
2
3### xine-ui ###
4
5cd ${SRC}
6LOG=xine-ui-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 xine-ui-${XINE_UI_VER}
17cd ${PKGDIR}
18
19max_log_init xine-ui ${XINE_UI_VER} "blfs (shared)" ${CONFLOGS} ${LOG}
20CC="${CC-gcc} ${ARCH_CFLAGS}" \
21CXX="${CXX-g++} ${ARCH_CFLAGS}" \
22CFLAGS="-O3 -pipe ${TGT_CFLAGS}" \
23CXXFLAGS="-O3 -pipe ${TGT_CFLAGS}" \
24LDFLAGS="-L/usr/${libdirname}" \
25./configure --prefix=/usr ${extra_conf} \
26   --mandir=/usr/share/man \
27   --infodir=/usr/share/info \
28   >> ${LOGFILE} 2>&1 &&
29echo " o Configure OK" &&
30
31min_log_init ${BUILDLOGS} &&
32make ${PMFLAGS} \
33   >> ${LOGFILE} 2>&1 &&
34echo " o Build OK" &&
35
36min_log_init ${INSTLOGS} &&
37make install \
38   >> ${LOGFILE} 2>&1 &&
39echo " o ALL OK" || barf
40
41if [ "${MULTIARCH}" = "Y" ]; then
42   # We'll use a wrapper for each existing binary
43   files="aaxine cacaxine fbxine xine xine-remote"
44   for file in ${files}; do
45      if [ -f /usr/bin/${file} ]; then
46            use_wrapper /usr/bin/${file}
47      fi
48   done
49fi
Note: See TracBrowser for help on using the repository browser.