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 232421384B4 for ; Fri, 1 Jan 2016 21:23:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ECB7121C002; Fri, 1 Jan 2016 21:22:54 +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 6758F21C002 for ; Fri, 1 Jan 2016 21:22:54 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9A1C934087E for ; Fri, 1 Jan 2016 21:22:53 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D8E5ECE8 for ; Fri, 1 Jan 2016 21:22:49 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1451681497.c229d2d33ded9b2600d9460fcfad444dcc735aba.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/gigedit/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/gigedit/gigedit-0.2.0-r1.ebuild X-VCS-Directories: media-sound/gigedit/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: c229d2d33ded9b2600d9460fcfad444dcc735aba X-VCS-Branch: master Date: Fri, 1 Jan 2016 21:22:49 +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: 534db861-0c9f-474c-a2a5-3e54a392c5c2 X-Archives-Hash: 7325da02df384d99e4a3adf5267746a3 commit: c229d2d33ded9b2600d9460fcfad444dcc735aba Author: Pacho Ramos gentoo org> AuthorDate: Fri Jan 1 20:51:37 2016 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Fri Jan 1 20:51:37 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c229d2d3 media-sound/gigedit: Fix building with latest glibmm/libsigc++, bump to eapi5, drop ..la files and static libs. Package-Manager: portage-2.2.26 media-sound/gigedit/gigedit-0.2.0-r1.ebuild | 45 +++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) diff --git a/media-sound/gigedit/gigedit-0.2.0-r1.ebuild b/media-sound/gigedit/gigedit-0.2.0-r1.ebuild new file mode 100644 index 0000000..c5828c4 --- /dev/null +++ b/media-sound/gigedit/gigedit-0.2.0-r1.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +inherit autotools eutils flag-o-matic + +DESCRIPTION="An instrument editor for gig files" +HOMEPAGE="http://www.linuxsampler.org/" +SRC_URI="http://download.linuxsampler.org/packages/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="dev-cpp/gtkmm:2.4 + >=media-libs/libgig-3.3.0 + >=media-libs/libsndfile-1.0.2 + >=media-sound/linuxsampler-0.5.1" +DEPEND="${RDEPEND} + sys-devel/gettext + >=dev-util/intltool-0.35.0 + virtual/pkgconfig" + +src_prepare() { + # Fix linking, bug #540674 + sed -i -e 's/@LIBS@/@LIBS@ -lsigc-2.0/g' src/gigedit/Makefile.in + eautoreconf +} + +src_configure() { + append-cxxflags -std=c++11 + econf --disable-static +} + +src_compile() { + # fails with parallel jobs + emake -j1 +} + +src_install() { + default + prune_libtool_files --modules +}