blob: 8d67ae8add0489796f84a5802d21640574645706 (
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
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/mms-agent/mms-agent-3.3.0.183_p1.ebuild,v 1.1 2015/05/12 09:47:50 ultrabug Exp $
EAPI=5
inherit eutils user
MY_PV=${PV/_p/-}
DESCRIPTION="MongoDB MMS agents"
HOMEPAGE="http://mms.mongodb.com"
SRC_URI="
monitoring? (
amd64? ( https://mms.mongodb.com/download/agent/monitoring/mongodb-mms-monitoring-agent-${MY_PV}.linux_x86_64.tar.gz )
x86? ( https://mms.mongodb.com/download/agent/monitoring/mongodb-mms-monitoring-agent-${MY_PV}.linux_i386.tar.gz )
)
"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="+monitoring"
REQUIRED_USE="|| ( monitoring )"
RDEPEND="!<dev-db/mongodb-3.0.0[mms-agent]"
DEPEND="${RDEPEND}"
S=${WORKDIR}
pkg_setup() {
enewgroup mongodb
enewuser mongodb -1 -1 /var/lib/${PN} mongodb
}
src_install() {
if use amd64; then
local arch="x86_64"
else
local arch="i386"
fi
if use monitoring; then
local MY_PN="mms-monitoring-agent"
local MY_D="/opt/${MY_PN}"
pushd "${S}/mongodb-mms-monitoring-agent-${MY_PV}.linux_${arch}"
insinto ${MY_D}
doins mongodb-mms-monitoring-agent
fperms +x "${MY_D}"/mongodb-mms-monitoring-agent
insinto /etc
doins monitoring-agent.config
rm monitoring-agent.config
dosym /etc/monitoring-agent.config ${MY_D}/monitoring-agent.config
fowners -R mongodb:mongodb ${MY_D}
newinitd "${FILESDIR}/${MY_PN}.initd" ${MY_PN}
popd
fi
}
pkg_postinst() {
if use monitoring; then
elog "MMS Monitoring Agent configuration file :"
elog " /etc/monitoring-agent.config"
fi
}
|