public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Tim Harder" <radhermit@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/portaudio/
Date: Fri, 18 Aug 2017 08:27:52 +0000 (UTC)	[thread overview]
Message-ID: <1503044854.ae005cefaeec79172789d34a153a59b7cf86fe70.radhermit@gentoo> (raw)

commit:     ae005cefaeec79172789d34a153a59b7cf86fe70
Author:     Tim Harder <radhermit <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 18 08:23:26 2017 +0000
Commit:     Tim Harder <radhermit <AT> gentoo <DOT> org>
CommitDate: Fri Aug 18 08:27:34 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae005cef

media-libs/portaudio: update to EAPI 6 and add doc USE flag

 media-libs/portaudio/portaudio-19.06.00-r1.ebuild | 52 +++++++++++++++++++++++
 1 file changed, 52 insertions(+)

diff --git a/media-libs/portaudio/portaudio-19.06.00-r1.ebuild b/media-libs/portaudio/portaudio-19.06.00-r1.ebuild
new file mode 100644
index 00000000000..0a9ef403c79
--- /dev/null
+++ b/media-libs/portaudio/portaudio-19.06.00-r1.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2017 Gentoo Foundation
+# 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 ~sh ~sparc ~x86 ~amd64-fbsd ~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[@]}"
+}
+
+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
+}


             reply	other threads:[~2017-08-18  8:27 UTC|newest]

Thread overview: 42+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-08-18  8:27 Tim Harder [this message]
  -- strict thread matches above, loose matches on Subject: below --
2023-11-18 16:46 [gentoo-commits] repo/gentoo:master commit in: media-libs/portaudio/ Sam James
2022-05-19  5:08 WANG Xuerui
2021-08-13 11:37 Marek Szuba
2021-08-04  4:22 Miroslav Šulc
2021-07-27 17:14 Sam James
2021-07-27  3:16 Sam James
2021-07-25 20:09 Sam James
2021-07-22 17:39 Sam James
2021-07-22  6:07 Sam James
2021-07-22  5:49 Sam James
2021-06-21 10:46 Sam James
2021-06-21 10:37 Sam James
2021-06-21  0:41 Sam James
2021-03-19  3:22 Sam James
2021-03-19  3:22 Sam James
2021-03-19  3:22 Sam James
2021-01-07 11:33 Sam James
2021-01-07  1:24 Sam James
2021-01-03 12:10 Sergei Trofimovich
2020-12-31 11:22 Sergei Trofimovich
2020-12-31  1:47 Sam James
2020-12-31  1:47 Sam James
2020-12-30  2:39 Sam James
2019-08-27  3:07 Jeroen Roovers
2019-07-29  0:45 Aaron Bauman
2019-03-13  8:29 Lars Wendler
2019-03-11 13:21 Lars Wendler
2018-10-05  5:48 Andreas Sturmlechner
2018-10-05  4:56 Markus Meier
2018-09-14 10:18 Tobias Klausmann
2018-09-07 23:03 Sergei Trofimovich
2018-09-07 22:54 Sergei Trofimovich
2018-09-07 22:43 Sergei Trofimovich
2018-09-07 15:01 Mikle Kolyada
2018-09-03  6:19 Sergei Trofimovich
2018-09-02 23:46 Thomas Deutschmann
2018-05-20  0:33 Aaron Bauman
2017-08-18 21:39 Tim Harder
2017-06-19  9:54 Alexis Ballier
2017-06-15 14:23 Anthony G. Basile
2016-03-07 18:50 Alexis Ballier

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1503044854.ae005cefaeec79172789d34a153a59b7cf86fe70.radhermit@gentoo \
    --to=radhermit@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox