From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id ECEB158973 for ; Tue, 26 Jan 2016 12:33:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9E18821C00A; Tue, 26 Jan 2016 12:33:46 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4782E21C00A for ; Tue, 26 Jan 2016 12:33:46 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4557C3404A5 for ; Tue, 26 Jan 2016 12:33:45 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B5ACDC0 for ; Tue, 26 Jan 2016 12:33:42 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1453811612.3a7d18341dd573fc971250ecae3803d9f3b3a87a.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/yoshimi/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/yoshimi/yoshimi-1.3.8.2-r1.ebuild media-sound/yoshimi/yoshimi-1.3.8.2.ebuild X-VCS-Directories: media-sound/yoshimi/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 3a7d18341dd573fc971250ecae3803d9f3b3a87a X-VCS-Branch: master Date: Tue, 26 Jan 2016 12:33:42 +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: e9f9ded5-cb0a-465d-a57c-7a4348bc9149 X-Archives-Hash: 4851e62a874343067c72a3fb68f3a589 commit: 3a7d18341dd573fc971250ecae3803d9f3b3a87a Author: David Seifert gentoo org> AuthorDate: Tue Jan 26 12:33:10 2016 +0000 Commit: David Seifert gentoo org> CommitDate: Tue Jan 26 12:33:32 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a7d1834 media-sound/yoshimi: Replace 'default_src_prepare' with 'cmake-utils_src_prepare' Package-Manager: portage-2.2.27 .../{yoshimi-1.3.8.2.ebuild => yoshimi-1.3.8.2-r1.ebuild} | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/media-sound/yoshimi/yoshimi-1.3.8.2.ebuild b/media-sound/yoshimi/yoshimi-1.3.8.2-r1.ebuild similarity index 89% rename from media-sound/yoshimi/yoshimi-1.3.8.2.ebuild rename to media-sound/yoshimi/yoshimi-1.3.8.2-r1.ebuild index 68b5a5f..a5ae15c 100644 --- a/media-sound/yoshimi/yoshimi-1.3.8.2.ebuild +++ b/media-sound/yoshimi/yoshimi-1.3.8.2-r1.ebuild @@ -37,23 +37,20 @@ PATCHES=( "${FILESDIR}/${P}-underlinking.patch" "${FILESDIR}/${PN}-1.1.0-desktop-version.patch" ) -DOCS="../Changelog" - -S=${WORKDIR}/${P}/src +CMAKE_USE_DIR="${WORKDIR}/${P}/src" src_prepare() { - cd .. || die - default - + mv Change{l,L}og || die sed -i \ -e '/set (CMAKE_CXX_FLAGS_RELEASE/d' \ -e "s:lib/lv2:$(get_libdir)/lv2:" \ src/CMakeLists.txt || die + cmake-utils_src_prepare } src_configure() { local mycmakeargs=( - -DBuildLV2Plugin=$(usex lv2 ON OFF) + -DBuildLV2Plugin=$(usex lv2) ) cmake-utils_src_configure }