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 D6A471396DA for ; Thu, 2 Nov 2017 03:20:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 138EF2BC0CA; Thu, 2 Nov 2017 03:20:11 +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 DF520E0DF9 for ; Thu, 2 Nov 2017 03:20:10 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 EA1E433BF01 for ; Thu, 2 Nov 2017 03:20:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 87FFA91DE for ; Thu, 2 Nov 2017 03:19:59 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1509592777.79838b33f1601376b91619946571004aa16be3a1.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-biology/bamtools/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-biology/bamtools/bamtools-9999.ebuild X-VCS-Directories: sci-biology/bamtools/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 79838b33f1601376b91619946571004aa16be3a1 X-VCS-Branch: master Date: Thu, 2 Nov 2017 03:19:59 +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-Archives-Salt: ff2072f9-88dc-45ee-9de5-e19c76eb5d95 X-Archives-Hash: 9c2015b040d5ef79990aa215342dd638 commit: 79838b33f1601376b91619946571004aa16be3a1 Author: David Seifert gentoo org> AuthorDate: Thu Nov 2 03:19:37 2017 +0000 Commit: David Seifert gentoo org> CommitDate: Thu Nov 2 03:19:37 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79838b33 sci-biology/bamtools: Add live ebuild Package-Manager: Portage-2.3.11, Repoman-2.3.3 sci-biology/bamtools/bamtools-9999.ebuild | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/sci-biology/bamtools/bamtools-9999.ebuild b/sci-biology/bamtools/bamtools-9999.ebuild new file mode 100644 index 00000000000..e6daa826202 --- /dev/null +++ b/sci-biology/bamtools/bamtools-9999.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit cmake-utils + +DESCRIPTION="A programmer's API and an end-user's toolkit for handling BAM files" +HOMEPAGE="https://github.com/pezmaster31/bamtools" + +if [[ ${PV} == *9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/pezmaster31/bamtools.git" +else + SRC_URI="https://github.com/pezmaster31/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~x86" +fi + +LICENSE="MIT" +SLOT="0/${PV}" # no stable ABI yet + +RDEPEND=" + >=dev-libs/jsoncpp-1.8.0:= + sys-libs/zlib:=" +DEPEND="${RDEPEND}" + +mycmakeargs=( -DBUILD_SHARED_LIBS=ON )