pkgsrc/www/php-tt-rss/options.mk
ryoon 7de9dc8601 Import php54-tt-rss-1.6.2 as www/php-tt-rss.
Tiny Tiny RSS is an open source web-based news feed (RSS/Atom)
reader and aggregator, designed to allow you to read news from any
location, while feeling as close to a real desktop application as
possible.
2013-01-03 13:59:44 +00:00

19 lines
480 B
Makefile

# $NetBSD: options.mk,v 1.1 2013/01/03 13:59:44 ryoon Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.php-tt-rss
PKG_OPTIONS_REQUIRED_GROUPS= db
PKG_OPTIONS_GROUP.db= mysql pgsql
PKG_SUGGESTED_OPTIONS= pgsql
.include "../../mk/bsd.options.mk"
###
### Use mysql or pgsql backend
###
.if !empty(PKG_OPTIONS:Mmysql)
DEPENDS+= ${PHP_PKG_PREFIX}-mysql>=5.2.0:../../databases/php-mysql
.elif !empty(PKG_OPTIONS:Mpgsql)
DEPENDS+= ${PHP_PKG_PREFIX}-pgsql>=5.2.0:../../databases/php-pgsql
.endif