blob: 84da1ffdf6a822186e6b61ffd93b821a44ba1734 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libclsync/libclsync-0.4.ebuild,v 1.1 2015/02/11 03:35:23 bircoph Exp $
EAPI=5
MY_PN=${PN#lib}
MY_P="${MY_PN}-${PV}"
if [[ ${PV} == "9999" ]] ; then
inherit git-r3
EGIT_REPO_URI="https://github.com/xaionaro/${MY_PN}.git"
else
SRC_URI="https://github.com/xaionaro/${MY_PN}/archive/v${PV}.tar.gz -> ${MY_P}.tar.gz"
KEYWORDS="~amd64 ~x86"
S="${WORKDIR}/${MY_P}"
fi
inherit autotools eutils
DESCRIPTION="Control and monitoring library for clsync"
HOMEPAGE="http://ut.mephi.ru/oss/clsync https://github.com/xaionaro/clsync"
LICENSE="GPL-3+"
SLOT="0"
IUSE="debug doc extra-hardened hardened static-libs"
REQUIRED_USE="
extra-hardened? ( hardened )
"
DEPEND="
virtual/pkgconfig
doc? ( ~app-doc/clsync-docs-${PV} )
"
src_prepare() {
epatch "${FILESDIR}/${P}-version.patch"
eautoreconf
}
src_configure() {
local harden_level=0
use hardened && harden_level=1
use extra-hardened && harden_level=2
econf \
--docdir="${EPREFIX}/usr/share/doc/${PF}" \
--enable-socket-library \
--disable-clsync \
--enable-paranoid=${harden_level} \
--without-bsm \
--without-kqueue \
--disable-cluster \
--enable-socket \
$(use_enable debug) \
--disable-highload-locks \
--without-capabilities \
--without-libcgroup \
--without-gio \
--with-inotify=native \
--without-mhash \
--without-libseccomp
}
src_install() {
emake DESTDIR="${D}" install
prune_libtool_files
use static-libs || find "${ED}" -name "*.a" -delete || die "failed to remove static libs"
# remove unwanted docs
rm "${ED}/usr/share/doc/${PF}"/{LICENSE,TODO} || die "failed to cleanup docs"
rm -r "${ED}/usr/share/doc/${PF}/examples" || die "failed to remove examples"
}
pkg_postinst() {
einfo "clsync instances you are going to use _must_ be compiled"
einfo "with control-socket support"
}
|