From owner-svn-ports-all@freebsd.org Fri Dec 23 10:57:40 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 49BE0C8DA34; Fri, 23 Dec 2016 10:57:40 +0000 (UTC) (envelope-from tz@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1116312B2; Fri, 23 Dec 2016 10:57:39 +0000 (UTC) (envelope-from tz@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uBNAvdOf087531; Fri, 23 Dec 2016 10:57:39 GMT (envelope-from tz@FreeBSD.org) Received: (from tz@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uBNAvdNX087530; Fri, 23 Dec 2016 10:57:39 GMT (envelope-from tz@FreeBSD.org) Message-Id: <201612231057.uBNAvdNX087530@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tz set sender to tz@FreeBSD.org using -f From: Torsten Zuehlsdorff Date: Fri, 23 Dec 2016 10:57:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r429247 - head/databases/rubygem-activerecord X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Dec 2016 10:57:40 -0000 Author: tz Date: Fri Dec 23 10:57:39 2016 New Revision: 429247 URL: https://svnweb.freebsd.org/changeset/ports/429247 Log: databases/rubygem-activerecord: Fix optional RUN_DEPENDS for MYSQL option Fix a build problem when MYSQL option is used. Since the option is not default there is no PORTREVISION bump. PR: 214667 Submitted by: Gerrit Beine Approved by: mentors (implicit) Modified: head/databases/rubygem-activerecord/Makefile Modified: head/databases/rubygem-activerecord/Makefile ============================================================================== --- head/databases/rubygem-activerecord/Makefile Fri Dec 23 10:54:22 2016 (r429246) +++ head/databases/rubygem-activerecord/Makefile Fri Dec 23 10:57:39 2016 (r429247) @@ -28,7 +28,7 @@ SQLITE3_DESC= Use native SQLite3 binding GEM_ENV+= LANG=en_US.UTF-8 -MYSQL_RUN_DEPENDS= ${RUBY_PKGNAMEPREFIX}mysql>=0:databases/ruby-mysql +MYSQL_RUN_DEPENDS= rubygem-mysql2>=0:databases/rubygem-mysql2 PGSQL_RUN_DEPENDS= rubygem-pg>=0:databases/rubygem-pg SQLITE3_RUN_DEPENDS= rubygem-sqlite3>=1.2.1:databases/rubygem-sqlite3