003058e18e
* Fix a problem with plugins not actually loading * Hopefully correct some issues with installs erroring out with Error 1 * Conditionalize Xft support (by default it's enabled, but can be disabled by defined WITHOUT_XFT) Submitted by: Jung-uk Kim <jkim@niksun.com> [1] Obtained from: Mozilla's Bugzilla bug 174989 [1]
172 lines
5.1 KiB
Makefile
172 lines
5.1 KiB
Makefile
# New ports collection makefile for: mozilla
|
|
# Date created: 31 Mar 1998
|
|
# Whom: eivind/dima/jseger
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= mozilla
|
|
PORTVERSION= 1.2b
|
|
PORTREVISION= 1
|
|
PORTEPOCH= 1
|
|
CATEGORIES= www
|
|
MASTER_SITES= ${MASTER_SITE_MOZILLA} \
|
|
http://people.FreeBSD.org/~marcus/:local
|
|
MASTER_SITE_SUBDIR= mozilla/releases/${PORTNAME}${PORTVERSION:S/.rc/rc/}/src \
|
|
marcus/:local
|
|
DISTFILES= ${PORTNAME}-source-${PORTVERSION:S/.rc/rc/}${EXTRACT_SUFX} \
|
|
libart_lgpl-${PORTVERSION}${EXTRACT_SUFX}:local
|
|
|
|
MAINTAINER= gnome@FreeBSD.org
|
|
|
|
BUILD_DEPENDS= zip:${PORTSDIR}/archivers/zip \
|
|
freetype-config:${PORTSDIR}/print/freetype2
|
|
LIB_DEPENDS= jpeg.9:${PORTSDIR}/graphics/jpeg \
|
|
png.5:${PORTSDIR}/graphics/png \
|
|
mng.1:${PORTSDIR}/graphics/libmng \
|
|
freetype.9:${PORTSDIR}/print/freetype2
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
|
|
WITHOUT_CHATZILLA= "Contains a buffer overflow reported at http://online.securityfocus.com/archive/1/270249"
|
|
|
|
.if !defined(WITHOUT_XFT)
|
|
LIB_DEPENDS+= Xft2.2:${PORTSDIR}/x11-fonts/Xft
|
|
.endif
|
|
|
|
LATEST_LINK= mozilla-devel
|
|
EXTRACT_AFTER_ARGS= | ${TAR} -xf - --exclude */CVS/* \
|
|
--exclude */macbuild/*\
|
|
--exclude */package/* \
|
|
--exclude .cvsignore \
|
|
--exclude makefile.win \
|
|
--exclude MANIFEST
|
|
USE_X_PREFIX= yes
|
|
USE_PERL5= yes
|
|
USE_GMAKE= yes
|
|
USE_GNOMENG= yes
|
|
USE_GNOME= orbit gtk12
|
|
USE_REINPLACE= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= \
|
|
--disable-auto-deps \
|
|
--enable-chrome-format=jar \
|
|
--disable-cpp-exceptions \
|
|
--disable-cpp-rtti \
|
|
--enable-crypto \
|
|
--disable-debug \
|
|
--enable-default-toolkit=gtk \
|
|
--enable-double-buffer \
|
|
--enable-dtd-debug \
|
|
--enable-jsd \
|
|
--enable-mathml \
|
|
--disable-md \
|
|
--disable-optimize \
|
|
--disable-pedantic \
|
|
--disable-plaintext-editor-only \
|
|
--enable-strip \
|
|
--enable-svg \
|
|
--disable-tests \
|
|
--disable-xterm-updates \
|
|
--enable-xinerama \
|
|
--with-system-jpeg=${LOCALBASE} \
|
|
--with-system-mng=${LOCALBASE} \
|
|
--with-system-png=${LOCALBASE} \
|
|
--with-pthreads
|
|
|
|
PLIST= ${WRKDIR}/pkg-plist
|
|
# LDAP is only used by mail and news so disable both together
|
|
.if defined(WITHOUT_MAILNEWS)
|
|
CONFIGURE_ARGS+= --disable-ldap --disable-mailnews
|
|
.else
|
|
# mail and news desired, but not LDAP
|
|
.if defined(WITHOUT_LDAP)
|
|
CONFIGURE_ARGS+= --disable-ldap --enable-mailnews
|
|
.else
|
|
CONFIGURE_ARGS+= --enable-ldap --enable-mailnews
|
|
.endif
|
|
.endif
|
|
|
|
.if !defined(WITHOUT_CHATZILLA)
|
|
CONFIGURE_ARGS+= --enable-extensions=default,irc,xmlterm
|
|
.else
|
|
CONFIGURE_ARGS+= --enable-extensions=default,xmlterm
|
|
.endif
|
|
CONFIGURE_ENV= MOZ_INTERNAL_LIBART_LGPL=1
|
|
|
|
.if !defined(WITHOUT_XFT)
|
|
CONFIGURE_ARGS+= --enable-xft
|
|
.endif
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
MAKE_ENV= LD_LIBRARY_PATH=${WRKSRC}/dist/bin \
|
|
MOZ_INTERNAL_LIBART_LGPL=1
|
|
ALL_TARGET= default
|
|
|
|
.if ${ARCH} == "i386"
|
|
CONFIGURE_ARGS+= --enable-reorder
|
|
.endif
|
|
|
|
.if ${ARCH} == "alpha"
|
|
BROKEN= "core dumps on alpha during post-build"
|
|
.endif
|
|
|
|
.if exists(${LOCALBASE}/include/freetype/freetype.h)
|
|
BROKEN="You must upgrade your freetype port to 1.3.1_2 or higher before installing Mozilla. If you have 1.3.1_2 installed, please remove ${LOCALBASE}/include/freetype, then build Mozilla"
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|g' \
|
|
${WRKSRC}/build/unix/run-mozilla.sh
|
|
@${REINPLACE_CMD} -e 's|X11/Xft/Xft\.h|X11/Xft/Xft2.h|g' \
|
|
${WRKSRC}/gfx/src/gtk/nsDrawingSurfaceGTK.cpp \
|
|
${WRKSRC}/gfx/src/gtk/nsFontMetricsXft.h
|
|
|
|
post-build:
|
|
${SED} -e "s;@PREFIX@;${PREFIX};g" \
|
|
${FILESDIR}/mozilla.sh >${WRKSRC}/mozilla-devel
|
|
(cd ${WRKSRC}/dist/bin; \
|
|
${SETENV} LD_LIBRARY_PATH=. MOZILLA_FIVE_HOME=. ./regxpcom; \
|
|
${SETENV} LD_LIBRARY_PATH=. MOZILLA_FIVE_HOME=. ./regchrome; \
|
|
${TOUCH} ./chrome/user-skins.rdf ./chrome/user-locales.rdf)
|
|
${FIND} ${WRKSRC}/dist/bin -type d | /usr/bin/sort -r | \
|
|
${XARGS} ${RMDIR} 2> /dev/null || ${TRUE}
|
|
|
|
pre-install:
|
|
${TOUCH} -f ${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}
|
|
fi
|
|
cd ${WRKSRC}/dist/bin && ${FIND} -s * -type f -o -type l | \
|
|
${SED} -e 's:^:lib/mozilla-devel/:' >> ${PLIST} \
|
|
&& ${FIND} -d * -type d | \
|
|
${SED} -e 's:^:@dirrm lib/mozilla-devel/:' >> ${PLIST}
|
|
${ECHO_CMD} @dirrm lib/mozilla-devel >> ${PLIST}
|
|
|
|
do-install:
|
|
${MKDIR} ${PREFIX}/lib/mozilla-devel
|
|
${CHMOD} 755 ${PREFIX}/lib/mozilla-devel
|
|
cd ${WRKSRC}/dist/bin && ${FIND} . | \
|
|
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
|
|
fi
|
|
if [ ! -d ${PREFIX}/lib/browser_plugins ]; then
|
|
${MKDIR} ${PREFIX}/lib/browser_plugins
|
|
fi
|
|
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
|
|
fi
|
|
|
|
post-install:
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.post.mk>
|