source: scripts/untested/gnome-scripts/gnome-platform-scripts/gnome-platform-libglade.sh @ 617118d

clfs-1.2clfs-2.1clfs-3.0.0-systemdclfs-3.0.0-sysvinitsystemdsysvinit
Last change on this file since 617118d was 617118d, checked in by Jim Gifford <clfs@…>, 18 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.2 KB
Line 
1#!/bin/bash
2
3### libglade ###
4
5cd ${SRC}
6LOG=libglade-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 libglade-${LIBGLADE_VER}
21cd ${PKGDIR}
22
23# For some reason this doesn't like python... Investigate...
24
25max_log_init libglade ${LIBGLADE_VER} "gnome-platform (shared)" ${CONFLOGS} ${LOG}
26CC="${CC-gcc} ${ARCH_CFLAGS}" \
27CXX="${CXX-g++} ${ARCH_CFLAGS}" \
28CFLAGS="${TGT_CFLAGS}" \
29CXXFLAGS="${TGT_CFLAGS}" \
30./configure --prefix=/usr --mandir=/usr/share/man \
31   --infodir=/usr/share/info ${extra_conf} \
32   >> ${LOGFILE} 2>&1 &&
33#   --enable-gtk-doc \
34echo " o Configure OK" &&
35
36min_log_init ${BUILDLOGS} &&
37make ${PMFLAGS} \
38   >> ${LOGFILE} 2>&1 &&
39echo " o Build OK" || barf
40
41min_log_init ${TESTLOGS} &&
42make check \
43   >> ${LOGFILE} 2>&1 &&
44echo " o Test OK" || errmsg
45
46min_log_init ${INSTLOGS} &&
47make install \
48   >> ${LOGFILE} 2>&1 &&
49echo " o ALL OK" || barf
50
Note: See TracBrowser for help on using the repository browser.