diff options
author | Jakov Smolic <jakov.smolic@sartura.hr> | 2020-07-25 12:24:56 +0200 |
---|---|---|
committer | Marek Szuba <marecki@gentoo.org> | 2020-07-25 18:51:12 +0200 |
commit | 447d64844e411347a5c6e80c8879a1cc6246cfb5 (patch) | |
tree | bca6f9332d7329aaa871fefbc1037ee14aede4fd /net-libs | |
parent | media-tv/mythtv: remove old ebuild, metadata, and patch files (diff) | |
download | gentoo-447d64844e411347a5c6e80c8879a1cc6246cfb5.tar.gz gentoo-447d64844e411347a5c6e80c8879a1cc6246cfb5.tar.bz2 gentoo-447d64844e411347a5c6e80c8879a1cc6246cfb5.zip |
net-libs/biblesync: bump to 2.1.0
With some tweaks by marecki.
Closes: https://github.com/gentoo/gentoo/pull/16812
Package-Manager: Portage-2.3.99, Repoman-2.3.23
Signed-off-by: Jakov Smolic <jakov.smolic@sartura.hr>
Signed-off-by: Marek Szuba <marecki@gentoo.org>
Diffstat (limited to 'net-libs')
-rw-r--r-- | net-libs/biblesync/Manifest | 1 | ||||
-rw-r--r-- | net-libs/biblesync/biblesync-2.1.0.ebuild | 24 |
2 files changed, 25 insertions, 0 deletions
diff --git a/net-libs/biblesync/Manifest b/net-libs/biblesync/Manifest index 3cf2352acb15..13bdc243ba1a 100644 --- a/net-libs/biblesync/Manifest +++ b/net-libs/biblesync/Manifest @@ -1,2 +1,3 @@ DIST biblesync-1.1.2.tar.gz 86620 BLAKE2B 05ae9aa155a7cfd277e1f1a172ae3551c51a34cf09c7acae0821f08146179f4726173b8a26d4bac1a82aebab89f4ac105a73f7ef2a2d36b7939fe73d4e0749e1 SHA512 7725c8228e2dff79edaf065ff4d4816a6cf214d1d874817345cc4154142144bce479ca1ae871053886bff4f6610715a27bce81c25c2a636444d5873e93bfdc62 DIST biblesync-2.0.1.tar.gz 89139 BLAKE2B 065b65d3f1f288b8a5160b5feff56f152db47eb5c03596c192b904f384e11e24a3846cc6b154d351400c6e252188f126d37281278acfbd8b47321cfc25e1b0f3 SHA512 92c86a503dbcc22542e6f15d5fe1b5c282f209b9d4208e82bcf5207b05ed7ca33b6223a496f50108d7c28eab6e14ee14a37ccada6d0b08315ea31c0aeeae2508 +DIST biblesync-2.1.0.tar.gz 87868 BLAKE2B 2a136e4840f6f3cb3f03aa127adc978f9f5f189d48be198e4cb5b0ec654ae4a28f3fac30a10640d6fd2b1c3555c6bd88527e51e34287424f953cd599c5915521 SHA512 c6637954c0d9cbe9ba03048d92288d52c3675eaa9770749690222bd76d45ec7f138d67a4e416c33dbf9864f623f919f117aea58b1bb35feed8bcf59daad94e8e diff --git a/net-libs/biblesync/biblesync-2.1.0.ebuild b/net-libs/biblesync/biblesync-2.1.0.ebuild new file mode 100644 index 000000000000..b77fac3247e4 --- /dev/null +++ b/net-libs/biblesync/biblesync-2.1.0.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit cmake + +DESCRIPTION="A multicast protocol to support Bible software shared co-navigation" +HOMEPAGE="https://wiki.crosswire.org/BibleSync" +SRC_URI="https://github.com/karlkleinpaste/${PN}/releases/download/${PV}/${P}.tar.gz" + +LICENSE="public-domain" +SLOT="0" +KEYWORDS="~amd64" +IUSE="static" + +src_configure() { + local mycmakeargs=( + -DBUILD_SHARED_LIBS=$(usex !static) + # To prevent multilib-strict violations + -DLIBDIR="${EPREFIX}"/usr/$(get_libdir) + ) + cmake_src_configure +} |