summaryrefslogtreecommitdiff
path: root/databases/rubygem-rubyrep/Makefile
blob: 60d892138ba5de4229a5cac21333931ea45dbf9e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# New ports collection makefile for:	rubygem-rubyrep
# Date created:		2011-07-30
# Whom:			Steve Wills <swills@FreeBSD.org>
#
# $FreeBSD$
#

PORTNAME=		rubyrep
PORTVERSION=		1.2.0
CATEGORIES=		databases rubygems
MASTER_SITES=		RG

MAINTAINER=		ltning@anduin.net
COMMENT=		Multi-master replication and sync for MySQL and PostgreSQL

BUILD_DEPENDS=	rubygem-activesupport>=${PORTVERSION}:${PORTSDIR}/devel/rubygem-activesupport \
		rubygem-activerecord>=${PORTVERSION}:${PORTSDIR}/databases/rubygem-activerecord
RUN_DEPENDS+=	flog>=0:${PORTSDIR}/sysutils/flog \
		rubygem-activesupport>=${PORTVERSION}:${PORTSDIR}/devel/rubygem-activesupport \
		rubygem-activerecord>=${PORTVERSION}:${PORTSDIR}/databases/rubygem-activerecord

USE_RUBY=		yes
USE_RUBYGEMS=		yes
RUBYGEM_AUTOPLIST=	yes

USE_RC_SUBR=	rubyrep

OPTIONS =	MYSQL "Enable MySQL support" off \
		PGSQL "Enable PostgreSQL support" on

PLIST_FILES=	bin/rubyrep

.include <bsd.port.options.mk>

.if defined(WITH_PGSQL)
RUN_DEPENDS+=	rubygem-pg>=0:${PORTSDIR}/databases/rubygem-pg
.endif

.if defined(WITH_MYSQL)
RUN_DEPENDS+=	ruby-mysql>=0:${PORTSDIR}/databases/ruby-mysql
.endif

.include <bsd.port.mk>