You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
# Copyright 1999-2017 Gentoo Foundation
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
|
|
|
EAPI=6
|
|
|
|
inherit autotools systemd
|
|
|
|
|
|
|
|
DESCRIPTION="IPMI Management Utilities"
|
|
|
|
HOMEPAGE="http://ipmiutil.sourceforge.net/"
|
|
|
|
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
|
|
|
|
|
|
|
|
LICENSE="BSD"
|
|
|
|
SLOT="0"
|
|
|
|
KEYWORDS="amd64 ~hppa x86"
|
|
|
|
|
|
|
|
RDEPEND=">=dev-libs/openssl-1:0="
|
|
|
|
DEPEND="${RDEPEND}
|
|
|
|
virtual/os-headers"
|
|
|
|
|
|
|
|
PATCHES=(
|
|
|
|
"${FILESDIR}"/${PN}-2.9.8-flags.patch
|
|
|
|
"${FILESDIR}"/${PN}-2.9.9-lib_symlink.patch
|
|
|
|
)
|
|
|
|
|
|
|
|
src_prepare() {
|
|
|
|
default
|
|
|
|
|
|
|
|
sed -i -e 's|-O2 -g|$(CFLAGS)|g;s|-g -O2|$(CFLAGS)|g' util/Makefile.am* || die
|
|
|
|
sed -i -e 's|which rpm |which we_are_gentoo_rpm_is_a_guest |' configure.ac || die
|
|
|
|
|
|
|
|
eautoreconf
|
|
|
|
}
|
|
|
|
|
|
|
|
src_configure() {
|
|
|
|
econf --disable-systemd --enable-sha256
|
|
|
|
}
|
|
|
|
|
|
|
|
src_compile() {
|
|
|
|
# Ulgy workaround. Upstream is misusing the make system here
|
|
|
|
# and it doesn't even work.
|
|
|
|
# Please check on each bump if this workaround is still required.
|
|
|
|
pushd lib/lanplus &>/dev/null || die
|
|
|
|
emake
|
|
|
|
cp libipmi_lanplus.a .. || die
|
|
|
|
popd &>/dev/null || die
|
|
|
|
|
|
|
|
emake
|
|
|
|
}
|
|
|
|
|
|
|
|
src_install() {
|
|
|
|
emake DESTDIR="${D}" sysdto="${D}/$(systemd_get_systemunitdir)" install
|
|
|
|
dodoc -r AUTHORS ChangeLog NEWS README TODO doc/UserGuide
|
|
|
|
|
|
|
|
# Init scripts are only for Fedora
|
|
|
|
rm -r "${ED%/}"/etc/init.d || die 'remove initscripts failed'
|
|
|
|
}
|