summaryrefslogtreecommitdiff
path: root/databases
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2013-06-06 15:41:26 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2013-06-06 15:41:26 +0000
commitd536cceac0c3607a9bd7f9388976d63ecfa664ec (patch)
tree28dfdfd550ecbd4d035ccf99ffedea4235eac810 /databases
parentFinish conversion to new options framework (diff)
Convert to new options framework
Notes
Notes: svn path=/head/; revision=320106
Diffstat (limited to 'databases')
-rw-r--r--databases/rubygem-rubyrep/Makefile14
-rw-r--r--databases/sqlbuddy/Makefile18
2 files changed, 12 insertions, 20 deletions
diff --git a/databases/rubygem-rubyrep/Makefile b/databases/rubygem-rubyrep/Makefile
index 60d892138ba5..fc256925cf39 100644
--- a/databases/rubygem-rubyrep/Makefile
+++ b/databases/rubygem-rubyrep/Makefile
@@ -1,9 +1,5 @@
-# New ports collection makefile for: rubygem-rubyrep
-# Date created: 2011-07-30
-# Whom: Steve Wills <swills@FreeBSD.org>
-#
+# Created by: Steve Wills <swills@FreeBSD.org>
# $FreeBSD$
-#
PORTNAME= rubyrep
PORTVERSION= 1.2.0
@@ -25,18 +21,18 @@ RUBYGEM_AUTOPLIST= yes
USE_RC_SUBR= rubyrep
-OPTIONS = MYSQL "Enable MySQL support" off \
- PGSQL "Enable PostgreSQL support" on
+OPTIONS_DEFINE= MYSQL PGSQL
+OPTIONS_DEFAULT= PGSQL
PLIST_FILES= bin/rubyrep
.include <bsd.port.options.mk>
-.if defined(WITH_PGSQL)
+.if ${PORT_OPTIONS:MPGSQL}
RUN_DEPENDS+= rubygem-pg>=0:${PORTSDIR}/databases/rubygem-pg
.endif
-.if defined(WITH_MYSQL)
+.if ${PORT_OPTIONS:MMYSQL}
RUN_DEPENDS+= ruby-mysql>=0:${PORTSDIR}/databases/ruby-mysql
.endif
diff --git a/databases/sqlbuddy/Makefile b/databases/sqlbuddy/Makefile
index ea9669b69b03..091b595526a8 100644
--- a/databases/sqlbuddy/Makefile
+++ b/databases/sqlbuddy/Makefile
@@ -1,9 +1,5 @@
-# New ports collection makefile for: SQL Buddy
-# Date created: 17 August 2008
-# Whom: Chenguang LI
-#
+# Created by: Chenguang LI
# $FreeBSD$
-#
PORTNAME= sqlbuddy
PORTVERSION= 1.3.3
@@ -22,17 +18,17 @@ WRKSRC= ${WRKDIR}/${PORTNAME}
USE_PHP= ctype pcre session
WANT_PHP_WEB= yes
-OPTIONS+= MYSQL "MySQL support" on \
- SQLITE "SQLite support" off
+OPTIONS_DEFINE= MYSQL SQLITE
+OPTIONS_DEFAULT= SQLITE
SUB_FILES= pkg-message
-.include <bsd.port.pre.mk>
+.include <bsd.port.options.mk>
-.if defined(WITH_MYSQL)
+.if ${PORT_OPTIONS:MMYSQL}
USE_PHP+= mysql
.endif
-.if defined(WITH_SQLITE)
+.if ${PORT_OPTIONS:MSQLITE}
USE_PHP+= sqlite
.endif
@@ -53,4 +49,4 @@ do-install:
@${CHOWN} -R ${WWWOWN}:${WWWGRP} ${WWWDIR}
@${CAT} ${PKGMESSAGE}
-.include <bsd.port.post.mk>
+.include <bsd.port.mk>