diff options
| author | root <root@alpha.trunkmasters.com> | 2026-06-04 16:24:49 -0500 |
|---|---|---|
| committer | root <root@alpha.trunkmasters.com> | 2026-06-04 16:24:49 -0500 |
| commit | a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch) | |
| tree | 0c52bbae1c242fbc296bd650fcd1167685f81492 /media-plugins/gmsynth-lv2 | |
| parent | bfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff) | |
| download | baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip | |
Adding metadata
Diffstat (limited to 'media-plugins/gmsynth-lv2')
| -rw-r--r-- | media-plugins/gmsynth-lv2/Manifest | 1 | ||||
| -rw-r--r-- | media-plugins/gmsynth-lv2/files/gmsynth-lv2-0.6.3-makefile.patch | 34 | ||||
| -rw-r--r-- | media-plugins/gmsynth-lv2/gmsynth-lv2-0.6.3.ebuild | 47 | ||||
| -rw-r--r-- | media-plugins/gmsynth-lv2/metadata.xml | 11 |
4 files changed, 0 insertions, 93 deletions
diff --git a/media-plugins/gmsynth-lv2/Manifest b/media-plugins/gmsynth-lv2/Manifest deleted file mode 100644 index 7c29af48e36f..000000000000 --- a/media-plugins/gmsynth-lv2/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST gmsynth-lv2-0.6.3.tar.gz 29724144 BLAKE2B db6d79731d42888e9709730e24acc8be123cc52d69f82c369d9e0f0d962cf825e9e86825a51563bffd5cd8a16ea4e632de3038963bf3236f712803cf66311030 SHA512 96b7491ebd8f83dfb9e3289c6736ca5518e8513b472733feb91f16199be00e2a7fc433800bcc44fe7dd3d490382492e0b2403a3efaafe8fd219a999ae813d198 diff --git a/media-plugins/gmsynth-lv2/files/gmsynth-lv2-0.6.3-makefile.patch b/media-plugins/gmsynth-lv2/files/gmsynth-lv2-0.6.3-makefile.patch deleted file mode 100644 index 027a3700b46a..000000000000 --- a/media-plugins/gmsynth-lv2/files/gmsynth-lv2-0.6.3-makefile.patch +++ /dev/null @@ -1,34 +0,0 @@ -respect userflags ---- a/Makefile -+++ b/Makefile -@@ -17,18 +17,12 @@ gmsynth_VERSION?=$(shell git describe --tags HEAD 2>/dev/null | sed 's/-g.*$$//; - - ############################################################################### - --MACHINE=$(shell uname -m) --ifneq (,$(findstring x64,$(MACHINE))) -- HAVE_SSE=yes --endif --ifneq (,$(findstring 86,$(MACHINE))) -- HAVE_SSE=yes --endif -+HAVE_SSE ?= yes - - ifeq ($(HAVE_SSE),yes) -- OPTIMIZATIONS ?= -msse -msse2 -mfpmath=sse -ffast-math -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG -+ OPTIMIZATIONS ?= -msse -msse2 -mfpmath=sse -ffast-math -fomit-frame-pointer -fno-finite-math-only -DNDEBUG - else -- OPTIMIZATIONS ?= -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG -+ OPTIMIZATIONS ?= -fomit-frame-pointer -fno-finite-math-only -DNDEBUG - endif - - ############################################################################### -@@ -166,7 +160,7 @@ DSP_DEPS = $(DSP_SRC) - - $(BUILDDIR)$(LV2NAME)$(LIB_EXT): $(DSP_DEPS) Makefile - @mkdir -p $(BUILDDIR) -- $(CC) $(CPPFLAGS) $(CFLAGS) -std=gnu99 \ -+ $(CC) $(CPPFLAGS) -std=gnu99 $(CFLAGS) \ - -o $(BUILDDIR)$(LV2NAME)$(LIB_EXT) $(DSP_SRC) \ - -shared $(LV2LDFLAGS) $(LDFLAGS) $(LOADLIBES) - $(STRIP) $(STRIPFLAGS) $(BUILDDIR)$(LV2NAME)$(LIB_EXT) diff --git a/media-plugins/gmsynth-lv2/gmsynth-lv2-0.6.3.ebuild b/media-plugins/gmsynth-lv2/gmsynth-lv2-0.6.3.ebuild deleted file mode 100644 index 3bef426e4b21..000000000000 --- a/media-plugins/gmsynth-lv2/gmsynth-lv2-0.6.3.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit toolchain-funcs - -DESCRIPTION="General MIDI Sample Player Plugin" -HOMEPAGE="https://x42-plugins.com/x42/x42-gmsynth" -SRC_URI="https://github.com/x42/gmsynth.lv2/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" -S="${WORKDIR}/${P/-lv2/.lv2}" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="cpu_flags_x86_sse2" - -DEPEND=" - dev-libs/glib:2 - >=media-libs/lv2-1.18.6 -" -RDEPEND="${DEPEND}" -BDEPEND=" - virtual/pkgconfig -" - -PATCHES=( - "${FILESDIR}"/${PN}-0.6.3-makefile.patch -) - -src_compile() { - tc-export PKG_CONFIG CC - MYEMAKEARGS=( - gmsynth_VERSION="${PV}" - HAVE_SSE="$(usex cpu_flags_x86_sse2)" - # not standard but aligned with the path used by ardour - # https://lv2plug.in/pages/filesystem-hierarchy-standard.html - LV2DIR="${EPREFIX}/usr/$(get_libdir)/lv2" - PREFIX="${EPREFIX}/usr" - STRIP="true" - ) - emake "${MYEMAKEARGS[@]}" -} - -src_install() { - emake "${MYEMAKEARGS[@]}" DESTDIR="${D}" install -} diff --git a/media-plugins/gmsynth-lv2/metadata.xml b/media-plugins/gmsynth-lv2/metadata.xml deleted file mode 100644 index 332f7cd1c6c8..000000000000 --- a/media-plugins/gmsynth-lv2/metadata.xml +++ /dev/null @@ -1,11 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="project"> - <email>proaudio@gentoo.org</email> - <name>Gentoo ProAudio Project</name> - </maintainer> - <upstream> - <remote-id type="github">x42/gmsynth.lv2</remote-id> - </upstream> -</pkgmetadata> |
