source: scripts/scripts/untested/blfs-scripts/blfs-imlib2.sh @ 7f65c0e

clfs-1.2clfs-2.1clfs-3.0.0-systemdclfs-3.0.0-sysvinitsystemdsysvinit
Last change on this file since 7f65c0e was 7f65c0e, checked in by Jim Gifford <clfs@…>, 18 years ago

r625@server (orig r623): jim | 2005-10-31 12:43:24 -0800
Final Move

  • Property mode set to 100755
File size: 1.2 KB
Line 
1#!/bin/bash
2
3### imlib2 ###
4
5cd ${SRC}
6LOG=imlib2-blfs.log
7
8SELF=`basename ${0}`
9set_buildenv
10set_libdirname
11setup_multiarch
12if [ ! "${libdirname}" = "lib" ]; then
13   extra_conf="--libdir=/usr/${libdirname}"
14fi
15
16unpack_tarball imlib2-${IMLIB2_VER}
17cd ${PKGDIR}
18
19case ${TGT_ARCH} in
20   x86_64 )
21      # if building 32bit, ensure we override the configure checks for
22      # enabling amd64 assembly and force mmx instead
23      if [ "${BUILDENV}" = "32" ]; then
24         extra_conf="${extra_conf} --disable-amd64 --enable-mmx"
25      fi
26   ;;
27esac
28
29# curse of libjpeg and libtool again... set LDFLAGS
30max_log_init imlib2 ${IMLIB2_VER} "blfs (shared)" ${CONFLOGS} ${LOG}
31CC="${CC-gcc} ${ARCH_CFLAGS}" \
32CXX="${CXX-g++} ${ARCH_CFLAGS}" \
33CFLAGS="-O2 -pipe ${TGT_CFLAGS}" \
34CXXFLAGS="-O2 -pipe ${TGT_CFLAGS}" \
35LDFLAGS="-L/usr/${libdirname}" \
36./configure --prefix=/usr ${extra_conf} \
37   --mandir=/usr/share/man --infodir=/usr/share/info \
38   >> ${LOGFILE} 2>&1 &&
39echo " o Configure OK" &&
40
41min_log_init ${BUILDLOGS} &&
42make \
43   >> ${LOGFILE} 2>&1 &&
44echo " o Build OK" &&
45
46min_log_init ${INSTLOGS} &&
47make install \
48   >> ${LOGFILE} 2>&1 &&
49echo " o ALL OK" || barf
50
51if [ "${MULTIARCH}" = "Y" ]; then
52   use_wrapper /usr/bin/imlib2-config
53fi
Note: See TracBrowser for help on using the repository browser.