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 E6866138334 for ; Tue, 1 Oct 2019 23:43:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6A9FEE0995; Tue, 1 Oct 2019 23:43:47 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 54222E0995 for ; Tue, 1 Oct 2019 23:43:47 +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 82C5334B783 for ; Tue, 1 Oct 2019 23:43:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A890C838 for ; Tue, 1 Oct 2019 23:43:41 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1569973385.5f7bb23e33d15ad5e5d73fbe7d0543e9c76057f1.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/libetonyek/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/libetonyek/libetonyek-9999.ebuild X-VCS-Directories: app-text/libetonyek/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 5f7bb23e33d15ad5e5d73fbe7d0543e9c76057f1 X-VCS-Branch: master Date: Tue, 1 Oct 2019 23:43:41 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: c35e2fee-473e-4ebd-b52d-b5b22815de81 X-Archives-Hash: cc2101fffac2f26bef9f23b5faada9f2 commit: 5f7bb23e33d15ad5e5d73fbe7d0543e9c76057f1 Author: Andreas Sturmlechner gentoo org> AuthorDate: Tue Oct 1 23:29:45 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Tue Oct 1 23:43:05 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f7bb23e app-text/libetonyek: Populate BDEPEND Package-Manager: Portage-2.3.76, Repoman-2.3.17 Signed-off-by: Andreas Sturmlechner gentoo.org> app-text/libetonyek/libetonyek-9999.ebuild | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/app-text/libetonyek/libetonyek-9999.ebuild b/app-text/libetonyek/libetonyek-9999.ebuild index 5a2e3527e53..9bea9ad25cf 100644 --- a/app-text/libetonyek/libetonyek-9999.ebuild +++ b/app-text/libetonyek/libetonyek-9999.ebuild @@ -3,7 +3,7 @@ EAPI=7 -if [[ ${PV} = 9999 ]]; then +if [[ ${PV} = *9999 ]]; then EGIT_REPO_URI="https://anongit.freedesktop.org/git/libreoffice/libetonyek.git" inherit autotools git-r3 else @@ -17,6 +17,10 @@ LICENSE="|| ( GPL-2+ LGPL-2.1 MPL-1.1 )" SLOT="0" IUSE="doc static-libs test" +BDEPEND=" + virtual/pkgconfig + doc? ( app-doc/doxygen ) +" RDEPEND=" app-text/liblangtag dev-libs/librevenge @@ -28,15 +32,13 @@ DEPEND="${RDEPEND} dev-libs/boost media-libs/glm sys-devel/libtool - virtual/pkgconfig - doc? ( app-doc/doxygen ) test? ( dev-util/cppunit ) " src_prepare() { default [[ -d m4 ]] || mkdir "m4" - [[ ${PV} == 9999 ]] && eautoreconf + [[ ${PV} == *9999 ]] && eautoreconf } src_configure() { @@ -57,5 +59,5 @@ src_configure() { src_install() { default - find "${D}" -name '*.la' -delete || die + find "${D}" -name '*.la' -type f -delete || die }