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 D3538138334 for ; Wed, 22 May 2019 15:41:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AF571E08AB; Wed, 22 May 2019 15:41:43 +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 9565BE08AB for ; Wed, 22 May 2019 15:41:43 +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 B4DAE344E35 for ; Wed, 22 May 2019 15:41:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A84A0601 for ; Wed, 22 May 2019 15:41:38 +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: <1558539682.c627eff71fbf53e69edb82c8bf9fd1ee363f4acc.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/fmit/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/fmit/fmit-1.0.15-r1.ebuild X-VCS-Directories: media-sound/fmit/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: c627eff71fbf53e69edb82c8bf9fd1ee363f4acc X-VCS-Branch: master Date: Wed, 22 May 2019 15:41:38 +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: c1b31309-ca82-458d-a4b6-f39237c4b8f0 X-Archives-Hash: 46462733cb8eb99d4e2c1a31250a7bd2 commit: c627eff71fbf53e69edb82c8bf9fd1ee363f4acc Author: Andreas Sturmlechner gentoo org> AuthorDate: Wed May 22 15:06:36 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Wed May 22 15:41:22 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c627eff7 media-sound/fmit: Drop 1.0.15-r1 Package-Manager: Portage-2.3.66, Repoman-2.3.12 Signed-off-by: Andreas Sturmlechner gentoo.org> media-sound/fmit/fmit-1.0.15-r1.ebuild | 55 ---------------------------------- 1 file changed, 55 deletions(-) diff --git a/media-sound/fmit/fmit-1.0.15-r1.ebuild b/media-sound/fmit/fmit-1.0.15-r1.ebuild deleted file mode 100644 index d7e9c9594e3..00000000000 --- a/media-sound/fmit/fmit-1.0.15-r1.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit qmake-utils - -DESCRIPTION="Free Music Instrument Tuner" -HOMEPAGE="https://gillesdegottex.github.io/fmit" -SRC_URI="https://github.com/gillesdegottex/fmit/archive/v${PV}.tar.gz \ - -> ${P}.tar.gz" - -LICENSE="GPL-2+ LGPL-2.1" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="alsa jack oss portaudio" - -RDEPEND=">=sci-libs/fftw-3.3.4:3.0= - dev-qt/qtmultimedia:5 - dev-qt/qtopengl:5 - dev-qt/qtsvg:5 - dev-qt/qtcore:5 - dev-qt/qtgui:5[-gles2] - alsa? ( media-libs/alsa-lib ) - jack? ( media-sound/jack-audio-connection-kit ) - portaudio? ( media-libs/portaudio )" - -DEPEND="${RDEPEND} - dev-qt/linguist-tools:5" - -src_prepare() { - # Fix the path to readme file to prevent errors on start up - sed -i "/QFile readmefile/c\QFile readmefile \ - (\"/usr/share/doc/${PF}/README.txt\");" \ - src/main.cpp || die "README sed failed" - # Fix the PREFIX location, insert real path. - sed -i "/QString fmitprefix/c\QString fmitprefix(STR(/usr));" \ - src/main.cpp || die "PREFIX fix sed failed" - # Fix the PREFIX location, insert real path. - sed -i "/QString fmitprefix/c\QString fmitprefix(STR(/usr));" \ - src/modules/MicrotonalView.cpp || die "PREFIX fix sed failed" - default -} - -src_configure() { - local config flag - for flag in alsa jack portaudio oss; do - use ${flag} && config+=" acs_${flag}" - done - - "$(qt5_get_bindir)"/lrelease fmit.pro || die "Running lrelease failed" - - eqmake5 CONFIG+="${config}" fmit.pro PREFIX="${D}"/usr \ - PREFIXSHORTCUT="${D}"/usr DISTDIR=/usr -}