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 098D813835A for ; Sat, 8 May 2021 14:15:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2048BE07AE; Sat, 8 May 2021 14:15:29 +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 086B2E07AE for ; Sat, 8 May 2021 14:15:29 +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 80B3D33E695 for ; Sat, 8 May 2021 14:15:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 04C6F752 for ; Sat, 8 May 2021 14:15:26 +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: <1620483307.105afb71e520068247f81baada0c1bee220df658.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/gigedit/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/gigedit/gigedit-1.1.1-r1.ebuild X-VCS-Directories: media-sound/gigedit/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 105afb71e520068247f81baada0c1bee220df658 X-VCS-Branch: master Date: Sat, 8 May 2021 14:15:26 +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: 4c5aeb74-d1ea-4929-9acc-6c68b35f18d9 X-Archives-Hash: 7fcc4ac3eb6daf146ce29b372e65a825 commit: 105afb71e520068247f81baada0c1bee220df658 Author: David Seifert gentoo org> AuthorDate: Sat May 8 14:15:07 2021 +0000 Commit: David Seifert gentoo org> CommitDate: Sat May 8 14:15:07 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=105afb71 media-sound/gigedit: Clean up ebuild Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: David Seifert gentoo.org> media-sound/gigedit/gigedit-1.1.1-r1.ebuild | 33 +++++++++++------------------ 1 file changed, 12 insertions(+), 21 deletions(-) diff --git a/media-sound/gigedit/gigedit-1.1.1-r1.ebuild b/media-sound/gigedit/gigedit-1.1.1-r1.ebuild index e8c0ba9adca..8c8ab2c4899 100644 --- a/media-sound/gigedit/gigedit-1.1.1-r1.ebuild +++ b/media-sound/gigedit/gigedit-1.1.1-r1.ebuild @@ -2,7 +2,8 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 -inherit autotools desktop xdg + +inherit autotools desktop flag-o-matic xdg DESCRIPTION="An instrument editor for gig files" HOMEPAGE="http://www.linuxsampler.org/" @@ -11,43 +12,33 @@ SRC_URI="http://download.linuxsampler.org/packages/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" KEYWORDS="amd64 ~x86" -IUSE="" -BDEPEND=" - sys-devel/gettext - >=dev-util/intltool-0.35.0 - virtual/pkgconfig -" -CDEPEND=" +RDEPEND=" dev-cpp/gtkmm:2.4 >=media-libs/libgig-3.3.0 >=media-libs/libsndfile-1.0.2 - >=media-sound/linuxsampler-0.5.1 -" + >=media-sound/linuxsampler-0.5.1" DEPEND="${RDEPEND}" -RDEPEND="${CDEPEND}" +BDEPEND=" + sys-devel/gettext + >=dev-util/intltool-0.35.0 + virtual/pkgconfig" src_prepare() { default - # docdir is not propagated there - sed -i "s%\$(datadir)/doc/\$(PACKAGE)%\$(datadir)/doc/${P}%g" doc/quickstart/Makefile.am || die + sed -i '/docdir/d' doc/quickstart/Makefile.am || die eautoreconf } src_configure() { + append-ldflags -Wl,-rpath,"${EPREFIX}/usr/$(get_libdir)/linuxsampler" econf --disable-static } -src_compile() { - emake LDFLAGS="${LDFLAGS} -Wl,-rpath,/usr/$(get_libdir)/linuxsampler" -} - src_install() { default - - einfo "Removing static libs..." - find "${D}" -name "*.la" -delete || die "Failed to remove static libs" - make_desktop_entry gigedit GigEdit "" "AudioVideo;AudioVideoEditing" + + find "${ED}" -name '*.la' -delete || die }