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
|
Rev | Line | |
---|
[617118d] | 1 | #!/bin/bash
|
---|
| 2 |
|
---|
| 3 | ### graphviz ###
|
---|
| 4 |
|
---|
| 5 | cd ${SRC}
|
---|
| 6 | LOG=graphviz-blfs.log
|
---|
| 7 |
|
---|
| 8 | SELF=`basename ${0}`
|
---|
| 9 | set_buildenv
|
---|
| 10 | set_libdirname
|
---|
| 11 | setup_multiarch
|
---|
| 12 | if [ ! "${libdirname}" = "lib" ]; then
|
---|
| 13 | extra_conf="--libdir=/usr/${libdirname}"
|
---|
| 14 | fi
|
---|
| 15 |
|
---|
[be9c22a] | 16 | unpack_tarball graphviz-${GRAPHVIZ_VER}
|
---|
| 17 | cd ${PKGDIR}
|
---|
| 18 |
|
---|
[617118d] | 19 | if [ "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
|
---|
| 26 | fi
|
---|
| 27 |
|
---|
| 28 | max_log_init graphviz ${GRAPHVIZ_VER} "blfs (shared)" ${CONFLOGS} ${LOG}
|
---|
| 29 | CC="${CC-gcc} ${ARCH_CFLAGS}" \
|
---|
| 30 | CXX="${CXX-g++} ${ARCH_CFLAGS}" \
|
---|
| 31 | CFLAGS="${TGT_CFLAGS}" \
|
---|
| 32 | CXXFLAGS="${TGT_CFLAGS}" \
|
---|
| 33 | ./configure --prefix=/usr ${extra_conf} \
|
---|
| 34 | >> ${LOGFILE} 2>&1 &&
|
---|
| 35 | echo " o Configure OK" &&
|
---|
| 36 |
|
---|
| 37 | min_log_init ${BUILDLOGS} &&
|
---|
| 38 | make \
|
---|
| 39 | >> ${LOGFILE} 2>&1 &&
|
---|
| 40 | echo " o Build OK" &&
|
---|
| 41 |
|
---|
| 42 | min_log_init ${INSTLOGS} &&
|
---|
| 43 | make install \
|
---|
| 44 | >> ${LOGFILE} 2>&1 &&
|
---|
| 45 | echo " o ALL OK" || barf
|
---|
| 46 |
|
---|
| 47 | if [ "Y" = "${MULTIARCH}" ]; then
|
---|
| 48 | use_wrapper /usr/bin/dotneato-config
|
---|
| 49 | fi
|
---|
Note:
See
TracBrowser
for help on using the repository browser.