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 C0BDD138334 for ; Fri, 22 Feb 2019 13:06:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9CCE8E01E4; Fri, 22 Feb 2019 13:06:35 +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 736A1E01E4 for ; Fri, 22 Feb 2019 13:06:35 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 E8AD333BE25 for ; Fri, 22 Feb 2019 13:06:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6397E452 for ; Fri, 22 Feb 2019 13:06:32 +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: <1550840357.6cd888fc928933af1a25074a736085f2ccbad18f.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/zynaddsubfx/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/zynaddsubfx/zynaddsubfx-3.0.3.ebuild X-VCS-Directories: media-sound/zynaddsubfx/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 6cd888fc928933af1a25074a736085f2ccbad18f X-VCS-Branch: master Date: Fri, 22 Feb 2019 13:06:32 +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: 5f70092d-641e-42ea-9c5e-98b3d3342c8e X-Archives-Hash: bd57253391a7bdc8e1dfded2c29fea2c commit: 6cd888fc928933af1a25074a736085f2ccbad18f Author: Andreas Sturmlechner gentoo org> AuthorDate: Fri Feb 22 12:59:17 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Fri Feb 22 12:59:17 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6cd888fc media-sound/zynaddsubfx: Drop 3.0.3 (r0) Signed-off-by: Andreas Sturmlechner gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 media-sound/zynaddsubfx/zynaddsubfx-3.0.3.ebuild | 55 ------------------------ 1 file changed, 55 deletions(-) diff --git a/media-sound/zynaddsubfx/zynaddsubfx-3.0.3.ebuild b/media-sound/zynaddsubfx/zynaddsubfx-3.0.3.ebuild deleted file mode 100644 index b929690c9c5..00000000000 --- a/media-sound/zynaddsubfx/zynaddsubfx-3.0.3.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit eutils cmake-utils flag-o-matic multilib - -DESCRIPTION="ZynAddSubFX is an opensource software synthesizer" -HOMEPAGE="http://zynaddsubfx.sourceforge.net/" -SRC_URI="mirror://sourceforge/zynaddsubfx/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~ppc x86" -IUSE="alsa +fltk jack lash" - -RDEPEND=">=dev-libs/mxml-2.2.1 - sci-libs/fftw:3.0 - media-libs/liblo - alsa? ( media-libs/alsa-lib ) - fltk? ( >=x11-libs/fltk-1.3:1 ) - jack? ( virtual/jack ) - lash? ( media-sound/lash )" -# portaudio? ( media-libs/portaudio )" -DEPEND="${RDEPEND} - virtual/pkgconfig" -# Upstream uses the following preferences: alsa > jack > portaudio -# At least one of them must be enabled -# We do not support portaudio, so if alsa is disabled force jack. -REQUIRED_USE="!alsa? ( jack )" - -PATCHES=( - "${FILESDIR}"/${PN}-${PV}-docs.patch -) - -DOCS=( ChangeLog HISTORY.txt README.adoc ) - -src_configure() { - append-cxxflags "-std=c++11" - use lash || sed -i -e 's/lash-1.0/lash_disabled/' "${S}"/src/CMakeLists.txt - mycmakeargs=( - `use fltk && echo "-DGuiModule=fltk" || echo "-DGuiModule=off"` - `use alsa && echo "-DOutputModule=alsa" || echo "-DOutputModule=jack"` - `use alsa && echo "-DAlsaMidiOutput=TRUE" || echo "-DAlsaMidiOutput=FALSE"` - `use jack && echo "-DJackOutput=TRUE" || echo "-DJackOutput=FALSE"` - -DPluginLibDir=$(get_libdir) - ) - cmake-utils_src_configure -} - -src_install() { - cmake-utils_src_install - insinto /usr/share/${PN} - doins -r "${S}"/instruments/* -}