125 lines
3.6 KiB
Makefile
125 lines
3.6 KiB
Makefile
# $OpenBSD: Makefile,v 1.73 2004/08/04 16:12:14 naddy Exp $
|
|
|
|
ONLY_FOR_ARCHS= alpha i386 sparc sparc64 amd64 powerpc
|
|
|
|
COMMENT= "open source version of the Netscape browser"
|
|
COMMENT-devel= "devel files for Gecko"
|
|
|
|
VER= 1.6
|
|
DISTNAME= mozilla
|
|
PKGNAME= mozilla-${VER}
|
|
DISTFILES= mozilla-source-${VER}.tar.bz2
|
|
|
|
CATEGORIES= www
|
|
|
|
HOMEPAGE= http://www.mozilla.org/
|
|
|
|
# mozilla public license
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= http://ftp.eu.mozilla.org/pub/mozilla.org/mozilla/releases/mozilla${VER}/src/ \
|
|
http://ftp.mozilla.org/pub/mozilla/releases/mozilla${VER}/src/
|
|
|
|
MULTI_PACKAGES= -devel
|
|
|
|
VMEM_WARNING=yes
|
|
|
|
.for i in ${MULTI_PACKAGES}
|
|
PKGNAME$i= mozilla${i}-${VER}
|
|
.endfor
|
|
|
|
SUBPACKAGE?=
|
|
|
|
.if ${SUBPACKAGE} == "-devel"
|
|
RUN_DEPENDS= ::www/mozilla
|
|
.else
|
|
MODULES= gcc3
|
|
MODGCC3_ARCHES= alpha powerpc
|
|
MODGCC3_LANGS= C++
|
|
BUILD_DEPENDS= :zip->=2.3:archivers/zip \
|
|
:pkgconfig-*:devel/pkgconfig
|
|
LIB_DEPENDS= gtk.1,gdk.1::x11/gtk+ \
|
|
IDL.4::devel/ORBit \
|
|
jpeg.62::graphics/jpeg \
|
|
png.3::graphics/png
|
|
.endif
|
|
|
|
USE_X11= Yes
|
|
USE_GMAKE= Yes
|
|
# Regression tests are too hard to adapt to run here
|
|
NO_REGRESS= Yes
|
|
|
|
MODGNU_CONFIG_GUESS_DIRS= ${WRKSRC}/build/autoconf \
|
|
${WRKSRC}/nsprpub/build/autoconf \
|
|
${WRKSRC}/directory/c-sdk/config/autoconf
|
|
|
|
AUTOCONF_VERSION= 2.13
|
|
CONFIGURE_STYLE= autoconf no-autoheader
|
|
CONFIGURE_ARGS= \
|
|
--with-system-jpeg=${LOCALBASE} \
|
|
--with-system-png=${LOCALBASE} \
|
|
--with-system-zlib=/usr/lib \
|
|
--with-pthreads \
|
|
--enable-xft \
|
|
--enable-optimize=-Os \
|
|
--enable-crypto \
|
|
--enable-extensions=default \
|
|
--disable-pedantic \
|
|
--disable-debug \
|
|
--disable-tests \
|
|
--disable-ldap
|
|
|
|
# There is no problem with the propolice-enabled gcc3 on amd64 and sparc64,
|
|
# but it is reported to still be broken on others.
|
|
.if ${MACHINE_ARCH} != "amd64" && ${MACHINE_ARCH} != "sparc64"
|
|
CFLAGS+= -fno-stack-protector
|
|
.endif
|
|
|
|
CONFIGURE_ENV= PKG_CONFIG_PATH="${LOCALBASE}/lib/pkgconfig:${X11BASE}/lib/pkgconfig"
|
|
MAKE_ENV= LD_LIBRARY_PATH="${WRKSRC}/dist/bin"
|
|
|
|
MOB= ${WRKSRC}/dist
|
|
MOZ= ${PREFIX}/mozilla
|
|
|
|
post-extract:
|
|
@cp ${FILESDIR}/xptc* ${WRKSRC}/xpcom/reflect/xptcall/src/md/unix/
|
|
|
|
pre-configure:
|
|
@cd ${WRKSRC}/nsprpub && ${SETENV} ${AUTOCONF_ENV} ${AUTOCONF}
|
|
@perl -pi -e 's|_LOCALBASE_|${LOCALBASE}|g; s|_X11BASE_|${X11BASE}|g' \
|
|
${WRKSRC}/xpfe/bootstrap/mozilla.in
|
|
|
|
do-install:
|
|
.for dir in include lib
|
|
${INSTALL_DATA_DIR} ${MOZ}/${dir}
|
|
@cd ${MOB} && ${TAR} -chf - ${dir} | \
|
|
${TAR} -xf - -C ${MOZ}
|
|
.endfor
|
|
@cd ${MOB}/public && ${TAR} -chf - nss | \
|
|
${TAR} -xf - -C ${MOZ}/include
|
|
.for dir in chrome components defaults res searchplugins
|
|
${INSTALL_DATA_DIR} ${MOZ}/${dir}
|
|
@cd ${MOB}/bin && ${TAR} -chf - ${dir} | \
|
|
${TAR} -xf - -C ${MOZ}
|
|
.endfor
|
|
@cd ${MOB}/bin && ${TAR} -chf - *.so.1.0 | \
|
|
${TAR} -xf - -C ${MOZ}
|
|
@chmod 444 ${MOZ}/*.so.1.0 ${MOZ}/components/*.so.1.0
|
|
${INSTALL_DATA} ${MOB}/bin/LICENSE ${MOZ}
|
|
${INSTALL_SCRIPT} ${MOB}/bin/mozilla ${PREFIX}/bin
|
|
${INSTALL_SCRIPT} ${MOB}/bin/run-mozilla.sh ${MOB}/bin/mozilla-config ${MOZ}
|
|
${INSTALL_PROGRAM} ${MOB}/bin/regchrome ${MOB}/bin/regxpcom ${MOB}/bin/mozilla-bin ${MOZ}
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/applications
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/pixmaps
|
|
.for file in mozilla mozilla-mail mozilla-compose
|
|
${INSTALL_DATA} ${WRKSRC}/build/package/rpm/SOURCES/${file}.desktop ${PREFIX}/share/applications
|
|
${INSTALL_DATA} ${WRKSRC}/build/package/rpm/SOURCES/${file}-icon.* ${PREFIX}/share/pixmaps
|
|
.endfor
|
|
${INSTALL_DATA_DIR} ${PREFIX}/lib/pkgconfig
|
|
${INSTALL_DATA} ${WRKBUILD}/build/unix/*.pc ${PREFIX}/lib/pkgconfig
|
|
|
|
.include <bsd.port.mk>
|