clfs-1.2
clfs-2.1
clfs-3.0.0-systemd
clfs-3.0.0-sysvinit
systemd
sysvinit
Last change
on this file since 8a3554d was 3d3002d, checked in by Jim Gifford <clfs@…>, 19 years ago |
r571@server (orig r569): ryan | 2005-06-09 08:45:07 -0700
*sigh* enscript build barfs out ${ARCH_CFLAGS} is used with gcc...
Commented out for the moment until I can be bothered fault finding it...
|
-
Property mode
set to
100755
|
File size:
660 bytes
|
Rev | Line | |
---|
[617118d] | 1 | #!/bin/bash
|
---|
| 2 |
|
---|
| 3 | ### enscript ###
|
---|
| 4 |
|
---|
| 5 | cd ${SRC}
|
---|
| 6 | LOG=enscript-blfs.log
|
---|
| 7 |
|
---|
[3d3002d] | 8 | # ARGHH cannot set ARCH_CFLAGS or configure barfs... grrrrr
|
---|
| 9 | #set_libdirname
|
---|
| 10 | #setup_multiarch
|
---|
[617118d] | 11 |
|
---|
| 12 | unpack_tarball enscript-${ENSCRIPT_VER}
|
---|
| 13 | cd ${PKGDIR}
|
---|
| 14 |
|
---|
| 15 | max_log_init enscript ${ENSCRIPT_VER} "blfs (shared)" ${CONFLOGS} ${LOG}
|
---|
[3d3002d] | 16 | #CC="${CC-gcc} ${ARCH_CFLAGS}" \
|
---|
| 17 | #CFLAGS="${TGT_CFLAGS}" \
|
---|
[617118d] | 18 | ./configure --prefix=/usr \
|
---|
| 19 | --sysconfdir=/etc/enscript \
|
---|
| 20 | --localstatedir=/var \
|
---|
| 21 | >> ${LOGFILE} 2>&1 &&
|
---|
| 22 | echo " o Configure OK" &&
|
---|
| 23 |
|
---|
| 24 | min_log_init ${BUILDLOGS}
|
---|
| 25 | make \
|
---|
| 26 | >> ${LOGFILE} 2>&1 &&
|
---|
| 27 | echo " o Build OK" || barf
|
---|
| 28 |
|
---|
| 29 | min_log_init ${INSTLOGS}
|
---|
| 30 | make install \
|
---|
| 31 | >> ${LOGFILE} 2>&1 &&
|
---|
| 32 | echo " o Install OK" || barf
|
---|
| 33 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.