blob: 47283e2de08a5465307e758c30422a8c9663343c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# $NetBSD: options.mk,v 1.5 2014/09/18 14:54:55 wiz Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.snownews
PKG_OPTIONS_REQUIRED_GROUPS= screen
PKG_OPTIONS_GROUP.screen= ncurses ncursesw
PKG_SUGGESTED_OPTIONS= ncurses
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mncurses)
USE_NCURSES= YES
. include "../../devel/ncurses/buildlink3.mk"
.endif
.if !empty(PKG_OPTIONS:Mncursesw)
LIBS+= -lncursesw
SUBST_CLASSES+= configure
SUBST_MESSAGE.configure= Fixing LDFLAGS for ncursesw
SUBST_STAGE.configure= pre-configure
SUBST_FILES.configure= configure
SUBST_SED.configure= -e 's,-lncurses,-lncursesw,'
. include "../../devel/ncursesw/buildlink3.mk"
.endif
|