source: scripts/untested/gnome-scripts/gnome-platform-scripts/gnome-platform-glib.sh@ c231075

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

r561@server (orig r559): root | 2005-06-05 02:38:49 -0700
Fixed Directory Structure

  • Property mode set to 100755
File size: 1.4 KB
RevLine 
[617118d]1#!/bin/bash
2
3### glib ###
4
5cd ${SRC}
6LOG=glib-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 glib-${GLIB_VER}
21cd ${PKGDIR}
22
23# if ALT_TGT is defined, set --host and --build
24if [ ! -z ${ALT_TGT} ]; then
25 extra_conf="${extra_conf} --host=${ALT_TGT}"
26 extra_conf="${extra_conf} --build=${ALT_TGT}"
27fi
28
29# If ${PERL} is set, strip the path from it so PERL_PATH gets set correctly
30if [ ! -z "${PERL}" ]; then
31 export PERL=`basename ${PERL}`
32fi
33
34max_log_init glib ${GLIB_VER} "blfs (shared)" ${CONFLOGS} ${LOG}
35CC="${CC-gcc} ${ARCH_CFLAGS}" \
36CXX="${CXX-g++} ${ARCH_CFLAGS}" \
37CFLAGS="${TGT_CFLAGS}" \
38CXXFLAGS="${TGT_CFLAGS}" \
39./configure --prefix=/usr --mandir=/usr/share/man \
40 --infodir=/usr/share/info ${extra_conf} \
41 >> ${LOGFILE} 2>&1 &&
42# --enable-gtk-doc \
43echo " o Configure OK" &&
44
45min_log_init ${BUILDLOGS} &&
46make ${PMFLAGS} \
47 >> ${LOGFILE} 2>&1 &&
48echo " o Build OK" || barf
49
50min_log_init ${TESTLOGS} &&
51make check\
52 >> ${LOGFILE} 2>&1 &&
53echo " o Test OK" || errmsg
54
55min_log_init ${INSTLOGS} &&
56make install \
57 >> ${LOGFILE} 2>&1 &&
58echo " o ALL OK" || barf
59
Note: See TracBrowser for help on using the repository browser.