diff options
author | David Seifert <soap@gentoo.org> | 2017-12-02 16:11:14 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2017-12-02 17:14:44 +0100 |
commit | 87d2eb716c31062361cf158a49a6be5c37d0f292 (patch) | |
tree | 027fe7aae7632bef5c0e87dc9700d9c9725810b9 /sys-apps/superiotool/superiotool-99999999.ebuild | |
parent | sys-apps/syscriptor: Port to EAPI 6 (diff) | |
download | gentoo-87d2eb716c31062361cf158a49a6be5c37d0f292.tar.gz gentoo-87d2eb716c31062361cf158a49a6be5c37d0f292.tar.bz2 gentoo-87d2eb716c31062361cf158a49a6be5c37d0f292.zip |
sys-apps/superiotool: Port to EAPI 6
Package-Manager: Portage-2.3.16, Repoman-2.3.6
Diffstat (limited to 'sys-apps/superiotool/superiotool-99999999.ebuild')
-rw-r--r-- | sys-apps/superiotool/superiotool-99999999.ebuild | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/sys-apps/superiotool/superiotool-99999999.ebuild b/sys-apps/superiotool/superiotool-99999999.ebuild index 9cd57fadcfca..83db272b25ab 100644 --- a/sys-apps/superiotool/superiotool-99999999.ebuild +++ b/sys-apps/superiotool/superiotool-99999999.ebuild @@ -1,14 +1,13 @@ -# Copyright 1999-2011 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI="4" +EAPI=6 -inherit toolchain-funcs eutils +inherit toolchain-funcs -if [[ ${PV} == "99999999" ]] ; then +if [[ ${PV} == *99999999 ]] ; then ESVN_REPO_URI="svn://coreboot.org/coreboot/trunk/util/${PN}" inherit subversion - SRC_URI="" else SRC_URI="mirror://gentoo/${P}.tar.xz" KEYWORDS="~amd64 ~x86" @@ -26,6 +25,8 @@ DEPEND="${RDEPEND} app-arch/xz-utils" src_prepare() { + default + sed -i \ -e 's:-Werror ::' \ -e 's:-O2 ::' \ @@ -40,8 +41,3 @@ src_compile() { CC="$(tc-getCC)" \ SVNDEF="-D'SUPERIOTOOL_VERSION=\"${ESVN_WC_REVISION}\"'" } - -src_install() { - emake install DESTDIR="${D}" - dodoc README -} |