Index: head/audio/midiomatic-lv2/Makefile =================================================================== --- head/audio/midiomatic-lv2/Makefile (revision 561876) +++ head/audio/midiomatic-lv2/Makefile (revision 561877) @@ -1,27 +1,34 @@ # $FreeBSD$ PORTNAME= midiomatic DISTVERSIONPREFIX= v -DISTVERSION= 0.1.1-beta +DISTVERSION= 0.2.0 CATEGORIES= audio PKGNAMESUFFIX= -lv2 MAINTAINER= yuri@FreeBSD.org COMMENT= Collection of MIDI filter, generator and processor plugins LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= lv2>0:audio/lv2 \ bash:shells/bash USES= compiler:c++0x gmake pkgconfig shebangfix SHEBANG_GLOB= *.sh USE_GITHUB= yes GH_ACCOUNT= SpotlightKid -GH_TUPLE= DISTRHO:DPF:30ba386:dpf/dpf +GH_TUPLE= DISTRHO:DPF:27d3046a7b3027e794f9b90ca66788c87439992f:DISTRHO_DPF/dpf + +OPTIONS_DEFINE_amd64= SSE +OPTIONS_DEFINE_i386= SSE +OPTIONS_DEFAULT_amd64= SSE +OPTIONS_DEFAULT_i386= SSE + +SSE_MAKE_ARGS= PORT_SIMD_FLAGS="-msse -msse2 -mfpmath=sse" pre-install: @${MKDIR} ${STAGEDIR}${PREFIX}/lib/vst .include Index: head/audio/midiomatic-lv2/distinfo =================================================================== --- head/audio/midiomatic-lv2/distinfo (revision 561876) +++ head/audio/midiomatic-lv2/distinfo (revision 561877) @@ -1,5 +1,5 @@ -TIMESTAMP = 1598837685 -SHA256 (SpotlightKid-midiomatic-v0.1.1-beta_GH0.tar.gz) = f337b1a47ec0392f446f0888dcfc9d9715b619aa72cf0782c75be77b0114841e -SIZE (SpotlightKid-midiomatic-v0.1.1-beta_GH0.tar.gz) = 111520 -SHA256 (DISTRHO-DPF-30ba386_GH0.tar.gz) = f04ba14cc3b9417dbbaded5f205bd7eaed51edc1396fd30e5fc47d8403076724 -SIZE (DISTRHO-DPF-30ba386_GH0.tar.gz) = 2113840 +TIMESTAMP = 1610920667 +SHA256 (SpotlightKid-midiomatic-v0.2.0_GH0.tar.gz) = ce0ce1df4bc832a6ce7d8d593a7a767a468a017d4b4f08b64b636c2f39d2dc9a +SIZE (SpotlightKid-midiomatic-v0.2.0_GH0.tar.gz) = 217324 +SHA256 (DISTRHO-DPF-27d3046a7b3027e794f9b90ca66788c87439992f_GH0.tar.gz) = 1434492c91dca41d7648c38f58f1eded04731cbd3bc9307546fd0bfb7378c8e4 +SIZE (DISTRHO-DPF-27d3046a7b3027e794f9b90ca66788c87439992f_GH0.tar.gz) = 2121287 Index: head/audio/midiomatic-lv2/files/patch-dpf_Makefile.base.mk =================================================================== --- head/audio/midiomatic-lv2/files/patch-dpf_Makefile.base.mk (revision 561876) +++ head/audio/midiomatic-lv2/files/patch-dpf_Makefile.base.mk (revision 561877) @@ -1,11 +1,11 @@ ---- dpf/Makefile.base.mk.orig 2019-11-04 21:45:33 UTC +--- dpf/Makefile.base.mk.orig 2021-01-17 22:01:08 UTC +++ dpf/Makefile.base.mk -@@ -129,7 +129,7 @@ endif - # Set build and link flags +@@ -132,7 +132,7 @@ BASE_FLAGS = -Wall -Wextra -pipe -MD -MP + BASE_OPTS = -O3 -ffast-math -fdata-sections -ffunction-sections - BASE_FLAGS = -Wall -Wextra -pipe -MD -MP --BASE_OPTS = -O3 -ffast-math -mtune=generic -fdata-sections -ffunction-sections -+BASE_OPTS = -O3 -ffast-math -fdata-sections -ffunction-sections - ifeq ($(CPU_I386_OR_X86_64),true) - BASE_OPTS += -msse -msse2 +-BASE_OPTS += -mtune=generic -msse -msse2 ++BASE_OPTS += ${PORT_SIMD_FLAGS} + endif + + ifeq ($(CPU_ARM),true) Index: head/audio/midiomatic-lv2/files/patch-plugins_MIDICCMapX4_Makefile =================================================================== --- head/audio/midiomatic-lv2/files/patch-plugins_MIDICCMapX4_Makefile (nonexistent) +++ head/audio/midiomatic-lv2/files/patch-plugins_MIDICCMapX4_Makefile (revision 561877) @@ -0,0 +1,51 @@ +--- plugins/MIDICCMapX4/Makefile.orig 2021-01-17 22:03:24 UTC ++++ plugins/MIDICCMapX4/Makefile +@@ -77,13 +77,13 @@ all: $(TARGETS) + + install: all + ifeq ($(BUILD_DSSI),true) +- @install -Dm755 $(TARGET_DIR)/$(NAME)-dssi$(LIB_EXT) -t $(DESTDIR)$(DSSI_DIR) ++ @install -Dm755 $(TARGET_DIR)/$(NAME)-dssi$(LIB_EXT) $(DESTDIR)$(DSSI_DIR) + endif + ifeq ($(BUILD_LADSPA),true) +- @install -Dm755 $(TARGET_DIR)/$(NAME)-ladspa$(LIB_EXT) -t $(DESTDIR)$(LADSPA_DIR) ++ @install -Dm755 $(TARGET_DIR)/$(NAME)-ladspa$(LIB_EXT) $(DESTDIR)$(LADSPA_DIR) + endif + ifeq ($(BUILD_VST2),true) +- @install -Dm755 $(TARGET_DIR)/$(NAME)-vst$(LIB_EXT) -t $(DESTDIR)$(VST_DIR) ++ @install -Dm755 $(TARGET_DIR)/$(NAME)-vst$(LIB_EXT) $(DESTDIR)$(VST_DIR) + endif + ifeq ($(BUILD_LV2),true) + @install -dm755 $(DESTDIR)$(LV2_DIR) && \ +@@ -91,26 +91,26 @@ ifeq ($(BUILD_LV2),true) + endif + ifeq ($(BUILD_JACK),true) + ifeq ($(HAVE_JACK),true) +- @install -Dm755 $(TARGET_DIR)/$(NAME)$(APP_EXT) -t $(DESTDIR)$(BINDIR) ++ @install -Dm755 $(TARGET_DIR)/$(NAME)$(APP_EXT) $(DESTDIR)$(BINDIR) + endif + endif + + install-user: all + ifeq ($(BUILD_DSSI),true) +- @install -Dm755 $(TARGET_DIR)/$(NAME)-dssi$(LIB_EXT) -t $(HOME)/.dssi ++ @install -Dm755 $(TARGET_DIR)/$(NAME)-dssi$(LIB_EXT) $(HOME)/.dssi + endif + ifeq ($(BUILD_LADSPA),true) +- @install -Dm755 $(TARGET_DIR)/$(NAME)-ladspa$(LIB_EXT) -t $(HOME)/.ladspa ++ @install -Dm755 $(TARGET_DIR)/$(NAME)-ladspa$(LIB_EXT) $(HOME)/.ladspa + endif + ifeq ($(BUILD_VST2),true) +- @install -Dm755 $(TARGET_DIR)/$(NAME)-vst$(LIB_EXT) -t $(HOME)/.vst ++ @install -Dm755 $(TARGET_DIR)/$(NAME)-vst$(LIB_EXT) $(HOME)/.vst + endif + ifeq ($(BUILD_LV2),true) + @install -dm755 $(HOME)/.lv2 && \ + cp -rf $(TARGET_DIR)/$(NAME).lv2 $(HOME)/.lv2 + endif + ifeq ($(BUILD_JACK),true) +- @install -Dm755 $(TARGET_DIR)/$(NAME)$(APP_EXT) -t $(HOME)/bin ++ @install -Dm755 $(TARGET_DIR)/$(NAME)$(APP_EXT) $(HOME)/bin + endif + + # -------------------------------------------------------------- Property changes on: head/audio/midiomatic-lv2/files/patch-plugins_MIDICCMapX4_Makefile ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/audio/midiomatic-lv2/files/patch-plugins_MIDICCToPressure_Makefile =================================================================== --- head/audio/midiomatic-lv2/files/patch-plugins_MIDICCToPressure_Makefile (nonexistent) +++ head/audio/midiomatic-lv2/files/patch-plugins_MIDICCToPressure_Makefile (revision 561877) @@ -0,0 +1,51 @@ +--- plugins/MIDICCToPressure/Makefile.orig 2021-01-17 22:04:50 UTC ++++ plugins/MIDICCToPressure/Makefile +@@ -77,13 +77,13 @@ all: $(TARGETS) + + install: all + ifeq ($(BUILD_DSSI),true) +- @install -Dm755 $(TARGET_DIR)/$(NAME)-dssi$(LIB_EXT) -t $(DESTDIR)$(DSSI_DIR) ++ @install -Dm755 $(TARGET_DIR)/$(NAME)-dssi$(LIB_EXT) $(DESTDIR)$(DSSI_DIR) + endif + ifeq ($(BUILD_LADSPA),true) +- @install -Dm755 $(TARGET_DIR)/$(NAME)-ladspa$(LIB_EXT) -t $(DESTDIR)$(LADSPA_DIR) ++ @install -Dm755 $(TARGET_DIR)/$(NAME)-ladspa$(LIB_EXT) $(DESTDIR)$(LADSPA_DIR) + endif + ifeq ($(BUILD_VST2),true) +- @install -Dm755 $(TARGET_DIR)/$(NAME)-vst$(LIB_EXT) -t $(DESTDIR)$(VST_DIR) ++ @install -Dm755 $(TARGET_DIR)/$(NAME)-vst$(LIB_EXT) $(DESTDIR)$(VST_DIR) + endif + ifeq ($(BUILD_LV2),true) + @install -dm755 $(DESTDIR)$(LV2_DIR) && \ +@@ -91,26 +91,26 @@ ifeq ($(BUILD_LV2),true) + endif + ifeq ($(BUILD_JACK),true) + ifeq ($(HAVE_JACK),true) +- @install -Dm755 $(TARGET_DIR)/$(NAME)$(APP_EXT) -t $(DESTDIR)$(BINDIR) ++ @install -Dm755 $(TARGET_DIR)/$(NAME)$(APP_EXT) $(DESTDIR)$(BINDIR) + endif + endif + + install-user: all + ifeq ($(BUILD_DSSI),true) +- @install -Dm755 $(TARGET_DIR)/$(NAME)-dssi$(LIB_EXT) -t $(HOME)/.dssi ++ @install -Dm755 $(TARGET_DIR)/$(NAME)-dssi$(LIB_EXT) $(HOME)/.dssi + endif + ifeq ($(BUILD_LADSPA),true) +- @install -Dm755 $(TARGET_DIR)/$(NAME)-ladspa$(LIB_EXT) -t $(HOME)/.ladspa ++ @install -Dm755 $(TARGET_DIR)/$(NAME)-ladspa$(LIB_EXT) $(HOME)/.ladspa + endif + ifeq ($(BUILD_VST2),true) +- @install -Dm755 $(TARGET_DIR)/$(NAME)-vst$(LIB_EXT) -t $(HOME)/.vst ++ @install -Dm755 $(TARGET_DIR)/$(NAME)-vst$(LIB_EXT) $(HOME)/.vst + endif + ifeq ($(BUILD_LV2),true) + @install -dm755 $(HOME)/.lv2 && \ + cp -rf $(TARGET_DIR)/$(NAME).lv2 $(HOME)/.lv2 + endif + ifeq ($(BUILD_JACK),true) +- @install -Dm755 $(TARGET_DIR)/$(NAME)$(APP_EXT) -t $(HOME)/bin ++ @install -Dm755 $(TARGET_DIR)/$(NAME)$(APP_EXT) $(HOME)/bin + endif + + # -------------------------------------------------------------- Property changes on: head/audio/midiomatic-lv2/files/patch-plugins_MIDICCToPressure_Makefile ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/audio/midiomatic-lv2/files/patch-plugins_MIDIPressureToCC_Makefile =================================================================== --- head/audio/midiomatic-lv2/files/patch-plugins_MIDIPressureToCC_Makefile (nonexistent) +++ head/audio/midiomatic-lv2/files/patch-plugins_MIDIPressureToCC_Makefile (revision 561877) @@ -0,0 +1,51 @@ +--- plugins/MIDIPressureToCC/Makefile.orig 2021-01-17 22:05:17 UTC ++++ plugins/MIDIPressureToCC/Makefile +@@ -77,13 +77,13 @@ all: $(TARGETS) + + install: all + ifeq ($(BUILD_DSSI),true) +- @install -Dm755 $(TARGET_DIR)/$(NAME)-dssi$(LIB_EXT) -t $(DESTDIR)$(DSSI_DIR) ++ @install -Dm755 $(TARGET_DIR)/$(NAME)-dssi$(LIB_EXT) $(DESTDIR)$(DSSI_DIR) + endif + ifeq ($(BUILD_LADSPA),true) +- @install -Dm755 $(TARGET_DIR)/$(NAME)-ladspa$(LIB_EXT) -t $(DESTDIR)$(LADSPA_DIR) ++ @install -Dm755 $(TARGET_DIR)/$(NAME)-ladspa$(LIB_EXT) $(DESTDIR)$(LADSPA_DIR) + endif + ifeq ($(BUILD_VST2),true) +- @install -Dm755 $(TARGET_DIR)/$(NAME)-vst$(LIB_EXT) -t $(DESTDIR)$(VST_DIR) ++ @install -Dm755 $(TARGET_DIR)/$(NAME)-vst$(LIB_EXT) $(DESTDIR)$(VST_DIR) + endif + ifeq ($(BUILD_LV2),true) + @install -dm755 $(DESTDIR)$(LV2_DIR) && \ +@@ -91,26 +91,26 @@ ifeq ($(BUILD_LV2),true) + endif + ifeq ($(BUILD_JACK),true) + ifeq ($(HAVE_JACK),true) +- @install -Dm755 $(TARGET_DIR)/$(NAME)$(APP_EXT) -t $(DESTDIR)$(BINDIR) ++ @install -Dm755 $(TARGET_DIR)/$(NAME)$(APP_EXT) $(DESTDIR)$(BINDIR) + endif + endif + + install-user: all + ifeq ($(BUILD_DSSI),true) +- @install -Dm755 $(TARGET_DIR)/$(NAME)-dssi$(LIB_EXT) -t $(HOME)/.dssi ++ @install -Dm755 $(TARGET_DIR)/$(NAME)-dssi$(LIB_EXT) $(HOME)/.dssi + endif + ifeq ($(BUILD_LADSPA),true) +- @install -Dm755 $(TARGET_DIR)/$(NAME)-ladspa$(LIB_EXT) -t $(HOME)/.ladspa ++ @install -Dm755 $(TARGET_DIR)/$(NAME)-ladspa$(LIB_EXT) $(HOME)/.ladspa + endif + ifeq ($(BUILD_VST2),true) +- @install -Dm755 $(TARGET_DIR)/$(NAME)-vst$(LIB_EXT) -t $(HOME)/.vst ++ @install -Dm755 $(TARGET_DIR)/$(NAME)-vst$(LIB_EXT) $(HOME)/.vst + endif + ifeq ($(BUILD_LV2),true) + @install -dm755 $(HOME)/.lv2 && \ + cp -rf $(TARGET_DIR)/$(NAME).lv2 $(HOME)/.lv2 + endif + ifeq ($(BUILD_JACK),true) +- @install -Dm755 $(TARGET_DIR)/$(NAME)$(APP_EXT) -t $(HOME)/bin ++ @install -Dm755 $(TARGET_DIR)/$(NAME)$(APP_EXT) $(HOME)/bin + endif + + # -------------------------------------------------------------- Property changes on: head/audio/midiomatic-lv2/files/patch-plugins_MIDIPressureToCC_Makefile ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/audio/midiomatic-lv2/pkg-plist =================================================================== --- head/audio/midiomatic-lv2/pkg-plist (revision 561876) +++ head/audio/midiomatic-lv2/pkg-plist (revision 561877) @@ -1,15 +1,30 @@ +lib/lv2/midiccmapx4.lv2/manifest.ttl +lib/lv2/midiccmapx4.lv2/midiccmapx4_dsp.so +lib/lv2/midiccmapx4.lv2/midiccmapx4_dsp.ttl +lib/lv2/midiccmapx4.lv2/presets.ttl lib/lv2/midiccrecorder.lv2/manifest.ttl lib/lv2/midiccrecorder.lv2/midiccrecorder_dsp.so lib/lv2/midiccrecorder.lv2/midiccrecorder_dsp.ttl lib/lv2/midiccrecorder.lv2/presets.ttl +lib/lv2/midicctopressure.lv2/manifest.ttl +lib/lv2/midicctopressure.lv2/midicctopressure_dsp.so +lib/lv2/midicctopressure.lv2/midicctopressure_dsp.ttl +lib/lv2/midicctopressure.lv2/presets.ttl lib/lv2/midipbtocc.lv2/manifest.ttl lib/lv2/midipbtocc.lv2/midipbtocc_dsp.so lib/lv2/midipbtocc.lv2/midipbtocc_dsp.ttl lib/lv2/midipbtocc.lv2/presets.ttl +lib/lv2/midipressuretocc.lv2/manifest.ttl +lib/lv2/midipressuretocc.lv2/midipressuretocc_dsp.so +lib/lv2/midipressuretocc.lv2/midipressuretocc_dsp.ttl +lib/lv2/midipressuretocc.lv2/presets.ttl lib/lv2/midisysfilter.lv2/manifest.ttl lib/lv2/midisysfilter.lv2/midisysfilter_dsp.so lib/lv2/midisysfilter.lv2/midisysfilter_dsp.ttl lib/lv2/midisysfilter.lv2/presets.ttl +lib/vst/midiccmapx4-vst.so lib/vst/midiccrecorder-vst.so +lib/vst/midicctopressure-vst.so lib/vst/midipbtocc-vst.so +lib/vst/midipressuretocc-vst.so lib/vst/midisysfilter-vst.so