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 D9CEE138330 for ; Sat, 26 May 2018 02:05:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B0DE0E0788; Sat, 26 May 2018 02:05:12 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 87C0CE0788 for ; Sat, 26 May 2018 02:05:12 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 14960335CA1 for ; Sat, 26 May 2018 02:05:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9FC452B0 for ; Sat, 26 May 2018 02:05:09 +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: <1527300301.9f8fbe18900b6daa8d7cb58b7019fd14802b83f2.bman@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/aiksaurus/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/aiksaurus/aiksaurus-1.2.1.ebuild X-VCS-Directories: app-text/aiksaurus/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: 9f8fbe18900b6daa8d7cb58b7019fd14802b83f2 X-VCS-Branch: master Date: Sat, 26 May 2018 02:05:09 +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: a1fabb46-bccc-4a5e-af57-c680cb84ee91 X-Archives-Hash: 796182c66737ec100d494614e06781b3 commit: 9f8fbe18900b6daa8d7cb58b7019fd14802b83f2 Author: Aaron Bauman gentoo org> AuthorDate: Sat May 26 00:35:41 2018 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Sat May 26 02:05:01 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f8fbe18 app-text/aiksaurus: bump EAPI and drop eutils Package-Manager: Portage-2.3.40, Repoman-2.3.9 app-text/aiksaurus/aiksaurus-1.2.1.ebuild | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/app-text/aiksaurus/aiksaurus-1.2.1.ebuild b/app-text/aiksaurus/aiksaurus-1.2.1.ebuild index d359b259e03..fcf08e959e7 100644 --- a/app-text/aiksaurus/aiksaurus-1.2.1.ebuild +++ b/app-text/aiksaurus/aiksaurus-1.2.1.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=2 -inherit flag-o-matic eutils libtool +EAPI=6 +inherit flag-o-matic libtool DESCRIPTION="A thesaurus lib, tool and database" HOMEPAGE="https://sourceforge.net/projects/aiksaurus" @@ -17,9 +17,10 @@ RDEPEND="gtk? ( x11-libs/gtk+:2 )" DEPEND="${RDEPEND} gtk? ( virtual/pkgconfig )" -src_prepare() { - epatch "${FILESDIR}"/${P}-gcc43.patch #214248 +PATCHES=( "${FILESDIR}/${P}-gcc43.patch" ) +src_prepare() { + default # Needed to make relink work on FreeBSD, without it won't install. # Also needed for a sane .so versionning there. elibtoolize @@ -32,5 +33,4 @@ src_configure() { src_install() { emake DESTDIR="${D}" install || die - dodoc AUTHORS README* ChangeLog }