pkgsrc/devel/eric4/options.mk
drochner cf6dba0b12 add eric4-4.4.4, a Python IDE, from Helge Muehlmeier per pkgsrc-wip
(XXX there are options depending on -wip pkgs, will be cleaned up later)
2010-05-08 15:44:36 +00:00

41 lines
1 KiB
Makefile

# $NetBSD: options.mk,v 1.1.1.1 2010/05/08 15:44:36 drochner 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 "../../wip/pylint/buildlink3.mk"
.endif
#Enable support for freezing Python scripts
.if !empty(PKG_OPTIONS:Mcxfreeze)
.include "../../wip/cxfreeze/buildlink3.mk"
.endif
#Enable support for code refactoring
.if !empty(PKG_OPTIONS:Mrope)
.include "../../wip/rope/buildlink3.mk"
.endif