pkgsrc/devel/eric4/options.mk

41 lines
1 KiB
Makefile

# $NetBSD: options.mk,v 1.4 2014/05/04 13:10:47 rodent Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.eric4
PKG_SUPPORTED_OPTIONS= sqlite mysql pgsql enchant pylint cxfreeze rope
PKG_SUGGESTED_OPTIONS= sqlite
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Msqlite)
DEPENDS+= qt4-sqlite3>=4.6.2:../../x11/qt4-sqlite3
.endif
#Enable support for mysql & postgresql | build Qt4-drivers
.if !empty(PKG_OPTIONS:Mmysql)
DEPENDS+= qt4-mysql>=4.6.2:../../x11/qt4-mysql
.endif
.if !empty(PKG_OPTIONS:Mpgsql)
DEPENDS+= qt4-pgsql>=4.6.2:../../x11/qt4-pgsql
.endif
#Enable spell-checking
.if !empty(PKG_OPTIONS:Menchant)
DEPENDS+= ${PYPKGPREFIX}-enchant>=1.4.2:../../textproc/py-enchant
.endif
#Enable source code analyzer for python
.if !empty(PKG_OPTIONS:Mpylint)
.include "../../devel/py-pylint/buildlink3.mk"
.endif
#Enable support for freezing Python scripts
.if !empty(PKG_OPTIONS:Mcxfreeze)
.include "../../lang/py-cxfreeze/buildlink3.mk"
.endif
#Enable support for code refactoring
.if !empty(PKG_OPTIONS:Mrope)
.include "../../devel/py-rope/buildlink3.mk"
.endif