64 lines
1.8 KiB
Makefile
64 lines
1.8 KiB
Makefile
# $NetBSD: options.mk,v 1.26 2013/08/31 22:10:31 rillig Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.seamonkey
|
|
PKG_SUPPORTED_OPTIONS= debug mozilla-jemalloc gnome mozilla-enigmail
|
|
PKG_SUPPORTED_OPTIONS+= mozilla-lightning webrtc
|
|
|
|
PLIST_VARS+= debug gnome jemalloc
|
|
|
|
.if ${OPSYS} == "Linux" || ${OPSYS} == "SunOS"
|
|
PKG_SUGGESTED_OPTIONS+= mozilla-jemalloc
|
|
.endif
|
|
|
|
# On NetBSD/amd64 6.99.21 libxul.so is invalid when --enable-webrtc is set.
|
|
.if (${OPSYS} == "FreeBSD") || (${OPSYS} == "Linux") || (${OPSYS} == "OpenBSD")
|
|
PKG_SUGGESTED_OPTIONS+= webrtc
|
|
.endif
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mgnome)
|
|
.include "../../devel/libgnomeui/buildlink3.mk"
|
|
.include "../../sysutils/gnome-vfs/buildlink3.mk"
|
|
CONFIGURE_ARGS+= --enable-gnomevfs --enable-dbus --enable-gnomeui
|
|
PLIST.gnome= yes
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-gnomevfs --disable-dbus --disable-gnomeui
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mmozilla-jemalloc)
|
|
PLIST.jemalloc= yes
|
|
CONFIGURE_ARGS+= --enable-jemalloc
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-jemalloc
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mdebug)
|
|
CONFIGURE_ARGS+= --enable-debug --enable-debug-symbols
|
|
CONFIGURE_ARGS+= --disable-install-strip
|
|
PLIST.debug= yes
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-debug --disable-debug-symbols
|
|
CONFIGURE_ARGS+= --enable-install-strip
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mmozilla-enigmail) || make(distinfo)
|
|
.include "enigmail.mk"
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mmozilla-lightning)
|
|
CONFIGURE_ARGS+= --enable-calendar
|
|
PLIST_SRC+= PLIST.lightning
|
|
XPI_FILES+= ${WRKSRC}/mozilla/dist/xpi-stage/gdata-provider*.xpi
|
|
XPI_FILES+= ${WRKSRC}/mozilla/dist/xpi-stage/lightning*.xpi
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-calendar
|
|
.endif
|
|
|
|
PLIST_VARS+= webrtc
|
|
.if !empty(PKG_OPTIONS:Mwebrtc)
|
|
.include "../../graphics/libv4l/buildlink3.mk"
|
|
CONFIGURE_ARGS+= --enable-webrtc
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-webrtc
|
|
.endif
|