diff options
author | David Seifert <soap@gentoo.org> | 2017-12-01 21:16:03 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2017-12-01 23:15:15 +0100 |
commit | 57908978da5751551fd0ea948de2ad1603cd0a2b (patch) | |
tree | c795ad872a9a88529ba06270b226452b050b2a29 /x11-drivers | |
parent | dev-lang/python: 3.6.3-r1 stable on amd64, bug 363070 (diff) | |
download | gentoo-57908978da5751551fd0ea948de2ad1603cd0a2b.tar.gz gentoo-57908978da5751551fd0ea948de2ad1603cd0a2b.tar.bz2 gentoo-57908978da5751551fd0ea948de2ad1603cd0a2b.zip |
x11-drivers/afb-ucode: Port to EAPI 6
Package-Manager: Portage-2.3.16, Repoman-2.3.6
Diffstat (limited to 'x11-drivers')
-rw-r--r-- | x11-drivers/afb-ucode/Manifest | 2 | ||||
-rw-r--r-- | x11-drivers/afb-ucode/afb-ucode-1.3.11.ebuild | 17 |
2 files changed, 9 insertions, 10 deletions
diff --git a/x11-drivers/afb-ucode/Manifest b/x11-drivers/afb-ucode/Manifest index e6b565d89828..2e06084860d7 100644 --- a/x11-drivers/afb-ucode/Manifest +++ b/x11-drivers/afb-ucode/Manifest @@ -1 +1 @@ -DIST afb-ucode.tar.bz2 36421 SHA256 6ef1da6c6ff7a6ba07d7cf8c5b3677e353d59b8baea40af05ae0ee56d2befc84 SHA512 f90a9b04e7b01f432bffb3ebe78b6e283c1878512b2310df7a96f982f43aa1aabda952670efc4c4cd3a60ba008fdd4c57684672c7735fe902da88262a68417f3 WHIRLPOOL c6551b602766c815ec55ec7bc1e9bcc5ba62fcf3877a38bca5d4083e6c36cd43ac777bb28f917f1a3cfe3ba185710b800713e6c3adb789f60cf1fbcd888aa1d0 +DIST afb-ucode.tar.bz2 36421 BLAKE2B d59c7331da0ad3769259948dd958a3884aab8bf5f5e7c424382d16189ca4098f96b8d0851fc9407cce112669277e911f98c863aebe595392fa2b6a8d4207e22a SHA512 f90a9b04e7b01f432bffb3ebe78b6e283c1878512b2310df7a96f982f43aa1aabda952670efc4c4cd3a60ba008fdd4c57684672c7735fe902da88262a68417f3 diff --git a/x11-drivers/afb-ucode/afb-ucode-1.3.11.ebuild b/x11-drivers/afb-ucode/afb-ucode-1.3.11.ebuild index e7383bf96bf5..230d76f8d362 100644 --- a/x11-drivers/afb-ucode/afb-ucode-1.3.11.ebuild +++ b/x11-drivers/afb-ucode/afb-ucode-1.3.11.ebuild @@ -1,24 +1,23 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -inherit multilib +EAPI=6 -DESCRIPTION="Binary blob microcode for Elite3D framebuffers to use X, required by xf86-video-sunffb" +DESCRIPTION="Binary blob microcode for Elite3D framebuffers, required by xf86-video-sunffb" HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage" -SRC_URI="http://dlc.sun.com/osol/sparc-gfx/downloads/${PN}.tar.bz2 +SRC_URI=" + http://dlc.sun.com/osol/sparc-gfx/downloads/${PN}.tar.bz2 mirror://gentoo/${PN}.tar.bz2" -IUSE="" LICENSE="MIT" SLOT="0" KEYWORDS="-* sparc" +IUSE="" -RDEPEND="${DEPEND} - x11-misc/afbinit" +RDEPEND="x11-misc/afbinit" S="${WORKDIR}/${PN}" src_install() { - insinto /usr/$(get_libdir) - doins afb.ucode + dolib.a afb.ucode } |