diff options
author | Bernard Cafarelli <voyageur@gentoo.org> | 2021-11-06 23:37:33 +0100 |
---|---|---|
committer | Bernard Cafarelli <voyageur@gentoo.org> | 2021-11-06 23:37:33 +0100 |
commit | c6a1afa8fd2c72d3bbf95fd6cad44faaf75b970b (patch) | |
tree | 4ee6b2e0ce12a494988a750a61648be27402f846 /net-misc/csync | |
parent | net-misc/csync: sftp requires libssh with USE=sftp (diff) | |
download | gentoo-c6a1afa8fd2c72d3bbf95fd6cad44faaf75b970b.tar.gz gentoo-c6a1afa8fd2c72d3bbf95fd6cad44faaf75b970b.tar.bz2 gentoo-c6a1afa8fd2c72d3bbf95fd6cad44faaf75b970b.zip |
net-misc/csync: drop old
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Bernard Cafarelli <voyageur@gentoo.org>
Diffstat (limited to 'net-misc/csync')
-rw-r--r-- | net-misc/csync/csync-0.50.0-r1.ebuild | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/net-misc/csync/csync-0.50.0-r1.ebuild b/net-misc/csync/csync-0.50.0-r1.ebuild deleted file mode 100644 index 4439f480f684..000000000000 --- a/net-misc/csync/csync-0.50.0-r1.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils - -DESCRIPTION="lightweight file synchronizer utility" -HOMEPAGE="https://www.csync.org/" -SRC_URI="https://open.cryptomilk.org/attachments/download/27/${P}.tar.xz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="doc iconv samba +sftp test" -RESTRICT="!test? ( test )" - -RDEPEND=">=dev-db/sqlite-3.4:3 - net-libs/neon[ssl] - iconv? ( virtual/libiconv ) - samba? ( >=net-fs/samba-3.5 ) - sftp? ( >=net-libs/libssh-0.5 ) - !net-misc/ocsync" -DEPEND="${RDEPEND} - app-text/asciidoc - doc? ( app-doc/doxygen ) - test? ( dev-util/cmocka )" - -PATCHES=( "${FILESDIR}"/${P}-gcc_5_and_8.patch ) -src_prepare() { - cmake-utils_src_prepare - - # proper docdir - sed -e "s:/doc/${PN}:/doc/${PF}:" \ - -i doc/CMakeLists.txt || die -} - -src_configure() { - local mycmakeargs=( - -DSYSCONF_INSTALL_DIR="${EPREFIX}"/etc - -DWITH_ICONV="$(usex iconv)" - -DUNIT_TESTING="$(usex test)" - $(cmake-utils_use_find_package doc Doxygen) - $(cmake-utils_use_find_package samba SMBClient) - $(cmake-utils_use_find_package sftp LibSSH) - ) - cmake-utils_src_configure -} |