1998-04-12 12:47:23 +00:00
|
|
|
# New ports collection makefile for: mozilla
|
1999-07-24 02:26:33 +00:00
|
|
|
# Version required: M8
|
1998-04-12 12:47:23 +00:00
|
|
|
# Date created: 31 Mar 1998
|
|
|
|
# Whom: eivind/dima/jseger
|
1997-02-24 19:00:30 +00:00
|
|
|
#
|
1999-07-24 15:33:04 +00:00
|
|
|
# $Id: Makefile,v 1.29 1999/07/24 02:26:21 cpiazza Exp $
|
1997-02-24 19:00:30 +00:00
|
|
|
#
|
|
|
|
|
1999-07-24 02:26:33 +00:00
|
|
|
DISTNAME= mozilla-source-M8
|
|
|
|
PKGNAME= mozilla-M8
|
1997-02-24 19:00:30 +00:00
|
|
|
CATEGORIES= www
|
1999-07-24 02:26:33 +00:00
|
|
|
MASTER_SITES= ftp://ftp.mozilla.org/pub/mozilla/releases/m8/src/
|
1997-11-15 01:11:00 +00:00
|
|
|
|
1999-07-24 02:26:33 +00:00
|
|
|
MAINTAINER= reg@shale.csir.co.za
|
1997-11-15 01:11:00 +00:00
|
|
|
|
1999-07-24 02:26:33 +00:00
|
|
|
LIB_DEPENDS= glib12.2:${PORTSDIR}/devel/glib12 \
|
|
|
|
IDL.2:${PORTSDIR}/devel/ORBit \
|
|
|
|
gtk12.2:${PORTSDIR}/x11-toolkits/gtk12
|
1998-10-15 01:16:23 +00:00
|
|
|
|
1999-07-24 15:33:04 +00:00
|
|
|
.include <bsd.port.pre.mk>
|
1999-07-24 02:26:33 +00:00
|
|
|
|
|
|
|
.if ${OSVERSION} < 400004
|
|
|
|
BUILD_DEPENDS+= eg++:${PORTSDIR}/lang/egcs
|
|
|
|
CC= egcc
|
|
|
|
CXX= eg++
|
|
|
|
.endif
|
1997-04-09 15:12:15 +00:00
|
|
|
|
1999-07-24 02:26:33 +00:00
|
|
|
GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config
|
|
|
|
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
1998-11-11 05:37:39 +00:00
|
|
|
|
1999-07-24 02:26:33 +00:00
|
|
|
WRKSRC= ${WRKDIR}/mozilla
|
|
|
|
USE_X_PREFIX= yes
|
|
|
|
USE_PERL5= yes
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
USE_GMAKE= yes
|
|
|
|
CONFIGURE_ARGS= \
|
|
|
|
--disable-cpp-rtti \
|
|
|
|
--disable-md \
|
|
|
|
--disable-pedantic \
|
|
|
|
--disable-xterm-updates \
|
|
|
|
--enable-cpp-exceptions \
|
|
|
|
--enable-debug \
|
|
|
|
--enable-double-buffer \
|
|
|
|
--enable-editor \
|
|
|
|
--enable-idltool \
|
|
|
|
--enable-mailnews \
|
|
|
|
--enable-optimize \
|
|
|
|
--enable-pics \
|
|
|
|
--enable-tests \
|
|
|
|
--enable-toolkit=gtk \
|
|
|
|
--with-jpeg=${LOCALBASE} \
|
|
|
|
--with-png=${LOCALBASE}
|
|
|
|
CONFIGURE_ENV= GLIB_CONFIG="${GLIB_CONFIG}" \
|
|
|
|
GTK_CONFIG="${GTK_CONFIG}"
|
|
|
|
MAKE_ENV= LD_LIBRARY_PATH=${WRKSRC}/dist/bin
|
1998-03-15 15:13:57 +00:00
|
|
|
|
1997-04-09 15:12:15 +00:00
|
|
|
do-install:
|
1999-07-24 02:26:33 +00:00
|
|
|
${MKDIR} ${PREFIX}/lib/mozilla
|
|
|
|
chmod 755 ${PREFIX}/lib/mozilla
|
|
|
|
cd ${WRKSRC}/dist/bin && tar -chf - * | \
|
|
|
|
tar -xf - -C ${PREFIX}/lib/mozilla
|
|
|
|
${INSTALL_SCRIPT} ${WRKSRC}/mozilla ${PREFIX}/bin
|
|
|
|
${TOUCH} ${PREFIX}/lib/mozilla/component.reg
|
|
|
|
chmod 666 ${PREFIX}/lib/mozilla/component.reg
|
1997-02-24 19:00:30 +00:00
|
|
|
|
1998-11-11 05:37:39 +00:00
|
|
|
.include <bsd.port.post.mk>
|