aboutsummaryrefslogtreecommitdiff
path: root/databases/rubygem-rubyrep
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/rubygem-rubyrep
parent2e5b47a65eff26b3ed6a6cd1c685baac3441e246 (diff)
Notes
Diffstat (limited to 'databases/rubygem-rubyrep')
-rw-r--r--databases/rubygem-rubyrep/Makefile14
1 files changed, 5 insertions, 9 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