9f75e029bb
Patch from Jukka Salmi in PR pkg/34710
110 lines
2.6 KiB
Makefile
110 lines
2.6 KiB
Makefile
# $NetBSD: options.mk,v 1.21 2006/10/18 20:06:13 tonio Exp $
|
|
|
|
# Global and legacy options
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.mutt
|
|
PKG_OPTIONS_REQUIRED_GROUPS= display
|
|
PKG_OPTIONS_GROUP.display= slang ncurses ncursesw curses
|
|
PKG_SUPPORTED_OPTIONS= ssl sasl mutt-hcache idn mutt-compressed-mbox debug
|
|
PKG_SUGGESTED_OPTIONS= ssl curses
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
###
|
|
### Slang
|
|
###
|
|
.if !empty(PKG_OPTIONS:Mslang)
|
|
. include "../../devel/libslang/buildlink3.mk"
|
|
CONFIGURE_ARGS+= --with-slang=${BUILDLINK_PREFIX.libslang}
|
|
.endif
|
|
|
|
###
|
|
### ncurses
|
|
###
|
|
.if !empty(PKG_OPTIONS:Mncurses)
|
|
USE_NCURSES= yes
|
|
. include "../../devel/ncurses/buildlink3.mk"
|
|
CONFIGURE_ARGS+= --with-curses=${BUILDLINK_PREFIX.ncurses}
|
|
.endif
|
|
|
|
###
|
|
### SASLv2
|
|
###
|
|
.if !empty(PKG_OPTIONS:Msasl)
|
|
. include "../../security/cyrus-sasl/buildlink3.mk"
|
|
CONFIGURE_ARGS+= --with-sasl=${BUILDLINK_PREFIX.cyrus-sasl}
|
|
.endif
|
|
|
|
### curses
|
|
###
|
|
.if !empty(PKG_OPTIONS:Mcurses)
|
|
. include "../../mk/curses.buildlink3.mk"
|
|
.endif
|
|
|
|
###
|
|
### ncursesw
|
|
###
|
|
.if !empty(PKG_OPTIONS:Mncursesw)
|
|
. include "../../devel/ncursesw/buildlink3.mk"
|
|
.else
|
|
SUBST_CLASSES+= curse
|
|
SUBST_MESSAGE.curse= Fixing mutt to avoid ncursesw
|
|
SUBST_STAGE.curse= post-patch
|
|
SUBST_FILES.curse= configure.in configure
|
|
SUBST_SED.curse= -e 's,for lib in ncurses ncursesw,for lib in ncurses,'
|
|
.endif
|
|
|
|
###
|
|
### SSL
|
|
###
|
|
.if !empty(PKG_OPTIONS:Mssl)
|
|
. include "../../security/openssl/buildlink3.mk"
|
|
CONFIGURE_ARGS+= --with-ssl=${SSLBASE:Q}
|
|
.else
|
|
CONFIGURE_ARGS+= --without-ssl
|
|
.endif
|
|
|
|
###
|
|
### Header cache
|
|
###
|
|
.if !empty(PKG_OPTIONS:Mmutt-hcache)
|
|
. include "../../databases/db4/buildlink3.mk"
|
|
CONFIGURE_ARGS+= --enable-hcache
|
|
CONFIGURE_ARGS+= --without-gdbm
|
|
#
|
|
# BDB_INCLUDE_DIR_ and BDB_LIB_DIR don't have to be particularly accurate
|
|
# since the real -I and -L flags are added by buildlink already.
|
|
#
|
|
CONFIGURE_ENV+= BDB_INCLUDE_DIR=${BUILDLINK_PREFIX.db4}/include
|
|
CONFIGURE_ENV+= BDB_LIB_DIR=${BUILDLINK_PREFIX.db4}/lib
|
|
CONFIGURE_ENV+= BDB_LIB=${BUILDLINK_LDADD.db4:S/^-l//}
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-hcache
|
|
.endif
|
|
|
|
###
|
|
### Compressed mail boxes
|
|
###
|
|
.if !empty(PKG_OPTIONS:Mmutt-compressed-mbox)
|
|
PATCH_SITES+= http://www.spinnaker.de/mutt/compressed/
|
|
PATCHFILES+= patch-1.5.13.rr.compressed.1.gz
|
|
PATCH_DIST_STRIP= -p1
|
|
CONFIGURE_ARGS+= --enable-compressed
|
|
.endif
|
|
|
|
###
|
|
### Internationalized Domain Names
|
|
###
|
|
.if !empty(PKG_OPTIONS:Midn)
|
|
. include "../../devel/libidn/buildlink3.mk"
|
|
CONFIGURE_ARGS+= --with-idn=${BUILDLINK_PREFIX.libidn}
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-idn
|
|
.endif
|
|
|
|
###
|
|
### Enable debugging support
|
|
###
|
|
.if !empty(PKG_OPTIONS:Mdebug)
|
|
CONFIGURE_ARGS+= --enable-debug
|
|
.endif
|