diff options
Diffstat (limited to 'sys-apps/salinfo/salinfo-1.2.ebuild')
-rw-r--r-- | sys-apps/salinfo/salinfo-1.2.ebuild | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/sys-apps/salinfo/salinfo-1.2.ebuild b/sys-apps/salinfo/salinfo-1.2.ebuild new file mode 100644 index 000000000000..2af829959d3b --- /dev/null +++ b/sys-apps/salinfo/salinfo-1.2.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="4" + +inherit toolchain-funcs eutils + +DESCRIPTION="decode Itanium SAL records (e.g. various hardware errors)" +HOMEPAGE="https://www.kernel.org/pub/linux/kernel/people/helgaas/" +SRC_URI="mirror://gentoo/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~ia64" +IUSE="" + +src_prepare() { + epatch "${FILESDIR}"/${P}-build.patch +} + +src_configure() { + tc-export CC +} + +src_install() { + default + rm -rf "${ED}"/etc/{rc.d,sysconfig} "${ED}"/var || die +} |