source: scripts/untested/gnome-scripts/gnome-platform-scripts/gnome-platform-pango.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.1 KB
Line 
1#!/bin/bash
2
3### pango ###
4
5cd ${SRC}
6LOG=pango-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 pango-${PANGO_VER}
21cd ${PKGDIR}
22
23max_log_init pango ${PANGO_VER} "blfs (shared)" ${CONFLOGS} ${LOG}
24CC="${CC-gcc} ${ARCH_CFLAGS}" \
25CXX="${CXX-g++} ${ARCH_CFLAGS}" \
26CFLAGS="${TGT_CFLAGS}" \
27CXXFLAGS="${TGT_CFLAGS}" \
28./configure --prefix=/usr --mandir=/usr/share/man \
29   --infodir=/usr/share/info --sysconfdir=/etc ${extra_conf} \
30   >> ${LOGFILE} 2>&1 &&
31#   --enable-gtk-doc \
32echo " o Configure OK" &&
33
34min_log_init ${BUILDLOGS} &&
35make ${PMFLAGS} \
36   >> ${LOGFILE} 2>&1 &&
37echo " o Build OK" || barf
38
39min_log_init ${TESTLOGS} &&
40make check \
41   >> ${LOGFILE} 2>&1 &&
42echo " o Test OK" || errmsg
43
44min_log_init ${INSTLOGS} &&
45make install \
46   >> ${LOGFILE} 2>&1 &&
47echo " o ALL OK" || barf
48
Note: See TracBrowser for help on using the repository browser.