Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/portaudio/
Date: Thu, 07 Jan 2021 01:24:09
Message-Id: 1609982275.f3847bcece8c5df2c91ff0c481099603c2151e1b.sam@gentoo
1 commit: f3847bcece8c5df2c91ff0c481099603c2151e1b
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 7 01:17:55 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 7 01:17:55 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3847bce
7
8 media-libs/portaudio: cleanup old
9
10 Package-Manager: Portage-3.0.12, Repoman-3.0.2
11 Signed-off-by: Sam James <sam <AT> gentoo.org>
12
13 media-libs/portaudio/portaudio-19.06.00-r1.ebuild | 58 -----------------------
14 1 file changed, 58 deletions(-)
15
16 diff --git a/media-libs/portaudio/portaudio-19.06.00-r1.ebuild b/media-libs/portaudio/portaudio-19.06.00-r1.ebuild
17 deleted file mode 100644
18 index e3930a341f3..00000000000
19 --- a/media-libs/portaudio/portaudio-19.06.00-r1.ebuild
20 +++ /dev/null
21 @@ -1,58 +0,0 @@
22 -# Copyright 1999-2020 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=6
26 -inherit ltprune multilib-minimal
27 -
28 -DESCRIPTION="A free, cross-platform, open-source, audio I/O library"
29 -HOMEPAGE="http://www.portaudio.com/"
30 -SRC_URI="http://www.portaudio.com/archives/pa_stable_v190600_20161030.tgz"
31 -
32 -LICENSE="MIT"
33 -SLOT="0"
34 -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux"
35 -IUSE="alsa +cxx debug doc jack oss static-libs"
36 -
37 -RDEPEND="alsa? ( >=media-libs/alsa-lib-1.0.27.2[${MULTILIB_USEDEP}] )
38 - jack? ( virtual/jack[${MULTILIB_USEDEP}] )"
39 -DEPEND="${RDEPEND}
40 - doc? ( app-doc/doxygen )
41 - virtual/pkgconfig"
42 -
43 -S=${WORKDIR}/${PN}
44 -
45 -DOCS=( README.txt )
46 -
47 -multilib_src_configure() {
48 - local myeconfargs=(
49 - $(use_enable debug debug-output)
50 - $(use_enable cxx)
51 - $(use_enable static-libs static)
52 - $(use_with alsa)
53 - $(use_with jack)
54 - $(use_with oss)
55 - )
56 -
57 - ECONF_SOURCE="${S}" econf "${myeconfargs[@]}"
58 -}
59 -
60 -multilib_src_compile() {
61 - # workaround parallel build issue
62 - emake lib/libportaudio.la
63 - emake
64 -}
65 -
66 -src_compile() {
67 - multilib-minimal_src_compile
68 -
69 - if use doc; then
70 - doxygen -u Doxyfile || die
71 - doxygen Doxyfile || die
72 - fi
73 -}
74 -
75 -multilib_src_install_all() {
76 - einstalldocs
77 - use doc && dodoc -r doc/html
78 - prune_libtool_files
79 -}