diff options
author | Andrew Savchenko <bircoph@gentoo.org> | 2020-05-06 19:21:19 +0300 |
---|---|---|
committer | Andrew Savchenko <bircoph@gentoo.org> | 2020-05-06 19:25:11 +0300 |
commit | f8d4c4cc654ddb4162b7b2287ad2f07693937268 (patch) | |
tree | e15dfbb15cd3dc7c8596455deee9c3f6aa5fea4c /dev-libs | |
parent | dev-libs/libclsync: fix underlinking (diff) | |
download | gentoo-f8d4c4cc654ddb4162b7b2287ad2f07693937268.tar.gz gentoo-f8d4c4cc654ddb4162b7b2287ad2f07693937268.tar.bz2 gentoo-f8d4c4cc654ddb4162b7b2287ad2f07693937268.zip |
dev-libs/libclsync: drop old
Package-Manager: Portage-2.3.82, Repoman-2.3.20
Signed-off-by: Andrew Savchenko <bircoph@gentoo.org>
Diffstat (limited to 'dev-libs')
-rw-r--r-- | dev-libs/libclsync/libclsync-0.4.4.ebuild | 73 |
1 files changed, 0 insertions, 73 deletions
diff --git a/dev-libs/libclsync/libclsync-0.4.4.ebuild b/dev-libs/libclsync/libclsync-0.4.4.ebuild deleted file mode 100644 index d3507cdd0db8..000000000000 --- a/dev-libs/libclsync/libclsync-0.4.4.ebuild +++ /dev/null @@ -1,73 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -MY_PN=${PN#lib} -MY_P="${MY_PN}-${PV}" - -inherit autotools - -DESCRIPTION="Control and monitoring library for clsync" -HOMEPAGE="http://ut.mephi.ru/oss/clsync https://github.com/clsync/clsync" -SRC_URI="https://github.com/clsync/${MY_PN}/archive/v${PV}.tar.gz -> ${MY_P}.tar.gz" -LICENSE="GPL-3+" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="debug extra-debug extra-hardened hardened static-libs" -S="${WORKDIR}/${MY_P}" - -REQUIRED_USE=" - extra-debug? ( debug ) - extra-hardened? ( hardened ) -" - -BDEPEND="virtual/pkgconfig" -RDEPEND="=app-doc/clsync-docs-0.4*" - -src_prepare() { - eapply_user - eautoreconf -} - -src_configure() { - local harden_level=0 - use hardened && harden_level=1 - use extra-hardened && harden_level=2 - - local debug_level=0 - use debug && debug_level=1 - use extra-debug && debug_level=2 - - econf \ - --enable-socket-library \ - --disable-clsync \ - --enable-debug=${debug_level} \ - --enable-paranoid=${harden_level} \ - --without-bsm \ - --without-kqueue \ - --disable-capabilities \ - --disable-cluster \ - --enable-socket \ - --disable-highload-locks \ - --disable-unshare \ - --disable-seccomp \ - --without-libcgroup \ - --without-gio \ - --with-inotify=native \ - --without-mhash -} - -src_install() { - emake DESTDIR="${D}" install - find "${ED}" -name "*.la" -delete - use static-libs || find "${ED}" -name "*.a" -delete || die "failed to remove static libs" - - # docs go into clsync-docs - rm -rf "${ED}/usr/share/doc" || die -} - -pkg_postinst() { - einfo "clsync instances you are going to use _must_ be compiled" - einfo "with control-socket support" -} |