mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-03 17:59:07 -04:00
22 lines
497 B
Makefile
22 lines
497 B
Makefile
# $NetBSD: options.mk,v 1.1 2014/12/06 20:41:36 prlw1 Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.gedit3
|
|
PKG_SUPPORTED_OPTIONS= enchant
|
|
PKG_SUGGESTED_OPTIONS= enchant
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
PLIST_VARS= enchant
|
|
|
|
###
|
|
### Spell-check plugin which uses enchant
|
|
###
|
|
.if !empty(PKG_OPTIONS:Menchant)
|
|
CONFIGURE_ARGS+= --enable-spell
|
|
.include "../../textproc/enchant/buildlink3.mk"
|
|
.include "../../textproc/iso-codes/buildlink3.mk"
|
|
PLIST.enchant= yes
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-spell
|
|
.endif
|