From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A0640138330 for ; Tue, 29 May 2018 20:10:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8743AE081B; Tue, 29 May 2018 20:10:39 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5E2F4E081A for ; Tue, 29 May 2018 20:10:39 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BCA38335C60 for ; Tue, 29 May 2018 20:10:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 236DA2B5 for ; Tue, 29 May 2018 20:10:34 +0000 (UTC) From: "Aaron Bauman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Bauman" Message-ID: <1527624607.e117ee0627f56429147540c5d0ecbb21ca45af74.bman@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/tokyodystopia/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/tokyodystopia/tokyodystopia-0.9.15.ebuild X-VCS-Directories: app-text/tokyodystopia/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: e117ee0627f56429147540c5d0ecbb21ca45af74 X-VCS-Branch: master Date: Tue, 29 May 2018 20:10:34 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: a4d115c1-2acf-4563-9810-71ae66dc9155 X-Archives-Hash: f63de2961ab23f084faf5f8098ec194f commit: e117ee0627f56429147540c5d0ecbb21ca45af74 Author: Aaron Bauman gentoo org> AuthorDate: Tue May 29 14:42:48 2018 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Tue May 29 20:10:07 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e117ee06 app-text/tokyodystopia: bump EAPI and add EPREFIX Package-Manager: Portage-2.3.40, Repoman-2.3.9 app-text/tokyodystopia/tokyodystopia-0.9.15.ebuild | 27 ++++++++++------------ 1 file changed, 12 insertions(+), 15 deletions(-) diff --git a/app-text/tokyodystopia/tokyodystopia-0.9.15.ebuild b/app-text/tokyodystopia/tokyodystopia-0.9.15.ebuild index 9a0508821fb..cbd327fef5f 100644 --- a/app-text/tokyodystopia/tokyodystopia-0.9.15.ebuild +++ b/app-text/tokyodystopia/tokyodystopia-0.9.15.ebuild @@ -1,9 +1,7 @@ -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI="2" - -inherit eutils +EAPI=7 DESCRIPTION="A fulltext search engine for Tokyo Cabinet" HOMEPAGE="http://fallabs.com/tokyodystopia/" @@ -17,28 +15,27 @@ IUSE="examples" DEPEND="dev-db/tokyocabinet" RDEPEND="${DEPEND}" -src_prepare() { - epatch "${FILESDIR}/fix_rpath.patch" - epatch "${FILESDIR}/fix_ldconfig.patch" - epatch "${FILESDIR}/remove_docinst.patch" -} +PATCHES=( + "${FILESDIR}/fix_rpath.patch" + "${FILESDIR}/fix_ldconfig.patch" + "${FILESDIR}/remove_docinst.patch" +) src_configure() { - econf --libexecdir=/usr/libexec/${PN} || die + econf --libexecdir="${EPREFIX}"/usr/libexec/${PN} } src_install() { - emake DESTDIR="${D}" install || die "Install failed" + HTML_DOCS=( doc/* ) - dohtml doc/* || die + default if use examples; then insinto /usr/share/${PF}/example - doins example/* || die "Install failed" + doins example/* fi - } src_test() { - emake -j1 check || die "Tests failed" + emake -j1 check }