net-libs/biblesync: Version bump for xiphos
authorChris Reffett <creffett@gentoo.org>
Wed, 20 Jun 2018 00:42:43 +0000 (20:42 -0400)
committerChris Reffett <creffett@gentoo.org>
Wed, 20 Jun 2018 01:21:24 +0000 (21:21 -0400)
Package-Manager: Portage-2.3.40, Repoman-2.3.9

net-libs/biblesync/Manifest
net-libs/biblesync/biblesync-2.0.1.ebuild [new file with mode: 0644]

index 673f6e6b27620cfbace7b6cf8b8c1efd56cfcc28..3cf2352acb15345d57006e0025cbfa4f064ca687 100644 (file)
@@ -1 +1,2 @@
 DIST biblesync-1.1.2.tar.gz 86620 BLAKE2B 05ae9aa155a7cfd277e1f1a172ae3551c51a34cf09c7acae0821f08146179f4726173b8a26d4bac1a82aebab89f4ac105a73f7ef2a2d36b7939fe73d4e0749e1 SHA512 7725c8228e2dff79edaf065ff4d4816a6cf214d1d874817345cc4154142144bce479ca1ae871053886bff4f6610715a27bce81c25c2a636444d5873e93bfdc62
+DIST biblesync-2.0.1.tar.gz 89139 BLAKE2B 065b65d3f1f288b8a5160b5feff56f152db47eb5c03596c192b904f384e11e24a3846cc6b154d351400c6e252188f126d37281278acfbd8b47321cfc25e1b0f3 SHA512 92c86a503dbcc22542e6f15d5fe1b5c282f209b9d4208e82bcf5207b05ed7ca33b6223a496f50108d7c28eab6e14ee14a37ccada6d0b08315ea31c0aeeae2508
diff --git a/net-libs/biblesync/biblesync-2.0.1.ebuild b/net-libs/biblesync/biblesync-2.0.1.ebuild
new file mode 100644 (file)
index 0000000..9fae6d0
--- /dev/null
@@ -0,0 +1,25 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit cmake-utils
+
+DESCRIPTION="A multicast protocol to support Bible software shared co-navigation"
+HOMEPAGE="http://www.crosswire.org/wiki/BibleSync"
+SRC_URI="https://github.com/karlkleinpaste/biblesync/releases/download/${PV}/${P}.tar.gz"
+
+LICENSE="public-domain"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="static"
+
+DEPEND="dev-util/cmake"
+RDEPEND=""
+
+src_configure() {
+       local mycmakeargs=(
+               "-DBUILD_SHARED_LIBS=$(usex !static)"
+               "-DLIBDIR=/usr/$(get_libdir)"
+       )
+       cmake-utils_src_configure
+}