diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2017-12-21 10:36:11 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2017-12-21 10:36:11 +0100 |
commit | 3f585a1edb6e5d4e42422f822fad22e7051d1dd1 (patch) | |
tree | 8e555b298d6fb6fed4c2441e13ae9dce03b2bd82 /media-sound | |
parent | media-sound/rosegarden: Drop old (diff) | |
download | gentoo-3f585a1edb6e5d4e42422f822fad22e7051d1dd1.tar.gz gentoo-3f585a1edb6e5d4e42422f822fad22e7051d1dd1.tar.bz2 gentoo-3f585a1edb6e5d4e42422f822fad22e7051d1dd1.zip |
media-sound/qsynth: Drop old
Closes: https://bugs.gentoo.org/631912
Package-Manager: Portage-2.3.19, Repoman-2.3.6
Diffstat (limited to 'media-sound')
-rw-r--r-- | media-sound/qsynth/Manifest | 3 | ||||
-rw-r--r-- | media-sound/qsynth/qsynth-0.3.9.ebuild | 57 | ||||
-rw-r--r-- | media-sound/qsynth/qsynth-0.4.2-r1.ebuild | 60 | ||||
-rw-r--r-- | media-sound/qsynth/qsynth-0.4.3.ebuild | 60 |
4 files changed, 0 insertions, 180 deletions
diff --git a/media-sound/qsynth/Manifest b/media-sound/qsynth/Manifest index 899e87b33462..f7f4c221e80d 100644 --- a/media-sound/qsynth/Manifest +++ b/media-sound/qsynth/Manifest @@ -1,4 +1 @@ -DIST qsynth-0.3.9.tar.gz 255130 BLAKE2B b19043464ebc31c58e41174b8cbddd74ab1ed2bd3e70a6eef84127e3b42d67d61e9194fb31a260eb34148e015d194d65243a550d69d83dfe06d5937596c5f149 SHA512 7702dc9eb3d38d338dcab5587e02e9fcdaffbe6188437e3b0f54b07499553f7a7d083f233cd21963a908578108f82c0d904b68da2f156ca0ab489e989b5787a8 -DIST qsynth-0.4.2.tar.gz 252394 BLAKE2B ece24d08638f2b7f607f02f049132d4a1c79fad7997b92de03a66b2e55f77e477b63dd87b3d6b5c297191896147845b31bcf8ddc3bd88ddc21945d92e655c24a SHA512 d951969b6a4ea185b9c732867559000e91e73b69fcd19974d406516ce79c0040b598ee578cc10aa2ed199f652535e061fe8178c8b37651438e605a0bc3ee674e -DIST qsynth-0.4.3.tar.gz 258870 BLAKE2B 63c821842109bdc9f76473c631c67499ac76a620ce1bddc231e322554f638b265ceff4a32e6cd0db7193fec9694c18a7c491c603dac8f4e082a717d5b3437049 SHA512 940a664e279890a0a5eaa557376fc10b60c13527ac813be8c3c6b29d04adf8b4c447846a7032c1f37ce6b8213093a7c1891fa7649371edb3cabc7142784b6782 DIST qsynth-0.4.4.tar.gz 260482 BLAKE2B c36e80bbe71960e83ef2bb7a9f0383625b12bb1f3755319218d8144d3a6749a807634b6babd40891f2ad0fca045b2be55dcbe0c60bdcbd150d32177c38046bdd SHA512 8995881ab992b8d02f83797093d406391327a362d0c331d0c8e023e1695baff5acb589be08427a25563f159067a8965c89be114ce74583db98e5a816f73aa9f0 diff --git a/media-sound/qsynth/qsynth-0.3.9.ebuild b/media-sound/qsynth/qsynth-0.3.9.ebuild deleted file mode 100644 index 477c7ca4b564..000000000000 --- a/media-sound/qsynth/qsynth-0.3.9.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -LANGS="cs de fr ru sr" - -inherit qt4-r2 eutils - -DESCRIPTION="A Qt application to control FluidSynth" -HOMEPAGE="http://qsynth.sourceforge.net/" -SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -IUSE="debug jack alsa pulseaudio" -KEYWORDS="amd64 ppc x86" - -DEPEND=">=dev-qt/qtcore-4.2:4 - >=dev-qt/qtgui-4.2:4 - >=media-sound/fluidsynth-1.0.7a[jack?,alsa?,pulseaudio?] - x11-libs/libX11" -RDEPEND="${DEPEND}" - -REQUIRED_USE="|| ( alsa jack pulseaudio )" - -DOCS="AUTHORS ChangeLog README TODO TRANSLATORS" - -src_configure() { - econf $(use_enable debug) - eqmake4 "${PN}.pro" -o "${PN}.mak" -} - -src_compile() { - "$(qt4_get_bindir)"/lupdate "${PN}.pro" || die "lupdate failed" - qt4-r2_src_compile -} - -src_install () { - qt4-r2_src_install - - # The desktop file is invalid, and we also change the command - # depending on useflags - rm -rf "${D}/usr/share/applications/qsynth.desktop" - - local cmd - if use jack; then - cmd="qsynth" - elif use pulseaudio; then - cmd="qsynth -a pulseaudio" - elif use alsa; then - cmd="qsynth -a alsa" - else - cmd="qsynth -a oss" - fi - - make_desktop_entry "${cmd}" Qsynth qsynth -} diff --git a/media-sound/qsynth/qsynth-0.4.2-r1.ebuild b/media-sound/qsynth/qsynth-0.4.2-r1.ebuild deleted file mode 100644 index a11efc39ab92..000000000000 --- a/media-sound/qsynth/qsynth-0.4.2-r1.ebuild +++ /dev/null @@ -1,60 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit eutils flag-o-matic qmake-utils - -DESCRIPTION="A Qt application to control FluidSynth" -HOMEPAGE="http://qsynth.sourceforge.net/" -SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -IUSE="debug jack alsa pulseaudio" -KEYWORDS="~amd64 ~ppc ~x86" - -RDEPEND=" - dev-qt/qtcore:5 - dev-qt/qtwidgets:5 - dev-qt/qtx11extras:5 - media-sound/fluidsynth[jack?,alsa?,pulseaudio?] - x11-libs/libX11" -DEPEND="${RDEPEND} - dev-qt/linguist-tools:5 -" - -REQUIRED_USE="|| ( alsa jack pulseaudio )" - -PATCHES=( "${FILESDIR}/${PN}-0.4.0-qt5-tagging.patch" ) - -src_configure() { - append-cxxflags -std=c++11 - econf \ - $(use_enable debug) \ - --with-qt5=$(qt5_get_bindir)/.. - - eqmake5 ${PN}.pro -o ${PN}.mak -} - -src_install () { - emake DESTDIR="${D}" INSTALL_ROOT="${D}" install - einstalldocs - - # The desktop file is invalid, and we also change the command - # depending on useflags - rm "${ED}usr/share/applications/qsynth.desktop" || die - - local cmd - if use jack; then - cmd="qsynth" - elif use pulseaudio; then - cmd="qsynth -a pulseaudio" - elif use alsa; then - cmd="qsynth -a alsa" - else - cmd="qsynth -a oss" - fi - - make_desktop_entry "${cmd}" Qsynth qsynth -} diff --git a/media-sound/qsynth/qsynth-0.4.3.ebuild b/media-sound/qsynth/qsynth-0.4.3.ebuild deleted file mode 100644 index a11efc39ab92..000000000000 --- a/media-sound/qsynth/qsynth-0.4.3.ebuild +++ /dev/null @@ -1,60 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit eutils flag-o-matic qmake-utils - -DESCRIPTION="A Qt application to control FluidSynth" -HOMEPAGE="http://qsynth.sourceforge.net/" -SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -IUSE="debug jack alsa pulseaudio" -KEYWORDS="~amd64 ~ppc ~x86" - -RDEPEND=" - dev-qt/qtcore:5 - dev-qt/qtwidgets:5 - dev-qt/qtx11extras:5 - media-sound/fluidsynth[jack?,alsa?,pulseaudio?] - x11-libs/libX11" -DEPEND="${RDEPEND} - dev-qt/linguist-tools:5 -" - -REQUIRED_USE="|| ( alsa jack pulseaudio )" - -PATCHES=( "${FILESDIR}/${PN}-0.4.0-qt5-tagging.patch" ) - -src_configure() { - append-cxxflags -std=c++11 - econf \ - $(use_enable debug) \ - --with-qt5=$(qt5_get_bindir)/.. - - eqmake5 ${PN}.pro -o ${PN}.mak -} - -src_install () { - emake DESTDIR="${D}" INSTALL_ROOT="${D}" install - einstalldocs - - # The desktop file is invalid, and we also change the command - # depending on useflags - rm "${ED}usr/share/applications/qsynth.desktop" || die - - local cmd - if use jack; then - cmd="qsynth" - elif use pulseaudio; then - cmd="qsynth -a pulseaudio" - elif use alsa; then - cmd="qsynth -a alsa" - else - cmd="qsynth -a oss" - fi - - make_desktop_entry "${cmd}" Qsynth qsynth -} |