summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2019-01-27 20:35:05 +0100
committerPacho Ramos <pacho@gentoo.org>2019-01-27 20:45:51 +0100
commit4b952930195a538844490ae72aa6f618e642f120 (patch)
tree94286659ef194ed4e8c32cee48595f72f707f8a7
parentmedia-plugins/vdr-imonlcd: Drop old (diff)
downloadgentoo-4b952930.tar.gz
gentoo-4b952930.tar.bz2
gentoo-4b952930.zip
media-sound/fmit: Drop old
Package-Manager: Portage-2.3.58, Repoman-2.3.12 Signed-off-by: Pacho Ramos <pacho@gentoo.org>
-rw-r--r--media-sound/fmit/fmit-1.0.15.ebuild63
1 files changed, 0 insertions, 63 deletions
diff --git a/media-sound/fmit/fmit-1.0.15.ebuild b/media-sound/fmit/fmit-1.0.15.ebuild
deleted file mode 100644
index 57d69ae6f6ac..000000000000
--- a/media-sound/fmit/fmit-1.0.15.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit qmake-utils
-
-MY_PN="v${PV}"
-
-DESCRIPTION="Free Music Instrument Tuner"
-HOMEPAGE="https://gillesdegottex.github.io/fmit"
-SRC_URI="https://github.com/gillesdegottex/fmit/archive/${MY_PN}.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
- media-libs/freeglut
- dev-qt/qtmultimedia:5
- dev-qt/qtopengl:5
- dev-qt/qtsvg:5
- dev-qt/qtcore:5
- dev-qt/qtgui:5
- alsa? ( media-libs/alsa-lib )
- jack? ( media-sound/jack-audio-connection-kit )
- portaudio? ( media-libs/portaudio )"
-
-DEPEND="${RDEPEND}"
-
-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
- 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
-}
-
-src_install() {
- emake DESTDIR="${D}" install
- insinto /usr/share/doc/"${PF}"/
- doins README.txt
- docompress -x /usr/share/doc/"${PF}"/
-}