source: scripts/scripts/untested/gnome-scripts/gnome-platform-scripts/gnome-platform-gnome-mime-data.sh @ df7a253

clfs-1.2clfs-2.1clfs-3.0.0-systemdclfs-3.0.0-sysvinitsystemdsysvinit
Last change on this file since df7a253 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
Line 
1#!/bin/bash
2
3### gnome-mime-data ###
4
5cd ${SRC}
6LOG=gnome-mime-data-gnome-platform.log
7
8set_buildenv
9set_libdirname
10setup_multiarch
11# *sigh* doing this just so we end up with 2 .pc files...
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 gnome-mime-data-${GNOME_MIME_DATA_VER}
25cd ${PKGDIR}
26
27# TODO: does this use g++
28max_log_init gnome-mime-data ${GNOME_MIME_DATA_VER} "blfs (shared)" ${CONFLOGS} ${LOG}
29CC="${CC-gcc} ${ARCH_CFLAGS}" \
30CFLAGS="${TGT_CFLAGS}" \
31./configure --prefix=${GNOME_PREFIX} ${extra_conf} \
32   >> ${LOGFILE} 2>&1 &&
33echo " o Configure OK" &&
34
35min_log_init ${BUILDLOGS} &&
36make \
37   >> ${LOGFILE} 2>&1 &&
38echo " o Build OK" || errmsg
39
40min_log_init ${INSTLOGS} &&
41make install \
42   >> ${LOGFILE} 2>&1 &&
43echo " o ALL OK" || barf
44
Note: See TracBrowser for help on using the repository browser.