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 A54D2138334 for ; Tue, 30 Oct 2018 14:36:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A079DE08C2; Tue, 30 Oct 2018 14:36:10 +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 79C4DE08C2 for ; Tue, 30 Oct 2018 14:36:10 +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 11DC7335C67 for ; Tue, 30 Oct 2018 14:36:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E5D0044A for ; Tue, 30 Oct 2018 14:36:05 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1540910160.2ae1424593a797b093007f7211919b676f6fb8cb.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libmtp/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libmtp/libmtp-9999.ebuild X-VCS-Directories: media-libs/libmtp/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 2ae1424593a797b093007f7211919b676f6fb8cb X-VCS-Branch: master Date: Tue, 30 Oct 2018 14:36:05 +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: c21320b0-0460-4a29-8b07-7cb28271abf4 X-Archives-Hash: c12a61c55813bd4d6cdf9bc1d6642e13 commit: 2ae1424593a797b093007f7211919b676f6fb8cb Author: Lars Wendler gentoo org> AuthorDate: Tue Oct 30 14:35:43 2018 +0000 Commit: Lars Wendler gentoo org> CommitDate: Tue Oct 30 14:36:00 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ae14245 media-libs/libmtp: Synced live ebuild. Signed-off-by: Lars Wendler gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 media-libs/libmtp/libmtp-9999.ebuild | 25 ++++++++++++++----------- 1 file changed, 14 insertions(+), 11 deletions(-) diff --git a/media-libs/libmtp/libmtp-9999.ebuild b/media-libs/libmtp/libmtp-9999.ebuild index b009b4abaff..3dff728f84f 100644 --- a/media-libs/libmtp/libmtp-9999.ebuild +++ b/media-libs/libmtp/libmtp-9999.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 -inherit eutils udev user +EAPI=7 +inherit udev user if [[ ${PV} == 9999* ]]; then EGIT_REPO_URI="git://git.code.sf.net/p/${PN}/code" @@ -21,7 +21,8 @@ IUSE="+crypt doc examples static-libs" RDEPEND="virtual/libusb:1 crypt? ( >=dev-libs/libgcrypt-1.5.4:0= )" -DEPEND="${RDEPEND} +DEPEND="${RDEPEND}" +BDEPEND=" virtual/pkgconfig doc? ( app-doc/doxygen )" @@ -50,18 +51,20 @@ src_prepare() { } src_configure() { - econf \ - $(use_enable static-libs static) \ - $(use_enable doc doxygen) \ - $(use_enable crypt mtpz) \ - --with-udev="$(get_udevdir)" \ - --with-udev-group=plugdev \ + local myeconfargs=( + $(use_enable static-libs static) + $(use_enable doc doxygen) + $(use_enable crypt mtpz) + --with-udev="$(get_udevdir)" + --with-udev-group=plugdev --with-udev-mode=0660 + ) + econf "${myeconfargs[@]}" } src_install() { default - prune_libtool_files --all + find "${ED}" -name "*.la" -delete || die if use examples; then docinto examples