source: scripts/scripts/untested/gnome-scripts/gnome-desktop-scripts/gnome-desktop-gtk-engines.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.0 KB
Line 
1#!/bin/bash
2
3### gtk-engines ###
4
5cd ${SRC}
6LOG=gtk-engines-gnome-desktop.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}/desktop/${GNOME_REL_MAJ}/${GNOME_REL}/sources
19
20unpack_tarball gtk-engines-${GTK_ENGINES_VER}
21cd ${PKGDIR}
22
23max_log_init gtk-engines ${GTK_ENGINES_VER} "gnome-desktop (shared)" ${CONFLOGS} ${LOG}
24CC="${CC-gcc} ${ARCH_CFLAGS}" \
25CXX="${CXX-g++} ${ARCH_CFLAGS}" \
26CFLAGS="-O2 -pipe ${TGT_CFLAGS}" \
27CXXFLAGS="-O2 -pipe ${TGT_CFLAGS}" \
28./configure --prefix=/usr --mandir=/usr/share/man \
29   --infodir=/usr/share/info ${extra_conf} \
30   >> ${LOGFILE} 2>&1 &&
31echo " o Configure OK" &&
32
33min_log_init ${BUILDLOGS} &&
34make ${PMFLAGS} \
35   >> ${LOGFILE} 2>&1 &&
36echo " o Build OK" &&
37
38min_log_init ${INSTLOGS} &&
39make install \
40   >> ${LOGFILE} 2>&1 &&
41echo " o ALL OK" || barf
42
Note: See TracBrowser for help on using the repository browser.