summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2021-01-07 01:17:55 +0000
committerSam James <sam@gentoo.org>2021-01-07 01:17:55 +0000
commitf3847bcece8c5df2c91ff0c481099603c2151e1b (patch)
treeac9d69d6d517a07dc9cb0f1ead059d7894a5f6b9 /media-libs/portaudio
parentmedia-libs/faad2: cleanup old (diff)
downloadgentoo-f3847bcece8c5df2c91ff0c481099603c2151e1b.tar.gz
gentoo-f3847bcece8c5df2c91ff0c481099603c2151e1b.tar.bz2
gentoo-f3847bcece8c5df2c91ff0c481099603c2151e1b.zip
media-libs/portaudio: cleanup old
Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'media-libs/portaudio')
-rw-r--r--media-libs/portaudio/portaudio-19.06.00-r1.ebuild58
1 files changed, 0 insertions, 58 deletions
diff --git a/media-libs/portaudio/portaudio-19.06.00-r1.ebuild b/media-libs/portaudio/portaudio-19.06.00-r1.ebuild
deleted file mode 100644
index e3930a341f3f..000000000000
--- a/media-libs/portaudio/portaudio-19.06.00-r1.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit ltprune multilib-minimal
-
-DESCRIPTION="A free, cross-platform, open-source, audio I/O library"
-HOMEPAGE="http://www.portaudio.com/"
-SRC_URI="http://www.portaudio.com/archives/pa_stable_v190600_20161030.tgz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux"
-IUSE="alsa +cxx debug doc jack oss static-libs"
-
-RDEPEND="alsa? ( >=media-libs/alsa-lib-1.0.27.2[${MULTILIB_USEDEP}] )
- jack? ( virtual/jack[${MULTILIB_USEDEP}] )"
-DEPEND="${RDEPEND}
- doc? ( app-doc/doxygen )
- virtual/pkgconfig"
-
-S=${WORKDIR}/${PN}
-
-DOCS=( README.txt )
-
-multilib_src_configure() {
- local myeconfargs=(
- $(use_enable debug debug-output)
- $(use_enable cxx)
- $(use_enable static-libs static)
- $(use_with alsa)
- $(use_with jack)
- $(use_with oss)
- )
-
- ECONF_SOURCE="${S}" econf "${myeconfargs[@]}"
-}
-
-multilib_src_compile() {
- # workaround parallel build issue
- emake lib/libportaudio.la
- emake
-}
-
-src_compile() {
- multilib-minimal_src_compile
-
- if use doc; then
- doxygen -u Doxyfile || die
- doxygen Doxyfile || die
- fi
-}
-
-multilib_src_install_all() {
- einstalldocs
- use doc && dodoc -r doc/html
- prune_libtool_files
-}