diff options
author | bapt <bapt@FreeBSD.org> | 2012-06-02 00:59:20 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2012-06-02 00:59:20 +0800 |
commit | d11c41d1ad3012decf213f15c52bcac9c1b58ccb (patch) | |
tree | e28089e70f941c688810dcf42b54dd8b8bf6ed55 /databases/grass | |
parent | a3fd2744caf5940808c561315a2f854d6a243196 (diff) | |
download | freebsd-ports-gnome-d11c41d1ad3012decf213f15c52bcac9c1b58ccb.tar.gz freebsd-ports-gnome-d11c41d1ad3012decf213f15c52bcac9c1b58ccb.tar.zst freebsd-ports-gnome-d11c41d1ad3012decf213f15c52bcac9c1b58ccb.zip |
Convert to new options framework
Diffstat (limited to 'databases/grass')
-rw-r--r-- | databases/grass/Makefile | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/databases/grass/Makefile b/databases/grass/Makefile index cdec9a42f3e2..65ec7451ef8f 100644 --- a/databases/grass/Makefile +++ b/databases/grass/Makefile @@ -74,10 +74,8 @@ USE_LDCONFIG= ${PREFIX}/${GRASS_INST_DIR}/lib MAKE_JOBS_SAFE= yes -OPTIONS= MYSQL "Enable MySQL support" Off \ - ODBC "Enable ODBC support" Off \ - PGSQL "Enable PostgreSQL support" On \ - SQLITE "Enable SQLite support" Off +OPTIONS_DEFINE= MYSQL ODBC PGSQL SQLITE +OPTIONS_DEFAULT= PGSQL BASH_SCRIPTS= i.spectral r.tileset @@ -95,7 +93,7 @@ EXTRA_PATCHES= ${PATCHDIR}/extra-patch-vector-v.info-main.c GRASS_INST_DIR= ${PORTNAME}-${PORTVERSION} .endif -.if defined(WITH_MYSQL) +.if ${PORT_OPTIONS:MMYSQL} USE_MYSQL= yes CONFIGURE_ARGS+=--with-mysql \ --with-mysql-includes=${LOCALBASE}/include/mysql \ @@ -105,7 +103,7 @@ PLIST_SUB+= MYSQL="" PLIST_SUB+= MYSQL="@comment " .endif -.if defined(WITH_ODBC) +.if ${PORT_OPTIONS:MODBC} LIB_DEPENDS+= odbc:${PORTSDIR}/databases/unixODBC CONFIGURE_ARGS+=--with-odbc PLIST_SUB+= ODBC="" @@ -113,7 +111,7 @@ PLIST_SUB+= ODBC="" PLIST_SUB+= ODBC="@comment " .endif -.if !defined(WITHOUT_PGSQL) +.if ${PORT_OPTIONS:MPGSQL} USE_PGSQL= yes CONFIGURE_ARGS+=--with-postgres PLIST_SUB+= PGSQL="" @@ -121,7 +119,7 @@ PLIST_SUB+= PGSQL="" PLIST_SUB+= PGSQL="@comment " .endif -.if defined(WITH_SQLITE) +.if ${PORT_OPTIONS:MSQLITE} USE_SQLITE= yes CONFIGURE_ARGS+=--with-sqlite PLIST_SUB+= SQLITE="" |