diff options
| author | root <root@alpha.trunkmasters.com> | 2026-06-12 19:09:37 -0500 |
|---|---|---|
| committer | root <root@alpha.trunkmasters.com> | 2026-06-12 19:09:37 -0500 |
| commit | b590c8d7572b727d565cc0b8ff660d43569845de (patch) | |
| tree | 06f7a4102ea4e845df8b66660f252920d52952f9 /media-sound/patchage | |
| parent | 24f9cbfc4c34fdb6a6e03311674414e881ceab47 (diff) | |
| download | baldeagleos-repo-b590c8d7572b727d565cc0b8ff660d43569845de.tar.gz baldeagleos-repo-b590c8d7572b727d565cc0b8ff660d43569845de.tar.xz baldeagleos-repo-b590c8d7572b727d565cc0b8ff660d43569845de.zip | |
Adding metadata
Diffstat (limited to 'media-sound/patchage')
| -rw-r--r-- | media-sound/patchage/Manifest | 1 | ||||
| -rw-r--r-- | media-sound/patchage/metadata.xml | 12 | ||||
| -rw-r--r-- | media-sound/patchage/patchage-1.0.10.ebuild | 50 | ||||
| -rw-r--r-- | media-sound/patchage/patchage-9999.ebuild | 56 |
4 files changed, 119 insertions, 0 deletions
diff --git a/media-sound/patchage/Manifest b/media-sound/patchage/Manifest new file mode 100644 index 000000000000..29743404e30c --- /dev/null +++ b/media-sound/patchage/Manifest @@ -0,0 +1 @@ +DIST patchage-1.0.10.tar.xz 341164 BLAKE2B db7e17acc483b1fec27c80a3bedf3b546d303d8ce4f90f7f7669a4e4e1dcb526881d949d91edfdd6283dff3d9382c4c3534972065e2769a43e9e4b982b0dfbec SHA512 c6c43afc50978db02517282c1e8c7aad131e30f6255e79e65ea17edcee0b470ec3172da2c057abe4cf4bb12a081a92165ac322cfc4ec77382bb992e74827831b diff --git a/media-sound/patchage/metadata.xml b/media-sound/patchage/metadata.xml new file mode 100644 index 000000000000..3633c54796d6 --- /dev/null +++ b/media-sound/patchage/metadata.xml @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "https://docs.baldeagleos.com/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="project"> + <email>proaudio@gentoo.org</email> + <name>Gentoo ProAudio Project</name> + </maintainer> + <use> + <flag name="jack-dbus">Use Jack via D-Bus instead of libjack</flag> + </use> + <origin>baldeagleos-repo</origin> +</pkgmetadata> diff --git a/media-sound/patchage/patchage-1.0.10.ebuild b/media-sound/patchage/patchage-1.0.10.ebuild new file mode 100644 index 000000000000..45bf464c1982 --- /dev/null +++ b/media-sound/patchage/patchage-1.0.10.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit meson xdg + +DESCRIPTION="Modular patch bay for JACK-based audio and MIDI systems" +HOMEPAGE="https://drobilla.net/software/patchage" + +if [[ ${PV} == 9999 ]] ; then + inherit git-r3 + EGIT_REPO_URI="https://gitlab.com/drobilla/patchage.git" +else + SRC_URI="https://download.drobilla.net/${P}.tar.xz" + KEYWORDS="amd64 x86" +fi + +LICENSE="GPL-2" +SLOT="0" +IUSE="alsa jack jack-dbus test" +RESTRICT="!test? ( test )" + +BDEPEND=" + virtual/pkgconfig +" +RDEPEND="dev-cpp/glibmm:2 + dev-cpp/gtkmm:2.4 + media-libs/ganv + alsa? ( media-libs/alsa-lib ) + jack? ( virtual/jack ) + jack-dbus? ( + dev-libs/dbus-glib + sys-apps/dbus + )" +DEPEND="${RDEPEND} + dev-libs/boost + >=dev-libs/libfmt-9:=" + +DOCS=( AUTHORS NEWS README.md ) + +src_configure() { + local emesonargs=( + $(meson_feature alsa) + $(meson_feature jack) + $(meson_feature jack-dbus jack_dbus) + $(meson_feature test tests) + ) + meson_src_configure +} diff --git a/media-sound/patchage/patchage-9999.ebuild b/media-sound/patchage/patchage-9999.ebuild new file mode 100644 index 000000000000..bde44715ff7f --- /dev/null +++ b/media-sound/patchage/patchage-9999.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit meson xdg + +DESCRIPTION="Modular patch bay for JACK-based audio and MIDI systems" +HOMEPAGE="https://drobilla.net/software/patchage" + +if [[ ${PV} == 9999 ]] ; then + inherit git-r3 + EGIT_REPO_URI="https://gitlab.com/drobilla/patchage.git" +else + SRC_URI="https://download.drobilla.net/${P}.tar.xz" + KEYWORDS="~amd64 ~x86" +fi + +LICENSE="GPL-2" +SLOT="0" +IUSE="alsa jack jack-dbus test" +RESTRICT="!test? ( test )" + +BDEPEND=" + virtual/pkgconfig +" +# tests also need autoship package but that's not packaged in gentoo +RDEPEND="dev-cpp/glibmm:2 + dev-cpp/gtkmm:2.4 + media-libs/ganv + alsa? ( media-libs/alsa-lib ) + jack? ( virtual/jack ) + jack-dbus? ( + dev-libs/dbus-glib + sys-apps/dbus + ) + test? ( + dev-util/cppcheck + dev-util/reuse + ) +" +DEPEND="${RDEPEND} + dev-libs/boost + >=dev-libs/libfmt-9:=" + +DOCS=( AUTHORS NEWS README.md ) + +src_configure() { + local emesonargs=( + $(meson_feature alsa) + $(meson_feature jack) + $(meson_feature jack-dbus jack_dbus) + $(meson_use test lint) + ) + meson_src_configure +} |
