source: scripts/untested/blfs-scripts/blfs-graphviz.sh@ 66f17d5

clfs-1.2 clfs-2.1 clfs-3.0.0-systemd clfs-3.0.0-sysvinit systemd sysvinit
Last change on this file since 66f17d5 was be9c22a, checked in by Jim Gifford <clfs@…>, 19 years ago

r608@server (orig r606): ryan | 2005-08-05 23:32:40 -0700
Unpack tarball before applying edits (duh)


  • Property mode set to 100755
File size: 1.1 KB
RevLine 
[617118d]1#!/bin/bash
2
3### graphviz ###
4
5cd ${SRC}
6LOG=graphviz-blfs.log
7
8SELF=`basename ${0}`
9set_buildenv
10set_libdirname
11setup_multiarch
12if [ ! "${libdirname}" = "lib" ]; then
13 extra_conf="--libdir=/usr/${libdirname}"
14fi
15
[be9c22a]16unpack_tarball graphviz-${GRAPHVIZ_VER}
17cd ${PKGDIR}
18
[617118d]19if [ "Y" = "${MULTIARCH}" ]; then
20 extra_conf="${extra_conf} --with-expatlibdir=/usr/${libdirname}"
21 # fix LIBPOSTFIX so we dont always search lib64 on x86_64, ppc64 etc
22 # when building 32bit
23 if [ "${libdirname}" = "lib" ]; then
24 sed -i -e "/LIBPOSTFIX/s@64@@g" configure
25 fi
26fi
27
28max_log_init graphviz ${GRAPHVIZ_VER} "blfs (shared)" ${CONFLOGS} ${LOG}
29CC="${CC-gcc} ${ARCH_CFLAGS}" \
30CXX="${CXX-g++} ${ARCH_CFLAGS}" \
31CFLAGS="${TGT_CFLAGS}" \
32CXXFLAGS="${TGT_CFLAGS}" \
33./configure --prefix=/usr ${extra_conf} \
34 >> ${LOGFILE} 2>&1 &&
35echo " o Configure OK" &&
36
37min_log_init ${BUILDLOGS} &&
38make \
39 >> ${LOGFILE} 2>&1 &&
40echo " o Build OK" &&
41
42min_log_init ${INSTLOGS} &&
43make install \
44 >> ${LOGFILE} 2>&1 &&
45echo " o ALL OK" || barf
46
47if [ "Y" = "${MULTIARCH}" ]; then
48 use_wrapper /usr/bin/dotneato-config
49fi
Note: See TracBrowser for help on using the repository browser.