diff options
author | Bernard Cafarelli <voyageur@gentoo.org> | 2021-05-31 13:35:59 +0200 |
---|---|---|
committer | Bernard Cafarelli <voyageur@gentoo.org> | 2021-05-31 13:36:10 +0200 |
commit | d84661c848576531776360b82ac7ccecca3b1912 (patch) | |
tree | 4f359607cb574df231168186711874588bb5be45 /net-libs/librsync/librsync-2.3.2.ebuild | |
parent | app-portage/nattka: keyword for riscv (diff) | |
download | gentoo-d84661c848576531776360b82ac7ccecca3b1912.tar.gz gentoo-d84661c848576531776360b82ac7ccecca3b1912.tar.bz2 gentoo-d84661c848576531776360b82ac7ccecca3b1912.zip |
net-libs/librsync: 2.3.2 bump, migrate to cmake eclass
Package-Manager: Portage-3.0.19, Repoman-3.0.3
Signed-off-by: Bernard Cafarelli <voyageur@gentoo.org>
Diffstat (limited to 'net-libs/librsync/librsync-2.3.2.ebuild')
-rw-r--r-- | net-libs/librsync/librsync-2.3.2.ebuild | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/net-libs/librsync/librsync-2.3.2.ebuild b/net-libs/librsync/librsync-2.3.2.ebuild new file mode 100644 index 000000000000..ac6abbb3ceaf --- /dev/null +++ b/net-libs/librsync/librsync-2.3.2.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit cmake + +DESCRIPTION="Remote delta-compression library" +HOMEPAGE="https://librsync.github.io/" +SRC_URI="https://github.com/librsync/librsync/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0/2.2" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos" + +RDEPEND=" + dev-libs/popt +" +DEPEND="${RDEPEND}" + +src_configure() { + local mycmakeargs=( + -DUSE_LIBB2=OFF + ) + + cmake_src_configure +} |