From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 74A1313835A for ; Tue, 8 Sep 2020 03:13:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7EF8CE083E; Tue, 8 Sep 2020 03:13:18 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 99B83E083E for ; Tue, 8 Sep 2020 03:13:17 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0060333BDC5 for ; Tue, 8 Sep 2020 03:13:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 80929348 for ; Tue, 8 Sep 2020 03:13:14 +0000 (UTC) From: "Azael Reyes" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Azael Reyes" Message-ID: <1599534774.796eebd2c1fe3c7ce99b67ec3c8abfa61b27ca2f.AzaelReyes@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: app-misc/apidb/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-misc/apidb/apidb-5.0.0_alpha.ebuild X-VCS-Directories: app-misc/apidb/ X-VCS-Committer: AzaelReyes X-VCS-Committer-Name: Azael Reyes X-VCS-Revision: 796eebd2c1fe3c7ce99b67ec3c8abfa61b27ca2f X-VCS-Branch: dev Date: Tue, 8 Sep 2020 03:13:14 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 319757fb-d92d-421b-963e-7776eeefd561 X-Archives-Hash: 4dc04c488fdb0ac0a18a302f7cef3649 commit: 796eebd2c1fe3c7ce99b67ec3c8abfa61b27ca2f Author: Azael Reyes gmail com> AuthorDate: Tue Sep 8 03:12:54 2020 +0000 Commit: Azael Reyes gmail com> CommitDate: Tue Sep 8 03:12:54 2020 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=796eebd2 app-misc/apidb: adding use for postgresq. Signed-off-by: Azael Reyes gmail.com> Package-Manager: Portage-2.3.103, Repoman-2.3.23 Signed-off-by: Azael Reyes gmail.com> app-misc/apidb/apidb-5.0.0_alpha.ebuild | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/app-misc/apidb/apidb-5.0.0_alpha.ebuild b/app-misc/apidb/apidb-5.0.0_alpha.ebuild index 8c65f8d..c532b3c 100644 --- a/app-misc/apidb/apidb-5.0.0_alpha.ebuild +++ b/app-misc/apidb/apidb-5.0.0_alpha.ebuild @@ -45,6 +45,12 @@ src_prepare() { } src_configure() { - local mycmakeargs=(-DAPIDB_VERSION_STAGE=alpha -DAPIDB_MARIADB=Y -DPLATFORM=Gentoo -DCOMPONENT=FULL) + local mycmakeargs=(-DAPIDB_VERSION_STAGE=alpha -DPLATFORM=Gentoo -DCOMPONENT=FULL) + if use mariadb ;then + mycmakeargs+=(-DAPIDB_MARIADB=Y) + fi + if use postgresql ;then + mycmakeargs+=(-DAPIDB_POSTGRESQL=Y) + fi cmake_src_configure }