From 12a93737d06684114d77ed8774c02fc495f9984b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20F=C3=B6rster?= Date: Wed, 7 May 2014 20:52:11 +0200 Subject: [PATCH] [sys-apps/lms] import from andy overlay (layman) --- sys-apps/lms/Manifest | 1 + sys-apps/lms/files/lms.initd | 24 +++++++++++++++++ sys-apps/lms/lms-8.0.0.7.ebuild | 48 +++++++++++++++++++++++++++++++++ 3 files changed, 73 insertions(+) create mode 100644 sys-apps/lms/Manifest create mode 100644 sys-apps/lms/files/lms.initd create mode 100644 sys-apps/lms/lms-8.0.0.7.ebuild diff --git a/sys-apps/lms/Manifest b/sys-apps/lms/Manifest new file mode 100644 index 0000000..511822c --- /dev/null +++ b/sys-apps/lms/Manifest @@ -0,0 +1 @@ +DIST lms-8.0.0-7.tar.gz 382509 SHA256 7077db6f2f381e67cb37565b20c40ff0c7d3f98f014e65622a4b4b66c2b1d637 SHA512 1b1a92466061518d939bf541aaf39553ee1d6eb27a9fdfcb4b6b39dd88179d7edc51b4b3cde20caba7c6d62d2485b969804a32e44cca9db60e5cc7fc89bbda5c WHIRLPOOL 3c9219105687a0ec2a8b29afbabbaf9d4321815280656a234115097b08562a6d18f67eaac1b140d933f77f80839e13ee399d704d459c5440207550b88cc396ad diff --git a/sys-apps/lms/files/lms.initd b/sys-apps/lms/files/lms.initd new file mode 100644 index 0000000..c5f48ec --- /dev/null +++ b/sys-apps/lms/files/lms.initd @@ -0,0 +1,24 @@ +#!/sbin/runscript +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +DAEMON="/usr/sbin/lms" + +depend() { + need localmount +} + +start() { + ebegin "Starting Intel® Local Manageability Service" + start-stop-daemon --start --exec $DAEMON \ + --pidfile /run/lms.pid + eend $? +} + +stop() { + ebegin "Stopping Intel® Local Manageability Service" + start-stop-daemon --stop --exec $DAEMON \ + --pidfile /run/lms.pid + eend $? +} diff --git a/sys-apps/lms/lms-8.0.0.7.ebuild b/sys-apps/lms/lms-8.0.0.7.ebuild new file mode 100644 index 0000000..bde89e2 --- /dev/null +++ b/sys-apps/lms/lms-8.0.0.7.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=4 + +inherit versionator linux-info + +MY_PV=$(replace_version_separator 3 '-' ) +MY_P="${PN}-${MY_PV}" + +DESCRIPTION="Local Manageability Service (LMS) allows access to Intel® Active Management" +HOMEPAGE="http://software.intel.com/en-us/articles/download-the-latest-intel-amt-open-source-drivers" +SRC_URI="http://software.intel.com/sites/default/files/${MY_P}.tar.gz" + +S=${WORKDIR}/${MY_P} + +LICENSE="Intel-SDP" +SLOT="0" +KEYWORDS="~x86 ~amd64" +IUSE="" + +DEPEND="" +RDEPEND="${DEPEND}" + +pkg_pretend() { + linux-info_pkg_setup + if ! linux_config_exists || ! linux_chkconfig_present INTEL_MEI + then + ewarn "This service requires Intel MEI driver in your kernel config" + ewarn + ewarn " Device Drivers -->" + ewarn " Misc devices -->" + ewarn " <*> Intel Management Engine Interface (Intel MEI)" + ewarn + ewarn "and recompile your kernel ..." + fi +} + +src_prepare() { + edos2unix README +} + +src_install() { + emake DESTDIR="${D}" install + dodoc README + newinitd "${FILESDIR}/lms.initd" lms +}