source: scripts/scripts/untested/gnome-scripts/gnome-platform-scripts/gnome-platform-GConf.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 
[617118d]1#!/bin/bash
2
3### GConf ###
4
5cd ${SRC}
6LOG=GConf-gnome-platform.log
7
8SELF=`basename ${0}`
9set_buildenv
10set_libdirname
11setup_multiarch
12if [ ! "${libdirname}" = "lib" ]; then
13   extra_conf="--libdir=${GNOME_PREFIX}/${libdirname}"
14fi
15
16if [ "${GNOME_PREFIX}" = "/usr" ]; then 
17   extra_conf="${extra_conf} --sysconfdir=/etc/gnome"
18fi
19
20# override TARBALLS to point at gnome/platform tree
21GNOME_REL_MAJ=`echo ${GNOME_REL} | sed 's@\([0-9]*\.[0-9]*\).*@\1@g'`
22export TARBALLS=${GNOME_TARBALLS}/platform/${GNOME_REL_MAJ}/${GNOME_REL}/sources
23
24unpack_tarball GConf-${GCONF_VER}
25cd ${PKGDIR}
26
27max_log_init GConf ${GCONF_VER} "gnome-platform (shared)" ${CONFLOGS} ${LOG}
28CC="${CC-gcc} ${ARCH_CFLAGS}" \
29CXX="${CXX-g++} ${ARCH_CFLAGS}" \
[0b402ff]30CFLAGS="-O2 -pipe ${TGT_CFLAGS}" \
31CXXFLAGS="-O2 -pipe ${TGT_CFLAGS}" \
[617118d]32./configure --prefix=${GNOME_PREFIX} ${extra_conf} \
33   --libexecdir=${GNOME_PREFIX}/${libdirname}/GConf \
34   >> ${LOGFILE} 2>&1 &&
35echo " o Configure OK" &&
36
37min_log_init ${BUILDLOGS} &&
38make \
39   >> ${LOGFILE} 2>&1 &&
40echo " o Build OK" &&
41
42min_log_init ${INSTLOGS} &&
43make install \
44   >> ${LOGFILE} 2>&1 &&
45echo " o ALL OK" || barf
46
Note: See TracBrowser for help on using the repository browser.