diff options
author | Zero_Chaos <zerochaos@gentoo.org> | 2018-07-04 11:47:30 -0400 |
---|---|---|
committer | Zero_Chaos <zerochaos@gentoo.org> | 2018-07-04 11:47:30 -0400 |
commit | 3a15ff8bae4da89f049f23f88fe4a33837d2b5b2 (patch) | |
tree | 544d6c7110f7492ed5a85293aea901b8483ff555 /sys-boot/mokutil/mokutil-0.3.0_p20170404.ebuild | |
parent | sys-kernel/gentoo-sources: Linux patch 4.4.139 (diff) | |
download | gentoo-3a15ff8bae4da89f049f23f88fe4a33837d2b5b2.tar.gz gentoo-3a15ff8bae4da89f049f23f88fe4a33837d2b5b2.tar.bz2 gentoo-3a15ff8bae4da89f049f23f88fe4a33837d2b5b2.zip |
sys-boot/mokutil: initial commit
this is a tool that works with shim to allow secure booting with UEFI
Package-Manager: Portage-2.3.41, Repoman-2.3.9
Diffstat (limited to 'sys-boot/mokutil/mokutil-0.3.0_p20170404.ebuild')
-rw-r--r-- | sys-boot/mokutil/mokutil-0.3.0_p20170404.ebuild | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/sys-boot/mokutil/mokutil-0.3.0_p20170404.ebuild b/sys-boot/mokutil/mokutil-0.3.0_p20170404.ebuild new file mode 100644 index 000000000000..d50f17eba469 --- /dev/null +++ b/sys-boot/mokutil/mokutil-0.3.0_p20170404.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit autotools + +DESCRIPTION="The utility to manipulate machines owner keys which managed in shim" +HOMEPAGE="https://github.com/lcp/mokutil" +GIT_HASH="e19adc575c1f9d8f08b7fbc594a0887ace63f83f" +SRC_URI="https://github.com/lcp/mokutil/archive/${GIT_HASH}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="dev-libs/openssl:= + sys-libs/efivar:=" +RDEPEND="${DEPEND}" + +S="${WORKDIR}/${PN}-${GIT_HASH}" + +src_prepare() { + default + eautoreconf +} |