diff options
author | Repository mirror & CI <repomirrorci@gentoo.org> | 2020-03-31 16:41:50 +0000 |
---|---|---|
committer | Repository mirror & CI <repomirrorci@gentoo.org> | 2020-03-31 16:41:50 +0000 |
commit | fca5f04abe1b93ee243cc7f1f3e77d05b973fba2 (patch) | |
tree | 1a1ada1ae365ccd9fed7acff8efd1f22f0078e52 /media-radio/qrq/qrq-0.3.2.ebuild | |
parent | 2020-03-31 15:51:54 UTC (diff) | |
parent | www-client/firefox-bin: fix quoting (diff) | |
download | gentoo-fca5f04abe1b93ee243cc7f1f3e77d05b973fba2.tar.gz gentoo-fca5f04abe1b93ee243cc7f1f3e77d05b973fba2.tar.bz2 gentoo-fca5f04abe1b93ee243cc7f1f3e77d05b973fba2.zip |
Merge updates from master
Diffstat (limited to 'media-radio/qrq/qrq-0.3.2.ebuild')
-rw-r--r-- | media-radio/qrq/qrq-0.3.2.ebuild | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/media-radio/qrq/qrq-0.3.2.ebuild b/media-radio/qrq/qrq-0.3.2.ebuild deleted file mode 100644 index b5eeded23449..000000000000 --- a/media-radio/qrq/qrq-0.3.2.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="7" - -inherit toolchain-funcs - -DESCRIPTION="Yet another CW trainer for Linux/Unix" -HOMEPAGE="http://fkurz.net/ham/qrq.html" -SRC_URI="http://fkurz.net/ham/${PN}/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="pulseaudio" - -DEPEND="sys-libs/ncurses:= - pulseaudio? ( media-sound/pulseaudio )" -RDEPEND="${DEPEND}" - -PATCHES=( "${FILESDIR}/${P}-tinfo.patch" ) - -src_prepare() { - # avoid prestripping of 'qrq' binary - sed -i -e "s/install -s -m/install -m/" Makefile || die - sed -i -e "s/CC=gcc/CC=$(tc-getCC)/" Makefile || die - default -} - -src_compile() { - CONF="USE_PA=NO USE_OSS=YES" - if use pulseaudio; then - CONF="USE_PA=YES USE_OSS=NO" - fi - emake $CONF -} - -src_install() { - emake $CONF DESTDIR="${D}/usr" install - dodoc AUTHORS ChangeLog README -} |