dev-scheme/termite: eapi bump 6, add ~amd64 keyword
authorAmy Liffey <amynka@gentoo.org>
Thu, 3 Aug 2017 09:16:31 +0000 (11:16 +0200)
committerAmy Liffey <amynka@gentoo.org>
Thu, 3 Aug 2017 09:17:17 +0000 (11:17 +0200)
Package-Manager: Portage-2.3.6, Repoman-2.3.1

dev-scheme/termite/termite-0.15.ebuild

index 3053655da93a155d9352f4be7903d858fbfb990a..9fca8b50295b12bc4c19207bed27a50ab235df27 100644 (file)
@@ -1,9 +1,7 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=3
-
-inherit multilib
+EAPI=6
 
 DESCRIPTION="Erlang-style concurrency for Gambit Scheme"
 HOMEPAGE="https://code.google.com/p/termite/"
@@ -11,7 +9,7 @@ SRC_URI="https://termite.googlecode.com/files/${PN}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~x86"
+KEYWORDS="~amd64 ~x86"
 IUSE=""
 
 DEPEND="dev-scheme/gambit"
@@ -20,13 +18,13 @@ RDEPEND="${DEPEND}"
 S="${WORKDIR}/${PN}"
 
 src_install() {
-       dobin tsi || die "dobin failed"
-       dodoc README CHANGELOG || die "dodoc failed"
+       dobin tsi
+       dodoc README CHANGELOG
 
        insinto /usr/$(get_libdir)/${PN}/
-       doins *.scm || die "doins failed"
-       doins -r otp || die "doins failed"
+       doins *.scm
+       doins -r otp
 
        insinto /usr/share/${PN}
-       doins -r examples test benchmarks || die "doins failed"
+       doins -r examples test benchmarks
 }