From: Amy Liffey Date: Fri, 4 Aug 2017 18:56:57 +0000 (+0200) Subject: dev-libs/dclog: eapi bump to 6, add ~amd64 keyword X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=18981397fa1b81ad5f626ab5322bb16a0ef8ed0c;p=gentoo.git dev-libs/dclog: eapi bump to 6, add ~amd64 keyword Package-Manager: Portage-2.3.6, Repoman-2.3.1 --- diff --git a/dev-libs/dclog/dclog-1.1.1-r1.ebuild b/dev-libs/dclog/dclog-1.1.1-r2.ebuild similarity index 68% rename from dev-libs/dclog/dclog-1.1.1-r1.ebuild rename to dev-libs/dclog/dclog-1.1.1-r2.ebuild index d1622368072c..13c5550fb15b 100644 --- a/dev-libs/dclog/dclog-1.1.1-r1.ebuild +++ b/dev-libs/dclog/dclog-1.1.1-r2.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI="2" +EAPI=6 inherit toolchain-funcs @@ -11,19 +11,20 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" LICENSE="BSD" SLOT="0" -KEYWORDS="~x86" +KEYWORDS="~amd64 ~x86" IUSE="" src_prepare() { sed -i Makefile -e '/ -o /s|${CFLAGS}|& ${LDFLAGS}|g' || die "sed Makefile" + default } src_compile() { - emake CC=$(tc-getCC) all || die "emake failed" + emake CC=$(tc-getCC) all } src_install() { - emake DESTDIR="${D}" PREFIX=/usr install || die "install failed" + emake DESTDIR="${D}" PREFIX=/usr install dodoc VERSION - dohtml docs/html/* + dodoc docs/html/* }