sys-libs/freeipmi: Bump to version 1.5.2

Package-Manager: portage-2.2.28
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
This commit is contained in:
Lars Wendler
2016-05-24 09:14:50 +02:00
parent 0c724ceae4
commit 7f99a9abc1
2 changed files with 93 additions and 0 deletions

View File

@@ -2,3 +2,4 @@ DIST freeipmi-1.2.2.tar.gz 3031730 SHA256 c8539a8225616e3e647b99903ef1243c5a6a4e
DIST freeipmi-1.4.3.tar.gz 3089282 SHA256 2d8701555f7fd5c3cdc0186e2e435d2ed7945047d22b66088f1e5417dcc35386 SHA512 88a2dec70696017407aac313628407200ee2c6600547fbff73c6880ae8d65cda166c8e00e0f4b7eaddc35f4376143b8fdb0b4ac284aba401c2592a95804e6cec WHIRLPOOL 36c05750f58d018768c82b2a9531892c8c933a7f7b92ea4513dd3527d27494993f82b59d621558bc2975585f51bc6b555b85e246bec1e79704947ac7591cf08b
DIST freeipmi-1.4.8.tar.gz 3185068 SHA256 9fa7e9df7f848445cf6035b26b4167a79711ecc05d8e96ab16bbec10b36e551b SHA512 3cd4acde402bbc945b007e31e7f8dad3ad4539d2cf00310e9168d7cec8024203a280c8ad91e3f08b86dfa9be536779969c5393c4523df2fe8eb904f765fcfc56 WHIRLPOOL ae4393fd36271238597f1602fbaaa6c975268291d26ae3303d9bb1b447cc40070ff4c66ac56a7c301f0544f69ab54eb49a9c6f81fdbdc83ab4d89f3f253b3701
DIST freeipmi-1.5.1.tar.gz 3239829 SHA256 47985ab902a62e23aba60e30a9fba5190599eecbc107d442e8b948a220ed1252 SHA512 61a6ff56e3f9675244c04edc87cca91b06cb2d4401b676cae832797b94e6450436272f4a2079c4faa9070d44c59809058402e639ee8480755aec2033ae65c575 WHIRLPOOL 8c18b08cd0e03d1077e3f9e1ab853592d5740a3f4c08df110f27e78f634bfa626fb352562718456f62893bd9d49c0346bab45964763668b61886947866d60f7b
DIST freeipmi-1.5.2.tar.gz 3244661 SHA256 734fa260e71d11e0a607f8acc731b9492f7f7b2f5476bf2ec29ff34ecde4ee75 SHA512 287dbf9c2320dbc5dd4f62fab3502bda893fa9fc52bbb4ba1b3739ac2f9ab902a2b5ddca59501b7ded228ba2dd0a38d431e743127bacff421c3ffb15a909b70c WHIRLPOOL 2aa5ccd807fd93897da74da0187ef6cc9985f7f8ee15fadd8a0bf90c1eb26c76381a818275cc0cca3c170b17a631bd042336689ed05c2ff451b8fa912adaea64

View File

@@ -0,0 +1,92 @@
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
AT_M4DIR="config"
inherit eutils multilib
DESCRIPTION="Provides Remote-Console and System Management Software as per IPMI v1.5/2.0"
HOMEPAGE="https://www.gnu.org/software/freeipmi/"
MY_P="${P/_/.}"
S="${WORKDIR}"/${MY_P}
[[ ${MY_P} == *.beta* ]] && ALPHA="-alpha"
SRC_URI="mirror://gnu${ALPHA}/${PN}/${MY_P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="debug nagios"
RDEPEND="dev-libs/libgcrypt:0"
DEPEND="${RDEPEND}
virtual/os-headers"
RDEPEND="${RDEPEND}
nagios? (
|| ( net-analyzer/icinga net-analyzer/nagios )
dev-lang/perl
)
sys-apps/openrc"
src_configure() {
local myeconfargs=(
$(use_enable debug)
--disable-static
--disable-init-scripts
--localstatedir=/var
)
econf "${myeconfargs[@]}"
}
# There are no tests
src_test() { :; }
src_install() {
default
# freeipmi by defaults install _all_ commands to /usr/sbin, but
# quite a few can be run remotely as standard user, so move them
# in /usr/bin afterwards.
dodir /usr/bin
for file in ipmi{detect,ping,power,console}; do
mv "${D}"/usr/{s,}bin/${file} || die
# The default install symlinks these commands to add a dash
# after the ipmi prefix; we repeat those after move for
# consistency.
rm "${D}"/usr/sbin/${file/ipmi/ipmi-}
dosym ${file} /usr/bin/${file/ipmi/ipmi-}
done
# Install the nagios plugin in its proper place, if desired
if use nagios; then
dodir /usr/$(get_libdir)/nagios/plugins
mv "${D}"/usr/share/doc/${PF}/contrib/nagios/nagios_ipmi_sensors.pl \
"${D}"/usr/$(get_libdir)/nagios/plugins/ || die
fperms 0755 /usr/$(get_libdir)/nagios/plugins/nagios_ipmi_sensors.pl
insinto /etc/icinga/conf.d
newins "${FILESDIR}"/freeipmi.icinga freeipmi-command.cfg
fi
dodoc AUTHORS ChangeLog* DISCLAIMER* NEWS README* TODO doc/*.txt
keepdir \
/var/cache/ipmimonitoringsdrcache \
/var/lib/freeipmi \
/var/log/ipmiconsole
# starting from version 1.2.0 the two daemons are similar enough
newinitd "${FILESDIR}"/bmc-watchdog.initd.4 ipmidetectd
newconfd "${FILESDIR}"/ipmidetectd.confd ipmidetectd
newinitd "${FILESDIR}"/bmc-watchdog.initd.4 bmc-watchdog
newconfd "${FILESDIR}"/bmc-watchdog.confd bmc-watchdog
newinitd "${FILESDIR}"/bmc-watchdog.initd.4 ipmiseld
newconfd "${FILESDIR}"/ipmiseld.confd ipmiseld
}