* [gentoo-commits] repo/gentoo:master commit in: media-libs/stk/
@ 2017-08-01 14:08 Amy Liffey
0 siblings, 0 replies; 14+ messages in thread
From: Amy Liffey @ 2017-08-01 14:08 UTC (permalink / raw
To: gentoo-commits
commit: de7e331d18b8d5206fe927851529534935a5cb0f
Author: Amy Liffey <amynka <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 1 14:07:49 2017 +0000
Commit: Amy Liffey <amynka <AT> gentoo <DOT> org>
CommitDate: Tue Aug 1 14:07:49 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de7e331d
media-libs/stk: remove inactive proxy maintainer
Package-Manager: Portage-2.3.6, Repoman-2.3.1
media-libs/stk/metadata.xml | 8 --------
1 file changed, 8 deletions(-)
diff --git a/media-libs/stk/metadata.xml b/media-libs/stk/metadata.xml
index 7fd3b53f21a..3b66d36c98a 100644
--- a/media-libs/stk/metadata.xml
+++ b/media-libs/stk/metadata.xml
@@ -5,16 +5,8 @@
<email>aballier@gentoo.org</email>
<name>Alexis Ballier</name>
</maintainer>
-<maintainer type="person">
- <email>gimpel@sonnenkinder.org</email>
- <name>Thomas Kuther</name>
-</maintainer>
<maintainer type="project">
<email>proaudio@gentoo.org</email>
<name>Gentoo ProAudio Project</name>
</maintainer>
-<maintainer type="project">
- <email>proxy-maint@gentoo.org</email>
- <name>Proxy Maintainers</name>
-</maintainer>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/stk/
@ 2018-01-01 19:28 Miroslav Šulc
0 siblings, 0 replies; 14+ messages in thread
From: Miroslav Šulc @ 2018-01-01 19:28 UTC (permalink / raw
To: gentoo-commits
commit: 549e9f4e1565ec00b8c6f9fbe3a2e9d595638ba3
Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 1 19:28:13 2018 +0000
Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Mon Jan 1 19:28:13 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=549e9f4e
media-libs/stk: bumped eapi and switched from media-sound/jack-audio-connection-kit to virtual/jack
Package-Manager: Portage-2.3.19, Repoman-2.3.6
media-libs/stk/stk-4.5.1-r1.ebuild | 70 ++++++++++++++++++++++++++++++++++++++
1 file changed, 70 insertions(+)
diff --git a/media-libs/stk/stk-4.5.1-r1.ebuild b/media-libs/stk/stk-4.5.1-r1.ebuild
new file mode 100644
index 00000000000..71f85aada4b
--- /dev/null
+++ b/media-libs/stk/stk-4.5.1-r1.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit eutils autotools
+
+DESCRIPTION="Synthesis ToolKit in C++"
+HOMEPAGE="http://ccrma.stanford.edu/software/stk/"
+SRC_URI="http://ccrma.stanford.edu/software/stk/release/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="alsa debug doc jack oss static-libs"
+
+RDEPEND="alsa? ( media-libs/alsa-lib )
+ jack? ( virtual/jack )"
+DEPEND="${RDEPEND}
+ virtual/pkgconfig
+ dev-lang/perl"
+
+src_prepare() {
+ EPATCH_SUFFIX="patch" epatch "${FILESDIR}/${P}"
+ eapply_user
+
+ eautoreconf
+}
+
+src_configure() {
+ #breaks with --disable-foo...uses as --enable-foo
+ local myconf
+ if use debug; then
+ myconf="${myconf} --enable-debug"
+ fi
+ if use oss; then
+ myconf="${myconf} --with-oss"
+ fi
+ if use alsa; then
+ myconf="${myconf} --with-alsa"
+ fi
+ if use jack; then
+ myconf="${myconf} --with-jack"
+ fi
+
+ econf ${myconf} \
+ --enable-shared \
+ $(use_enable static-libs static) \
+ RAWWAVE_PATH=/usr/share/stk/rawwaves/
+}
+
+src_install() {
+ dodoc README.md
+
+ # install the lib
+ dolib src/libstk*
+
+ # install headers
+ insinto /usr/include/stk
+ doins include/*.h
+
+ # install rawwaves
+ insinto /usr/share/stk/rawwaves
+ doins rawwaves/*.raw
+
+ # install docs
+ if use doc; then
+ dohtml -r doc/html/*
+ fi
+}
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/stk/
@ 2018-03-25 21:59 Patrice Clement
0 siblings, 0 replies; 14+ messages in thread
From: Patrice Clement @ 2018-03-25 21:59 UTC (permalink / raw
To: gentoo-commits
commit: d1854d52f5f2fec387452eddf821813673f004b6
Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Wed Mar 21 19:51:01 2018 +0000
Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Sun Mar 25 21:59:09 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1854d52
media-libs/stk: remove old.
Closes: https://github.com/gentoo/gentoo/pull/7538
media-libs/stk/Manifest | 1 -
media-libs/stk/stk-4.4.4-r1.ebuild | 62 --------------------------------------
2 files changed, 63 deletions(-)
diff --git a/media-libs/stk/Manifest b/media-libs/stk/Manifest
index c556aabf9a4..2fb039c80a5 100644
--- a/media-libs/stk/Manifest
+++ b/media-libs/stk/Manifest
@@ -1,3 +1,2 @@
-DIST stk-4.4.4.tar.gz 6181713 BLAKE2B ffd0128b8875d4ed54a8fa8d31aa8a7b5602e5b4cde7f3017e4febd1f9c7fcfc63cc4153bccbabb612a6bff2aa3e80efeddad2a77f6e4288ec3722c5ced87634 SHA512 e36c43a20e95eb86ed0335ae17df23c1a672562656738496f9e2e5654a825292c4235e04774fcb0356d47a775b7d7af6b4fd63c9d151ab7f2f9195bb5f728e37
DIST stk-4.5.0.tar.gz 2466803 BLAKE2B 30e73179000a581c66a4e80fa00aaea481675b6779b18ec70619e7767884a23f0aa969c172c737cf2b24927d14c3bb91107750ae07b20e868177eb82c2ce3f9b SHA512 a8a19e171093735052d797ef29a6a287dc6753fa726e451865250364dfd22f43b190aa03498ec94b99f3dc137ef951aa85e2f2f3509c74cedada6eedb5a31785
DIST stk-4.5.1.tar.gz 2413113 BLAKE2B 5eedf936f26acd3e2f377a198b252ee36bcdbb642f0649c0db6c453beb670a1fc725c94af78ff3e075f50068ae6927b628de0174dba598191ed9f9d2f074c17c SHA512 c4c05edfb49b269d5d2518c06abad8e636c4f67a8598f5a03d406bbef04b8b3315d2592d35c8742ce9163b52215ac87b6349c0012e271a43707d109175b6d336
diff --git a/media-libs/stk/stk-4.4.4-r1.ebuild b/media-libs/stk/stk-4.4.4-r1.ebuild
deleted file mode 100644
index 0add9c2b6de..00000000000
--- a/media-libs/stk/stk-4.4.4-r1.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="2"
-inherit eutils autotools
-
-DESCRIPTION="Synthesis ToolKit in C++"
-HOMEPAGE="http://ccrma.stanford.edu/software/stk/"
-SRC_URI="http://ccrma.stanford.edu/software/stk/release/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="alsa debug doc jack oss"
-
-RDEPEND="alsa? ( media-libs/alsa-lib )
- jack? ( media-sound/jack-audio-connection-kit )"
-DEPEND="${RDEPEND}
- virtual/pkgconfig
- dev-lang/perl"
-
-src_prepare() {
- EPATCH_SUFFIX="patch" epatch "${FILESDIR}/${P}"
- eautoreconf
-}
-
-src_configure() {
- #breaks with --disable-foo...uses as --enable-foo
- local myconf
- if use debug; then
- myconf="${myconf} --enable-debug"
- fi
- if use oss; then
- myconf="${myconf} --with-oss"
- fi
- if use alsa; then
- myconf="${myconf} --with-alsa"
- fi
- if use jack; then
- myconf="${myconf} --with-jack"
- fi
-
- econf ${myconf} \
- RAWWAVE_PATH=/usr/share/stk/rawwaves/
-}
-
-src_install() {
- dodoc README || die "Failed to install README"
- # install the lib
- dolib src/libstk.* || die "Failed to install libstk.*"
- # install headers
- insinto /usr/include/stk || die "Failed to create header directory."
- doins include/*.h include/*.msg include/*.tbl \
- || die "Failed to install msg, tbl and h files."
- # install rawwaves
- insinto /usr/share/stk/rawwaves || die "Failed to create rawwave directory."
- doins rawwaves/*.raw || die "Failed to install rawwave files."
- # install docs
- if use doc; then
- dohtml -r doc/html/* || die "Failed to install docs."
- fi
-}
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/stk/
@ 2018-03-25 21:59 Patrice Clement
0 siblings, 0 replies; 14+ messages in thread
From: Patrice Clement @ 2018-03-25 21:59 UTC (permalink / raw
To: gentoo-commits
commit: 87174cadef24012b25ac24203ff4af62b4fa5471
Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Wed Mar 21 19:51:38 2018 +0000
Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Sun Mar 25 21:59:11 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=87174cad
media-libs/stk: use HTTPS.
media-libs/stk/stk-4.5.0.ebuild | 6 +++---
media-libs/stk/stk-4.5.1-r1.ebuild | 4 ++--
media-libs/stk/stk-4.5.1.ebuild | 6 +++---
3 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/media-libs/stk/stk-4.5.0.ebuild b/media-libs/stk/stk-4.5.0.ebuild
index 0645fb3db41..3a5a9c740d1 100644
--- a/media-libs/stk/stk-4.5.0.ebuild
+++ b/media-libs/stk/stk-4.5.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
@@ -6,8 +6,8 @@ EAPI=5
inherit eutils autotools
DESCRIPTION="Synthesis ToolKit in C++"
-HOMEPAGE="http://ccrma.stanford.edu/software/stk/"
-SRC_URI="http://ccrma.stanford.edu/software/stk/release/${P}.tar.gz"
+HOMEPAGE="https://ccrma.stanford.edu/software/stk/"
+SRC_URI="https://ccrma.stanford.edu/software/stk/release/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
diff --git a/media-libs/stk/stk-4.5.1-r1.ebuild b/media-libs/stk/stk-4.5.1-r1.ebuild
index 71f85aada4b..8d6a4005c32 100644
--- a/media-libs/stk/stk-4.5.1-r1.ebuild
+++ b/media-libs/stk/stk-4.5.1-r1.ebuild
@@ -6,8 +6,8 @@ EAPI=6
inherit eutils autotools
DESCRIPTION="Synthesis ToolKit in C++"
-HOMEPAGE="http://ccrma.stanford.edu/software/stk/"
-SRC_URI="http://ccrma.stanford.edu/software/stk/release/${P}.tar.gz"
+HOMEPAGE="https://ccrma.stanford.edu/software/stk/"
+SRC_URI="https://ccrma.stanford.edu/software/stk/release/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
diff --git a/media-libs/stk/stk-4.5.1.ebuild b/media-libs/stk/stk-4.5.1.ebuild
index 943ab4560da..72482af91aa 100644
--- a/media-libs/stk/stk-4.5.1.ebuild
+++ b/media-libs/stk/stk-4.5.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
@@ -6,8 +6,8 @@ EAPI=5
inherit eutils autotools
DESCRIPTION="Synthesis ToolKit in C++"
-HOMEPAGE="http://ccrma.stanford.edu/software/stk/"
-SRC_URI="http://ccrma.stanford.edu/software/stk/release/${P}.tar.gz"
+HOMEPAGE="https://ccrma.stanford.edu/software/stk/"
+SRC_URI="https://ccrma.stanford.edu/software/stk/release/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/stk/
@ 2018-05-01 21:31 Patrice Clement
0 siblings, 0 replies; 14+ messages in thread
From: Patrice Clement @ 2018-05-01 21:31 UTC (permalink / raw
To: gentoo-commits
commit: 1f5dde39d648db53935dcc9ddc6a97b3d9c4f5f7
Author: Marty E. Plummer <hanetzer <AT> startmail <DOT> com>
AuthorDate: Sat Apr 21 12:27:47 2018 +0000
Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Tue May 1 21:30:44 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f5dde39
media-libs/stk: drop unneeded eutils.eclass.
Package-Manager: Portage-2.3.31, Repoman-2.3.9
media-libs/stk/stk-4.5.1-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/stk/stk-4.5.1-r1.ebuild b/media-libs/stk/stk-4.5.1-r1.ebuild
index 53e78246741..d1f5900803f 100644
--- a/media-libs/stk/stk-4.5.1-r1.ebuild
+++ b/media-libs/stk/stk-4.5.1-r1.ebuild
@@ -3,7 +3,7 @@
EAPI=6
-inherit eutils autotools
+inherit autotools
DESCRIPTION="Synthesis ToolKit in C++"
HOMEPAGE="https://ccrma.stanford.edu/software/stk/"
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/stk/
@ 2020-02-08 0:43 Miroslav Šulc
0 siblings, 0 replies; 14+ messages in thread
From: Miroslav Šulc @ 2020-02-08 0:43 UTC (permalink / raw
To: gentoo-commits
commit: 8bc236bfeed87296bbbb66086050ec3f87df7082
Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 8 00:41:04 2020 +0000
Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Sat Feb 8 00:42:51 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8bc236bf
media-libs/stk: bumped to 4.6.1
updated to eapi7
Package-Manager: Portage-2.3.87, Repoman-2.3.20
Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
media-libs/stk/Manifest | 1 +
media-libs/stk/stk-4.6.1.ebuild | 79 +++++++++++++++++++++++++++++++++++++++++
2 files changed, 80 insertions(+)
diff --git a/media-libs/stk/Manifest b/media-libs/stk/Manifest
index f6ce8b7166f..eca239820cc 100644
--- a/media-libs/stk/Manifest
+++ b/media-libs/stk/Manifest
@@ -1 +1,2 @@
DIST stk-4.5.1.tar.gz 2413113 BLAKE2B 5eedf936f26acd3e2f377a198b252ee36bcdbb642f0649c0db6c453beb670a1fc725c94af78ff3e075f50068ae6927b628de0174dba598191ed9f9d2f074c17c SHA512 c4c05edfb49b269d5d2518c06abad8e636c4f67a8598f5a03d406bbef04b8b3315d2592d35c8742ce9163b52215ac87b6349c0012e271a43707d109175b6d336
+DIST stk-4.6.1.tar.gz 2593348 BLAKE2B 2cb269b8fb5732d55a394d5b8842c380b6a3e82e7338e972c6d22baf5ba1edee3f03ed699b9950d4a92a7ae3102bbb54f844ffd728c6478ebfb36328a1b89f2a SHA512 2a22078cdb630f7c014a5ab38070fd6a6d1e9aa719401e3190a040cb06b61003cd3095fe1a8890eff59e4fc42594fe893b4c0a8327175e1701c75de7537e1830
diff --git a/media-libs/stk/stk-4.6.1.ebuild b/media-libs/stk/stk-4.6.1.ebuild
new file mode 100644
index 00000000000..12eb50caa5f
--- /dev/null
+++ b/media-libs/stk/stk-4.6.1.ebuild
@@ -0,0 +1,79 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools
+
+DESCRIPTION="Synthesis ToolKit in C++"
+HOMEPAGE="https://ccrma.stanford.edu/software/stk/"
+SRC_URI="https://ccrma.stanford.edu/software/stk/release/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="alsa debug doc jack oss static-libs"
+
+BDEPEND="
+ virtual/pkgconfig
+"
+RDEPEND="alsa? ( media-libs/alsa-lib )
+ jack? ( virtual/jack )"
+DEPEND="${RDEPEND}
+ dev-lang/perl"
+
+PATCHES=(
+ "${FILESDIR}/${PN}-4.5.1"
+)
+
+HTML_DOCS=(
+ doc/html/.
+)
+
+src_prepare() {
+ default
+ eautoreconf
+}
+
+src_configure() {
+ #breaks with --disable-foo...uses as --enable-foo
+ local myconf
+ if use debug; then
+ myconf="${myconf} --enable-debug"
+ fi
+ if use oss; then
+ myconf="${myconf} --with-oss"
+ fi
+ if use alsa; then
+ myconf="${myconf} --with-alsa"
+ fi
+ if use jack; then
+ myconf="${myconf} --with-jack"
+ fi
+
+ econf ${myconf} \
+ --enable-shared \
+ $(use_enable static-libs static) \
+ RAWWAVE_PATH=/usr/share/stk/rawwaves/
+}
+
+src_install() {
+ dodoc README.md
+
+ # install the lib
+ dolib.so src/libstk*
+ use static-libs && dolib.a src/libstk*
+
+ # install headers
+ insinto /usr/include/stk
+ doins include/*.h
+
+ # install rawwaves
+ insinto /usr/share/stk/rawwaves
+ doins rawwaves/*.raw
+
+ # install docs
+ if use doc; then
+ einstalldocs
+ fi
+}
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/stk/
@ 2020-02-08 0:43 Miroslav Šulc
0 siblings, 0 replies; 14+ messages in thread
From: Miroslav Šulc @ 2020-02-08 0:43 UTC (permalink / raw
To: gentoo-commits
commit: 4f8f815cc1a4a42bb4a1fd84832da332ff360df8
Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 8 00:42:32 2020 +0000
Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Sat Feb 8 00:42:51 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f8f815c
media-libs/stk: removed obsolete 4.5.1-r1
Package-Manager: Portage-2.3.87, Repoman-2.3.20
Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
media-libs/stk/Manifest | 1 -
media-libs/stk/stk-4.5.1-r1.ebuild | 72 --------------------------------------
2 files changed, 73 deletions(-)
diff --git a/media-libs/stk/Manifest b/media-libs/stk/Manifest
index eca239820cc..a651b7254ec 100644
--- a/media-libs/stk/Manifest
+++ b/media-libs/stk/Manifest
@@ -1,2 +1 @@
-DIST stk-4.5.1.tar.gz 2413113 BLAKE2B 5eedf936f26acd3e2f377a198b252ee36bcdbb642f0649c0db6c453beb670a1fc725c94af78ff3e075f50068ae6927b628de0174dba598191ed9f9d2f074c17c SHA512 c4c05edfb49b269d5d2518c06abad8e636c4f67a8598f5a03d406bbef04b8b3315d2592d35c8742ce9163b52215ac87b6349c0012e271a43707d109175b6d336
DIST stk-4.6.1.tar.gz 2593348 BLAKE2B 2cb269b8fb5732d55a394d5b8842c380b6a3e82e7338e972c6d22baf5ba1edee3f03ed699b9950d4a92a7ae3102bbb54f844ffd728c6478ebfb36328a1b89f2a SHA512 2a22078cdb630f7c014a5ab38070fd6a6d1e9aa719401e3190a040cb06b61003cd3095fe1a8890eff59e4fc42594fe893b4c0a8327175e1701c75de7537e1830
diff --git a/media-libs/stk/stk-4.5.1-r1.ebuild b/media-libs/stk/stk-4.5.1-r1.ebuild
deleted file mode 100644
index d1f5900803f..00000000000
--- a/media-libs/stk/stk-4.5.1-r1.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools
-
-DESCRIPTION="Synthesis ToolKit in C++"
-HOMEPAGE="https://ccrma.stanford.edu/software/stk/"
-SRC_URI="https://ccrma.stanford.edu/software/stk/release/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="alsa debug doc jack oss static-libs"
-
-RDEPEND="alsa? ( media-libs/alsa-lib )
- jack? ( virtual/jack )"
-DEPEND="${RDEPEND}
- virtual/pkgconfig
- dev-lang/perl"
-
-PATCHES=(
- "${FILESDIR}/${P}"
-)
-
-src_prepare() {
- default
- eautoreconf
-}
-
-src_configure() {
- #breaks with --disable-foo...uses as --enable-foo
- local myconf
- if use debug; then
- myconf="${myconf} --enable-debug"
- fi
- if use oss; then
- myconf="${myconf} --with-oss"
- fi
- if use alsa; then
- myconf="${myconf} --with-alsa"
- fi
- if use jack; then
- myconf="${myconf} --with-jack"
- fi
-
- econf ${myconf} \
- --enable-shared \
- $(use_enable static-libs static) \
- RAWWAVE_PATH=/usr/share/stk/rawwaves/
-}
-
-src_install() {
- dodoc README.md
-
- # install the lib
- dolib src/libstk*
-
- # install headers
- insinto /usr/include/stk
- doins include/*.h
-
- # install rawwaves
- insinto /usr/share/stk/rawwaves
- doins rawwaves/*.raw
-
- # install docs
- if use doc; then
- dohtml -r doc/html/*
- fi
-}
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/stk/
@ 2020-07-20 6:42 Agostino Sarubbo
0 siblings, 0 replies; 14+ messages in thread
From: Agostino Sarubbo @ 2020-07-20 6:42 UTC (permalink / raw
To: gentoo-commits
commit: d4e7daa4b02cc0859cab21d50310ae17e6384d6c
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 20 06:42:16 2020 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Mon Jul 20 06:42:16 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4e7daa4
media-libs/stk: amd64 stable wrt bug #728114
Package-Manager: Portage-2.3.99, Repoman-2.3.22
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
media-libs/stk/stk-4.6.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/stk/stk-4.6.1.ebuild b/media-libs/stk/stk-4.6.1.ebuild
index 12eb50caa5f..dcf17ad19a5 100644
--- a/media-libs/stk/stk-4.6.1.ebuild
+++ b/media-libs/stk/stk-4.6.1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://ccrma.stanford.edu/software/stk/release/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
IUSE="alsa debug doc jack oss static-libs"
BDEPEND="
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/stk/
@ 2020-07-21 9:33 Agostino Sarubbo
0 siblings, 0 replies; 14+ messages in thread
From: Agostino Sarubbo @ 2020-07-21 9:33 UTC (permalink / raw
To: gentoo-commits
commit: 3fcb5950958592229aafb934ef26c3e319f6ee9c
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Tue Jul 21 09:32:43 2020 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Tue Jul 21 09:32:43 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3fcb5950
media-libs/stk: x86 stable wrt bug #728114
Package-Manager: Portage-2.3.99, Repoman-2.3.22
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
media-libs/stk/stk-4.6.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/stk/stk-4.6.1.ebuild b/media-libs/stk/stk-4.6.1.ebuild
index dcf17ad19a5..7f4e3b6ed7c 100644
--- a/media-libs/stk/stk-4.6.1.ebuild
+++ b/media-libs/stk/stk-4.6.1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://ccrma.stanford.edu/software/stk/release/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
IUSE="alsa debug doc jack oss static-libs"
BDEPEND="
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/stk/
@ 2021-11-20 8:46 Miroslav Šulc
0 siblings, 0 replies; 14+ messages in thread
From: Miroslav Šulc @ 2021-11-20 8:46 UTC (permalink / raw
To: gentoo-commits
commit: bac6bfca197ceb50d2246f4d829c11ba9f703cec
Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 20 08:46:31 2021 +0000
Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Sat Nov 20 08:46:42 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bac6bfca
media-libs/stk: bump to 4.6.2
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
media-libs/stk/Manifest | 1 +
media-libs/stk/stk-4.6.2.ebuild | 79 +++++++++++++++++++++++++++++++++++++++++
2 files changed, 80 insertions(+)
diff --git a/media-libs/stk/Manifest b/media-libs/stk/Manifest
index a651b7254ec9..c0b3d102f89a 100644
--- a/media-libs/stk/Manifest
+++ b/media-libs/stk/Manifest
@@ -1 +1,2 @@
DIST stk-4.6.1.tar.gz 2593348 BLAKE2B 2cb269b8fb5732d55a394d5b8842c380b6a3e82e7338e972c6d22baf5ba1edee3f03ed699b9950d4a92a7ae3102bbb54f844ffd728c6478ebfb36328a1b89f2a SHA512 2a22078cdb630f7c014a5ab38070fd6a6d1e9aa719401e3190a040cb06b61003cd3095fe1a8890eff59e4fc42594fe893b4c0a8327175e1701c75de7537e1830
+DIST stk-4.6.2.tar.gz 2618125 BLAKE2B 8673cabbc57c5b520af62def967bf3923a91c7b619bd29faaebaa4e3fa6aabcd9dc43e605663d8062650b105ae60ebefc44a3fa420ef711119861ce03e77f130 SHA512 35a7f559cca5c9b5998528a566ae27bace3cac56cefda7ae54c06179f5002d2906c6ede6274bf06100dd6aa9dc0d1459bb8fca4a2072c686c2abfd493b6f2f3c
diff --git a/media-libs/stk/stk-4.6.2.ebuild b/media-libs/stk/stk-4.6.2.ebuild
new file mode 100644
index 000000000000..725704b60639
--- /dev/null
+++ b/media-libs/stk/stk-4.6.2.ebuild
@@ -0,0 +1,79 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools
+
+DESCRIPTION="Synthesis ToolKit in C++"
+HOMEPAGE="https://ccrma.stanford.edu/software/stk/"
+SRC_URI="https://ccrma.stanford.edu/software/stk/release/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="alsa debug doc jack oss static-libs"
+
+BDEPEND="
+ virtual/pkgconfig
+"
+RDEPEND="alsa? ( media-libs/alsa-lib )
+ jack? ( virtual/jack )"
+DEPEND="${RDEPEND}
+ dev-lang/perl"
+
+PATCHES=(
+ "${FILESDIR}/${PN}-4.5.1"
+)
+
+HTML_DOCS=(
+ doc/html/.
+)
+
+src_prepare() {
+ default
+ eautoreconf
+}
+
+src_configure() {
+ #breaks with --disable-foo...uses as --enable-foo
+ local myconf
+ if use debug; then
+ myconf="${myconf} --enable-debug"
+ fi
+ if use oss; then
+ myconf="${myconf} --with-oss"
+ fi
+ if use alsa; then
+ myconf="${myconf} --with-alsa"
+ fi
+ if use jack; then
+ myconf="${myconf} --with-jack"
+ fi
+
+ econf ${myconf} \
+ --enable-shared \
+ $(use_enable static-libs static) \
+ RAWWAVE_PATH=/usr/share/stk/rawwaves/
+}
+
+src_install() {
+ dodoc README.md
+
+ # install the lib
+ dolib.so src/libstk*
+ use static-libs && dolib.a src/libstk*
+
+ # install headers
+ insinto /usr/include/stk
+ doins include/*.h
+
+ # install rawwaves
+ insinto /usr/share/stk/rawwaves
+ doins rawwaves/*.raw
+
+ # install docs
+ if use doc; then
+ einstalldocs
+ fi
+}
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/stk/
@ 2021-12-21 8:13 Miroslav Šulc
0 siblings, 0 replies; 14+ messages in thread
From: Miroslav Šulc @ 2021-12-21 8:13 UTC (permalink / raw
To: gentoo-commits
commit: 72d5502eb2a91b84b576f133ae8882eb9a8ed614
Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 21 08:13:02 2021 +0000
Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Tue Dec 21 08:13:02 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72d5502e
media-libs/stk: 4.6.2 - added required use
Closes: https://bugs.gentoo.org/709002
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
media-libs/stk/stk-4.6.2.ebuild | 1 +
1 file changed, 1 insertion(+)
diff --git a/media-libs/stk/stk-4.6.2.ebuild b/media-libs/stk/stk-4.6.2.ebuild
index 725704b60639..5191c27f4f3d 100644
--- a/media-libs/stk/stk-4.6.2.ebuild
+++ b/media-libs/stk/stk-4.6.2.ebuild
@@ -13,6 +13,7 @@ LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="alsa debug doc jack oss static-libs"
+REQUIRED_USE="|| ( alsa jack oss )"
BDEPEND="
virtual/pkgconfig
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/stk/
@ 2022-01-20 18:50 Sam James
0 siblings, 0 replies; 14+ messages in thread
From: Sam James @ 2022-01-20 18:50 UTC (permalink / raw
To: gentoo-commits
commit: 88752cd087fa2cd656f47880ec0984b765178052
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 20 18:49:44 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Jan 20 18:49:44 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88752cd0
media-libs/stk: Stabilize 4.6.2 x86, #831563
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-libs/stk/stk-4.6.2.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/media-libs/stk/stk-4.6.2.ebuild b/media-libs/stk/stk-4.6.2.ebuild
index 5191c27f4f3d..c8993c4329bb 100644
--- a/media-libs/stk/stk-4.6.2.ebuild
+++ b/media-libs/stk/stk-4.6.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -11,7 +11,7 @@ SRC_URI="https://ccrma.stanford.edu/software/stk/release/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
IUSE="alsa debug doc jack oss static-libs"
REQUIRED_USE="|| ( alsa jack oss )"
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/stk/
@ 2022-02-03 11:56 Jakov Smolić
0 siblings, 0 replies; 14+ messages in thread
From: Jakov Smolić @ 2022-02-03 11:56 UTC (permalink / raw
To: gentoo-commits
commit: 98afa061bbfb351e8b5cf51a66083be257cac2d5
Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 3 11:56:46 2022 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Thu Feb 3 11:56:46 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98afa061
media-libs/stk: Stabilize 4.6.2 amd64, #831563
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
media-libs/stk/stk-4.6.2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/stk/stk-4.6.2.ebuild b/media-libs/stk/stk-4.6.2.ebuild
index c8993c4329bb..52b7e39ead65 100644
--- a/media-libs/stk/stk-4.6.2.ebuild
+++ b/media-libs/stk/stk-4.6.2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://ccrma.stanford.edu/software/stk/release/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
IUSE="alsa debug doc jack oss static-libs"
REQUIRED_USE="|| ( alsa jack oss )"
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/stk/
@ 2022-02-03 14:23 Miroslav Šulc
0 siblings, 0 replies; 14+ messages in thread
From: Miroslav Šulc @ 2022-02-03 14:23 UTC (permalink / raw
To: gentoo-commits
commit: 2067ac1c7323bfb18811aa9775b6586b406fc892
Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 3 14:23:26 2022 +0000
Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Thu Feb 3 14:23:26 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2067ac1c
media-libs/stk: removed obsolete 4.6.1
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
media-libs/stk/Manifest | 1 -
media-libs/stk/stk-4.6.1.ebuild | 79 -----------------------------------------
2 files changed, 80 deletions(-)
diff --git a/media-libs/stk/Manifest b/media-libs/stk/Manifest
index c0b3d102f89a..0ed41fb95651 100644
--- a/media-libs/stk/Manifest
+++ b/media-libs/stk/Manifest
@@ -1,2 +1 @@
-DIST stk-4.6.1.tar.gz 2593348 BLAKE2B 2cb269b8fb5732d55a394d5b8842c380b6a3e82e7338e972c6d22baf5ba1edee3f03ed699b9950d4a92a7ae3102bbb54f844ffd728c6478ebfb36328a1b89f2a SHA512 2a22078cdb630f7c014a5ab38070fd6a6d1e9aa719401e3190a040cb06b61003cd3095fe1a8890eff59e4fc42594fe893b4c0a8327175e1701c75de7537e1830
DIST stk-4.6.2.tar.gz 2618125 BLAKE2B 8673cabbc57c5b520af62def967bf3923a91c7b619bd29faaebaa4e3fa6aabcd9dc43e605663d8062650b105ae60ebefc44a3fa420ef711119861ce03e77f130 SHA512 35a7f559cca5c9b5998528a566ae27bace3cac56cefda7ae54c06179f5002d2906c6ede6274bf06100dd6aa9dc0d1459bb8fca4a2072c686c2abfd493b6f2f3c
diff --git a/media-libs/stk/stk-4.6.1.ebuild b/media-libs/stk/stk-4.6.1.ebuild
deleted file mode 100644
index 7f4e3b6ed7c8..000000000000
--- a/media-libs/stk/stk-4.6.1.ebuild
+++ /dev/null
@@ -1,79 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools
-
-DESCRIPTION="Synthesis ToolKit in C++"
-HOMEPAGE="https://ccrma.stanford.edu/software/stk/"
-SRC_URI="https://ccrma.stanford.edu/software/stk/release/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="alsa debug doc jack oss static-libs"
-
-BDEPEND="
- virtual/pkgconfig
-"
-RDEPEND="alsa? ( media-libs/alsa-lib )
- jack? ( virtual/jack )"
-DEPEND="${RDEPEND}
- dev-lang/perl"
-
-PATCHES=(
- "${FILESDIR}/${PN}-4.5.1"
-)
-
-HTML_DOCS=(
- doc/html/.
-)
-
-src_prepare() {
- default
- eautoreconf
-}
-
-src_configure() {
- #breaks with --disable-foo...uses as --enable-foo
- local myconf
- if use debug; then
- myconf="${myconf} --enable-debug"
- fi
- if use oss; then
- myconf="${myconf} --with-oss"
- fi
- if use alsa; then
- myconf="${myconf} --with-alsa"
- fi
- if use jack; then
- myconf="${myconf} --with-jack"
- fi
-
- econf ${myconf} \
- --enable-shared \
- $(use_enable static-libs static) \
- RAWWAVE_PATH=/usr/share/stk/rawwaves/
-}
-
-src_install() {
- dodoc README.md
-
- # install the lib
- dolib.so src/libstk*
- use static-libs && dolib.a src/libstk*
-
- # install headers
- insinto /usr/include/stk
- doins include/*.h
-
- # install rawwaves
- insinto /usr/share/stk/rawwaves
- doins rawwaves/*.raw
-
- # install docs
- if use doc; then
- einstalldocs
- fi
-}
^ permalink raw reply related [flat|nested] 14+ messages in thread
end of thread, other threads:[~2022-02-03 14:23 UTC | newest]
Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-03-25 21:59 [gentoo-commits] repo/gentoo:master commit in: media-libs/stk/ Patrice Clement
-- strict thread matches above, loose matches on Subject: below --
2022-02-03 14:23 Miroslav Šulc
2022-02-03 11:56 Jakov Smolić
2022-01-20 18:50 Sam James
2021-12-21 8:13 Miroslav Šulc
2021-11-20 8:46 Miroslav Šulc
2020-07-21 9:33 Agostino Sarubbo
2020-07-20 6:42 Agostino Sarubbo
2020-02-08 0:43 Miroslav Šulc
2020-02-08 0:43 Miroslav Šulc
2018-05-01 21:31 Patrice Clement
2018-03-25 21:59 Patrice Clement
2018-01-01 19:28 Miroslav Šulc
2017-08-01 14:08 Amy Liffey
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox