83 lines
2.1 KiB
Makefile
83 lines
2.1 KiB
Makefile
|
# $NetBSD: options.mk,v 1.1 2019/09/21 11:23:28 ryoon Exp $
|
||
|
|
||
|
PKG_OPTIONS_VAR= PKG_OPTIONS.thunderbird
|
||
|
|
||
|
PKG_SUPPORTED_OPTIONS= alsa dbus debug mozilla-jemalloc gnome \
|
||
|
official-mozilla-branding oss pulseaudio \
|
||
|
mozilla-lightning
|
||
|
PKG_SUGGESTED_OPTIONS+= mozilla-lightning
|
||
|
|
||
|
PLIST_VARS+= branding nobranding debug gnome jemalloc
|
||
|
|
||
|
.if ${OPSYS} == "Linux"
|
||
|
PKG_SUGGESTED_OPTIONS+= pulseaudio mozilla-jemalloc dbus
|
||
|
.else
|
||
|
PKG_SUGGESTED_OPTIONS+= oss dbus
|
||
|
.endif
|
||
|
|
||
|
.include "../../mk/bsd.options.mk"
|
||
|
|
||
|
.if !empty(PKG_OPTIONS:Malsa)
|
||
|
CONFIGURE_ARGS+= --enable-alsa
|
||
|
.include "../../audio/alsa-lib/buildlink3.mk"
|
||
|
.else
|
||
|
CONFIGURE_ARGS+= --disable-alsa
|
||
|
.endif
|
||
|
|
||
|
.if !empty(PKG_OPTIONS:Moss)
|
||
|
CONFIGURE_ARGS+= --with-oss
|
||
|
.include "../../mk/oss.buildlink3.mk"
|
||
|
.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 --disable-optimize
|
||
|
CONFIGURE_ARGS+= --disable-install-strip
|
||
|
PLIST.debug= yes
|
||
|
.else
|
||
|
CONFIGURE_ARGS+= --disable-debug
|
||
|
CONFIGURE_ARGS+= --enable-optimize=-O2
|
||
|
CONFIGURE_ARGS+= --enable-install-strip
|
||
|
BUILDLINK_TRANSFORM+= rm:-g
|
||
|
.endif
|
||
|
|
||
|
.if !empty(PKG_OPTIONS:Mpulseaudio)
|
||
|
.include "../../audio/pulseaudio/buildlink3.mk"
|
||
|
CONFIGURE_ARGS+= --enable-pulseaudio
|
||
|
.else
|
||
|
CONFIGURE_ARGS+= --disable-pulseaudio
|
||
|
.endif
|
||
|
|
||
|
.if !empty(PKG_OPTIONS:Mmozilla-lightning)
|
||
|
CONFIGURE_ARGS+= --enable-calendar
|
||
|
PLIST_SRC+= PLIST.lightning
|
||
|
XPI_FILES+= ${WRKSRC}/${OBJDIR}/bin/distribution/extensions/lightning.xpi
|
||
|
.else
|
||
|
CONFIGURE_ARGS+= --disable-calendar
|
||
|
.endif
|
||
|
|
||
|
.if !empty(PKG_OPTIONS:Mdbus)
|
||
|
.include "../../sysutils/dbus-glib/buildlink3.mk"
|
||
|
CONFIGURE_ARGS+= --enable-dbus
|
||
|
.else
|
||
|
CONFIGURE_ARGS+= --disable-dbus
|
||
|
.endif
|
||
|
|
||
|
.if !empty(PKG_OPTIONS:Mofficial-mozilla-branding)
|
||
|
CONFIGURE_ARGS+= --enable-official-branding
|
||
|
PLIST.branding= yes
|
||
|
LICENSE= mozilla-trademark-license
|
||
|
RESTRICTED= Trademark holder prohibits distribution of modified versions.
|
||
|
NO_BIN_ON_CDROM= ${RESTRICTED}
|
||
|
NO_BIN_ON_FTP= ${RESTRICTED}
|
||
|
.else
|
||
|
CONFIGURE_ARGS+= --disable-official-branding
|
||
|
PLIST.nobranding= yes
|
||
|
.endif
|