diff options
author | Mathieu Arnold <mat@FreeBSD.org> | 2016-04-25 16:13:38 +0000 |
---|---|---|
committer | Mathieu Arnold <mat@FreeBSD.org> | 2016-04-25 16:13:38 +0000 |
commit | 21bc5c0345300431d6e3edc6c43d743c61fc7b5e (patch) | |
tree | 2cf1a158cf8540bcd6bed759d4e35240e31330bb /games | |
parent | 5fe67ba9212540bea871dfec487d380ec3079f21 (diff) | |
download | freebsd-ports-21bc5c0345300431d6e3edc6c43d743c61fc7b5e.zip |
Remove USE_SQLITE from bsd.databases.mk, replaced by USES=sqlite.
While there replace USE_SQLITE=x by USES=sqlite:x.
PR: 208971
Submitted by: mat
Exp-run by: antoine
With hat: portmgr
Sponsored by: Absolight
Differential Revision: https://reviews.freebsd.org/D5951
Diffstat (limited to 'games')
-rw-r--r-- | games/crossfire-server/Makefile | 4 | ||||
-rw-r--r-- | games/ldmud/Makefile | 2 | ||||
-rw-r--r-- | games/pvpgn/Makefile | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/games/crossfire-server/Makefile b/games/crossfire-server/Makefile index 92534868f984..e13ef08ff65e 100644 --- a/games/crossfire-server/Makefile +++ b/games/crossfire-server/Makefile @@ -46,10 +46,10 @@ OPTIONS_GROUP_PLUGINS= CFLOGGER CFNEWSPAPER CFRHG OPTIONS_SUB= yes CFLOGGER_DESC= SQLite logging plugin -CFLOGGER_USE= sqlite=3 +CFLOGGER_USES= sqlite:3 CFLOGGER_CONFIGURE_ON= --enable-logger=yes CFNEWSPAPER_DESC= Newspaper plugin -CFLOGGER_USE= sqlite=3 +CFLOGGER_USES= sqlite:3 CFNEWSPAPER_CONFIGURE_ON= --enable-newspaper=yes CFRHG_DESC= Random house genetor plugin CFRHG_CONFIGURE_ON= --enable-cfrhg=yes diff --git a/games/ldmud/Makefile b/games/ldmud/Makefile index 8c9107e02bd1..13ba85764be8 100644 --- a/games/ldmud/Makefile +++ b/games/ldmud/Makefile @@ -41,7 +41,7 @@ MYSQL_USE= MYSQL=yes MYSQL_CONFIGURE_ENABLE= use-mysql PGSQL_USES= pgsql PGSQL_CONFIGURE_ENABLE= use-pgsql -SQLITE_USE= SQLITE=yes +SQLITE_USES= sqlite SQLITE_CONFIGURE_ENABLE=use-sqlite .include <bsd.port.options.mk> diff --git a/games/pvpgn/Makefile b/games/pvpgn/Makefile index 04decb86c37a..d355286e611b 100644 --- a/games/pvpgn/Makefile +++ b/games/pvpgn/Makefile @@ -50,7 +50,7 @@ MYSQL_CONFIGURE_WITH= mysql PGSQL_USES= pgsql PGSQL_CONFIGURE_WITH= pgsql -SQLITE3_USE= SQLITE=3 +SQLITE3_USES= sqlite:3 SQLITE3_CONFIGURE_WITH= sqlite3 ## support files |