clfs-1.2
clfs-2.1
clfs-3.0.0-systemd
clfs-3.0.0-sysvinit
systemd
sysvinit
Last change
on this file since 8c8c5ab was 99e4712, checked in by Jim Gifford <clfs@…>, 19 years ago |
r567@server (orig r565): ryan | 2005-06-08 02:22:20 -0700
(missing logfile from previous svk merge, diff -r559 for changes)
Create a c wrapper for use when doing multilib builds
create_wrapper now builds and installs a c wrapper as opposed to a shell
wrapper.
The file wrapper.c is created via a here doc... this will be subject to
change
The c wrapper avoids issues when an interpreter such as perl or python is
called from the shebang line of a script, where the contents of the script
would get passed to the shell of the wrapper, NOT to the required interpretor.
Due to this, the previous PERL and PYTHON env var hackery can be removed.
----------------------------------------------
Remove unneded which_func from multiarch_funcs
Minor edits to get the changelog in ;-)
|
-
Property mode
set to
100755
|
File size:
1.2 KB
|
Line | |
---|
1 | #!/bin/bash
|
---|
2 |
|
---|
3 | ### scrollkeeper ###
|
---|
4 |
|
---|
5 | cd ${SRC}
|
---|
6 | LOG=scrollkeeper-gnome-desktop.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 |
|
---|
16 | # override TARBALLS to point at gnome/desktop tree
|
---|
17 | GNOME_REL_MAJ=`echo ${GNOME_REL} | sed 's@\([0-9]*\.[0-9]*\).*@\1@g'`
|
---|
18 | export TARBALLS=${GNOME_TARBALLS}/desktop/${GNOME_REL_MAJ}/${GNOME_REL}/sources
|
---|
19 |
|
---|
20 | unpack_tarball scrollkeeper-${SCROLLKEEPER_VER}
|
---|
21 | cd ${PKGDIR}
|
---|
22 |
|
---|
23 | #######
|
---|
24 | # TODO: probably should add extra directories to --with-omfdirs...
|
---|
25 | #######
|
---|
26 |
|
---|
27 | max_log_init scrollkeeper ${SCROLLKEEPER_VER} "blfs (shared)" ${CONFLOGS} ${LOG}
|
---|
28 | CC="${CC-gcc} ${ARCH_CFLAGS}" \
|
---|
29 | CXX="${CXX-g++} ${ARCH_CFLAGS}" \
|
---|
30 | CFLAGS="${TGT_CFLAGS}" \
|
---|
31 | CXXFLAGS="${TGT_CFLAGS}" \
|
---|
32 | ./configure --prefix=/usr ${extra_conf} \
|
---|
33 | --sysconfdir=/etc --localstatedir=/var --disable-static \
|
---|
34 | --with-omfdirs=/usr/share/omf \
|
---|
35 | >> ${LOGFILE} 2>&1 &&
|
---|
36 | echo " o Configure OK" &&
|
---|
37 |
|
---|
38 | min_log_init ${BUILDLOGS} &&
|
---|
39 | make \
|
---|
40 | >> ${LOGFILE} 2>&1 &&
|
---|
41 | echo " o Build OK" &&
|
---|
42 |
|
---|
43 | min_log_init ${INSTLOGS} &&
|
---|
44 | make install \
|
---|
45 | >> ${LOGFILE} 2>&1 &&
|
---|
46 | echo " o ALL OK" || barf
|
---|
47 |
|
---|
48 | if [ "Y" = "${MULTIARCH}" ]; then
|
---|
49 | use_wrapper /usr/bin/scrollkeeper-config
|
---|
50 | fi
|
---|
51 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.