source: scripts/untested/blfs-scripts/blfs-lesstif.sh @ 236a72e

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

r600@server (orig r598): ryan | 2005-08-05 23:18:36 -0700
Add edit to fix generated mxmkmf when doing a multilib build
Add support for latest lesstif version


  • Property mode set to 100755
File size: 1.3 KB
Line 
1#!/bin/bash
2
3### lesstif ###
4
5cd ${SRC}
6LOG=lesstif-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 lesstif-${LESSTIF_VER}
17cd ${PKGDIR}
18
19case ${LESSTIF_VER} in
20   0.94.0 )
21     apply_patch lesstif-0.94.0-use_libdir
22   ;;
23   0.94.4 )
24     apply_patch lesstif-0.94.4-use_libdir_and_fix_installdirs
25     apply_patch lesstif-0.94.4-testsuite_fix-1
26   ;;
27esac
28
29# fix mxmkmf generation to point at correct location when multi-arch
30sed -i -e "/^lcfgdir=/s@/lib/@/${libdirname}/@g" \
31   lib/config/mxmkmf.in
32
33max_log_init lesstif ${LESSTIF_VER} "blfs (shared)" ${CONFLOGS} ${LOG}
34CC="${CC-gcc} ${ARCH_CFLAGS}" \
35CXX="${CXX-g++} ${ARCH_CFLAGS}" \
36CFLAGS="-O2 -pipe ${TGT_CFLAGS}" \
37CXXFLAGS="-O2 -pipe ${TGT_CFLAGS}" \
38./configure --prefix=/usr ${extra_conf} \
39   --enable-build-21 \
40   --disable-debug \
41   --enable-production \
42   --disable-build-tests \
43   --with-xdnd \
44   --mandir=/usr/share/man \
45   --infodir=/usr/share/info \
46   >> ${LOGFILE} 2>&1 &&
47echo " o Configure OK" &&
48
49min_log_init ${BUILDLOGS} &&
50make \
51   >> ${LOGFILE} 2>&1 &&
52echo " o Build OK" &&
53
54min_log_init ${INSTLOGS} &&
55make install \
56   >> ${LOGFILE} 2>&1 &&
57echo " o ALL OK" || barf
58
59if [ "Y" = "${MULTIARCH}" ]; then
60   use_wrapper /usr/bin/mxmkmf
61fi
62
Note: See TracBrowser for help on using the repository browser.