Hello,

I've recently recompiled mozilla-devel on a 4.7-STABLE system, no problem,
all fonts and everything work fine.

Trying the same on CURRENT :

- the Makefile is broken for CURRENT's sh/make, the attached patch is
  needed.

- on one machine running mozilla gives nothing (ktrace available) and on
the other, it runs although the font used for the menu is not was I have on
STABLE.

Index: Makefile
===================================================================
RCS file: /home/ncvs/ports/www/mozilla-devel/Makefile,v
retrieving revision 1.122
diff -u -2 -r1.122 Makefile
--- Makefile    23 Oct 2002 04:26:25 -0000      1.122
+++ Makefile    23 Oct 2002 13:10:44 -0000
@@ -136,10 +136,10 @@
 pre-install:
        ${TOUCH} -f ${PLIST}
-       if [ ! -x ${PREFIX}/bin/mozilla -a ! -L ${PREFIX}/bin/mozilla ]; then
-           ${ECHO_CMD} bin/mozilla >> ${PLIST}
+       if [ ! -x ${PREFIX}/bin/mozilla -a ! -L ${PREFIX}/bin/mozilla ]; then \
+           ${ECHO_CMD} bin/mozilla >> ${PLIST} ;\
        fi
        ${ECHO_CMD} bin/mozilla-devel >> ${PLIST}
-       if [ ! -L ${PREFIX}/lib/browser_plugins/libjavaplugin_oji.so ]; then
-           ${ECHO_CMD} lib/browser_plugins/libjavaplugin_oji.so >> ${PLIST}
+       if [ ! -L ${PREFIX}/lib/browser_plugins/libjavaplugin_oji.so ]; then \
+           ${ECHO_CMD} lib/browser_plugins/libjavaplugin_oji.so >> ${PLIST}; \
        fi
        cd ${WRKSRC}/dist/bin && ${FIND} -s * -type f -o -type l | \
@@ -155,13 +155,13 @@
                cpio -pdm -L -R ${LIBOWN}:${LIBGRP} ${PREFIX}/lib/mozilla-devel
        ${INSTALL_SCRIPT} ${WRKSRC}/mozilla-devel ${PREFIX}/bin
-       if [ ! -x ${PREFIX}/bin/mozilla -a ! -L ${PREFIX}/bin/mozilla ]; then
-           ${LN} -sf ${PREFIX}/bin/mozilla-devel ${PREFIX}/bin/mozilla
+       if [ ! -x ${PREFIX}/bin/mozilla -a ! -L ${PREFIX}/bin/mozilla ]; then \
+           ${LN} -sf ${PREFIX}/bin/mozilla-devel ${PREFIX}/bin/mozilla ;\
        fi
-       if [ ! -d ${PREFIX}/lib/browser_plugins ]; then
-           ${MKDIR} ${PREFIX}/lib/browser_plugins
+       if [ ! -d ${PREFIX}/lib/browser_plugins ]; then \
+           ${MKDIR} ${PREFIX}/lib/browser_plugins ;\
        fi
-       if [ ! -L ${PREFIX}/lib/browser_plugins/libjavaplugin_oji.so ]; then
+       if [ ! -L ${PREFIX}/lib/browser_plugins/libjavaplugin_oji.so ]; then \
            ${LN} -sf ${LOCALBASE}/jdk1.3.1/jre/plugin/i386/ns600/libjavaplugin_oji.so 
\
-               ${PREFIX}/lib/browser_plugins/libjavaplugin_oji.so
+               ${PREFIX}/lib/browser_plugins/libjavaplugin_oji.so ;\
        fi
 

-- 
Ollivier ROBERT  -=-  Eurocontrol EEC/ITM  -=-  [EMAIL PROTECTED]
FreeBSD caerdonn.eurocontrol.fr 5.0-CURRENT #46: Wed Jan  3 15:52:00 CET 2001

To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message

Reply via email to