Fixed repo URI in nvramtool ebuild. Tested and working.

This commit is contained in:
kuratsune 2018-06-03 10:52:26 +02:00
parent 9450e3ed46
commit 23f401ff7e
2 changed files with 10 additions and 14 deletions

View File

@ -1 +1 @@
EBUILD nvramtool-9999.ebuild 580 BLAKE2B 9bde9847ce69c744bb8f6f2cf967db0d90d3863faff3dbb65910b8e63bc81c01719167f28487665e3b9c17cb8f34d3b78206a338a12e957c32a3a3eb7d52a0b6 SHA512 d1d87f3971d9408e779164a299b912a43999691ed4cfae4b4e49da93d4e872cbf82c7217841e48981b30418a0bbe2b1fd0ffa26f6ed99025beb800e5945109da
EBUILD nvramtool-9999.ebuild 599 BLAKE2B d5f190c376a4301db9ac9b08305c27b085679a6864fec7ea0ef8eb46fa72e172941b67bed2de569f7ddbdd970b6efb206f5a9dc359499617817f94d4870b5412 SHA512 d490f4f1ee1ad513aea05e2d9ab37dfc8c0a9b1f9aa20709131ab658510de8ce3714545d3547eb351e08d24545ccddd2a72e14157ec03d4a5728a92a4660873b

View File

@ -2,26 +2,22 @@
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit subversion eutils
EAPI=6
DESCRIPTION="nvramtool is a utility for reading/writing/displaying LinuxBIOS parameters."
inherit git-r3
DESCRIPTION="nvramtool is a utility for reading/writing/displaying Coreboot parameters."
HOMEPAGE="http://www.coreboot.org/Nvramtool"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS=""
IUSE=""
KEYWORDS="~x86 ~amd64"
SRC_URI=""
ESVN_REPO_URI="svn://coreboot.org/repos/trunk/util/${PN}"
EGIT_REPO_URI="https://review.coreboot.org/coreboot.git"
EGIT_BRANCH="master"
S=${WORKDIR}/${PN}
src_install() {
dobin ${PN} || die "dobin failed"
doman ${PN}.1
}
S=${WORKDIR}/${P}/util/${PN}
pkg_postinst() {
ewarn "The machine must be booted with LinuxBIOS to use this program."
ewarn "The machine must be booted with Coreboot or derivatives to use this program. /dev/mem device should also exists. (enabled in kernel)"
}