Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 9 Jan 2021 09:15:59 +0000 (UTC)
From:      Emanuel Haupt <ehaupt@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r560843 - in head/audio: . klystrack klystrack/files
Message-ID:  <202101090915.1099Fx0K060848@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ehaupt
Date: Sat Jan  9 09:15:59 2021
New Revision: 560843
URL: https://svnweb.freebsd.org/changeset/ports/560843

Log:
  Add klystrack 1.7.6.m.f.12, tracker for making C64/NES/Amiga-style
  chiptunes.

Added:
  head/audio/klystrack/
  head/audio/klystrack/Makefile   (contents, props changed)
  head/audio/klystrack/distinfo   (contents, props changed)
  head/audio/klystrack/files/
  head/audio/klystrack/files/patch-Makefile   (contents, props changed)
  head/audio/klystrack/files/patch-klystron_Makefile   (contents, props changed)
  head/audio/klystrack/files/patch-klystron_tools_editor_Makefile   (contents, props changed)
  head/audio/klystrack/files/patch-klystron_tools_makebundle_Makefile   (contents, props changed)
  head/audio/klystrack/files/patch-player_Makefile   (contents, props changed)
  head/audio/klystrack/files/patch-scancode-tool_Makefile   (contents, props changed)
  head/audio/klystrack/pkg-descr   (contents, props changed)
  head/audio/klystrack/pkg-plist   (contents, props changed)
Modified:
  head/audio/Makefile

Modified: head/audio/Makefile
==============================================================================
--- head/audio/Makefile	Sat Jan  9 08:55:51 2021	(r560842)
+++ head/audio/Makefile	Sat Jan  9 09:15:59 2021	(r560843)
@@ -364,6 +364,7 @@
     SUBDIR += kexis
     SUBDIR += kid3-kf5
     SUBDIR += kid3-qt5
+    SUBDIR += klystrack
     SUBDIR += kmix
     SUBDIR += komposter
     SUBDIR += ksmp3play

Added: head/audio/klystrack/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/audio/klystrack/Makefile	Sat Jan  9 09:15:59 2021	(r560843)
@@ -0,0 +1,57 @@
+# Created by: Emanuel Haupt <ehaupt@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	klystrack
+DISTVERSION=	1.7.6-make-fix-12
+DISTVERSIONSUFFIX=	-gfe6e746
+CATEGORIES=	audio
+
+MAINTAINER=	ehaupt@FreeBSD.org
+COMMENT=	Tracker for making C64/NES/Amiga-style chiptunes
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+LIB_DEPENDS=	libasound.so:audio/alsa-lib
+
+USES=		desktop-file-utils dos2unix gmake localbase:ldconfig sdl
+DOS2UNIX_FILES=	klystron/Makefile klystron/tools/editor/Makefile \
+		klystron/tools/makebundle/Makefile Makefile player/Makefile \
+		scancode-tool/Makefile
+USE_CSTD=	c99
+USE_GITHUB=	yes
+GH_ACCOUNT=	kometbomb
+GH_TUPLE=	kometbomb:klystron:1074324:klystron/klystron
+USE_SDL=	gfx2 image2 mixer2 sdl2 ttf2
+
+MAKE_ENV+=	V=1
+ALL_TARGET=	build
+
+OPTIONS_DEFINE=	EXAMPLES
+
+post-patch:
+	@${REINPLACE_CMD} -e "s#Default.kt#${DATADIR}/Default.kt#" \
+		${WRKSRC}/src/main.c
+
+do-install:
+.for d in bin share/klystrack share/applications share/pixmaps \
+	share/licenses/klystrack lib/klystrack share/man/man1
+	${MKDIR} ${STAGEDIR}${PREFIX}/${d}
+.endfor
+	${INSTALL_PROGRAM} ${WRKSRC}/bin.release/klystrack \
+		${STAGEDIR}${PREFIX}/bin/klystrack
+	cd ${WRKSRC}/res && \
+		${COPYTREE_SHARE} \* ${STAGEDIR}/${PREFIX}/lib/klystrack/res/
+	cd ${WRKSRC}/key && \
+		${COPYTREE_SHARE} \* ${STAGEDIR}/${PREFIX}/lib/klystrack/key/
+	cd ${WRKSRC}/examples && ${COPYTREE_SHARE} \* ${STAGEDIR}/${EXAMPLESDIR}
+	${INSTALL_MAN} ${WRKSRC}/doc/klystrack.1 \
+		${STAGEDIR}${MANPREFIX}/share/man/man1
+	${INSTALL_DATA} ${WRKSRC}/doc/Default.kt \
+		${STAGEDIR}${DATADIR}
+	${INSTALL_DATA} ${WRKSRC}/linux/klystrack.desktop \
+		${STAGEDIR}${DESKTOPDIR}
+	${INSTALL_DATA} ${WRKSRC}/icon/256x256.png \
+		${STAGEDIR}${PREFIX}/share/pixmaps/klystrack.png
+
+.include <bsd.port.mk>

Added: head/audio/klystrack/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/audio/klystrack/distinfo	Sat Jan  9 09:15:59 2021	(r560843)
@@ -0,0 +1,5 @@
+TIMESTAMP = 1609521143
+SHA256 (kometbomb-klystrack-1.7.6-make-fix-12-gfe6e746_GH0.tar.gz) = 79d233afd0ceb6fe45f422861b71e3f27da90c6912ea1829fe4afcc94e33c211
+SIZE (kometbomb-klystrack-1.7.6-make-fix-12-gfe6e746_GH0.tar.gz) = 576157
+SHA256 (kometbomb-klystron-1074324_GH0.tar.gz) = 1a9a5a0ccb9039d2b2be3f0bd4f2a4d9684760a06ed79f136ed71c030d2cfe8c
+SIZE (kometbomb-klystron-1074324_GH0.tar.gz) = 89088

Added: head/audio/klystrack/files/patch-Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/audio/klystrack/files/patch-Makefile	Sat Jan  9 09:15:59 2021	(r560843)
@@ -0,0 +1,79 @@
+--- Makefile.orig	2021-01-08 17:05:12 UTC
++++ Makefile
+@@ -1,7 +1,8 @@
++MAKE ?= make
+ TARGET := klystrack
+ KLYSTRON=klystron
+ ECHO := echo
+-CFG := debug
++CFG := release
+ EXE := bin.$(CFG)/$(TARGET)
+ MACHINE :=
+ NSIS := C:/program\ files\ \(x86\)/nsis/makensis.exe -V2 -NOCD
+@@ -10,7 +11,7 @@ MAKEBUNDLE := $(KLYSTRON)/tools/bin/makebundle.exe
+ UPLOAD := cmd.exe /c upload.bat
+ DLLS := zip/data/SDL2_image.dll zip/data/SDL2.dll
+ EXT := .c
+-CC := gcc
++CC ?= gcc
+ CDEP := $(CC) -E -MM
+ ARCHIVE := klystrack
+ INSTALLER := klystrack.exe
+@@ -69,10 +70,10 @@ ifeq ($(CFG),debug)
+  CFLAGS += -g -Wall -DDEBUG -fno-inline
+ else
+  ifeq ($(CFG),profile)
+-  CFLAGS += -O3 -pg -Wall
++  CFLAGS += -pg -Wall
+  else
+   ifeq ($(CFG),release)
+-   CFLAGS += -O3 -Wall -s
++   CFLAGS += -Wall
+    ifdef COMSPEC
+ 	 CFLAGS += -mwindows
+    endif
+@@ -136,8 +137,8 @@ endef
+ 
+ build: Makefile src/version.h src/version_number.h
+ 	$(Q)touch src/version
+-	$(Q)$(MAKE) -C $(KLYSTRON) CFG=$(CFG) EXTFLAGS="$(EXTFLAGS)"
+-	$(Q)$(MAKE) all CFG=$(CFG) EXTFLAGS="$(EXTFLAGS)"
++	$(Q)$(MAKE_ENV) $(MAKE) -C $(KLYSTRON) CFG=$(CFG) EXTFLAGS="$(EXTFLAGS)"
++	$(Q)$(MAKE_ENV) $(MAKE) all CFG=$(CFG) EXTFLAGS="$(EXTFLAGS)"
+ 
+ src/version.h: src/version
+ 	$(Q)echo '#ifndef VERSION_H' > ./src/version.h
+@@ -173,8 +174,8 @@ endif
+ all: $(EXE) $(THEMES)
+ 
+ zip: doc/* $(THEMES) $(DLLS) examples/instruments/* examples/songs/* $(DLLS)
+-	$(Q)$(MAKE) -C $(KLYSTRON) CFG=release EXTFLAGS="$(EXTFLAGS)"
+-	$(Q)$(MAKE) build CFG=release
++	$(Q)$(MAKE_ENV) $(MAKE) -C $(KLYSTRON) CFG=release EXTFLAGS="$(EXTFLAGS)"
++	$(Q)$(MAKE_ENV) $(MAKE) build CFG=release
+ 	$(Q)mkdir -p zip/data/res
+ 	$(Q)mkdir -p zip/data/examples/songs
+ 	$(Q)mkdir -p zip/data/examples/songs/n00bstar-examples
+@@ -221,18 +222,18 @@ release: bin.release/$(TARGET)
+ 	@$(ECHO) "Building release -->"
+ 
+ $(DESTDIR)$(BINDIR)/$(TARGET): $(EXE)
+-	install -D -m 755 $< $@
++	install -s -m 755 $< $@
+ 
+ $(DESTDIR)$(RES_PATH)/res/%: res/%
+-	install -D -m 644 $< $@
++	install -m 644 $< $@
+ 
+ $(DESTDIR)$(RES_PATH)/key/%: key/%
+-	install -D -m 644 $< $@
++	install -m 644 $< $@
+ 
+ install: $(EXE:bin.$(CFG)/%=$(DESTDIR)$(BINDIR)/%) $(RESOURCES:res/%=$(DESTDIR)$(RES_PATH)/res/%) $(KEYS:key/%=$(DESTDIR)$(RES_PATH)/key/%)
+ 
+ #bin.release/$(TARGET):
+-#	$(Q)make CFG=release
++#	$(Q)$(MAKE) CFG=release
+ 
+ ifneq ($(MAKECMDGOALS),clean)
+ -include $(DEPS)

Added: head/audio/klystrack/files/patch-klystron_Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/audio/klystrack/files/patch-klystron_Makefile	Sat Jan  9 09:15:59 2021	(r560843)
@@ -0,0 +1,60 @@
+--- klystron/Makefile.orig	2021-01-08 20:34:24 UTC
++++ klystron/Makefile
+@@ -1,7 +1,8 @@
++MAKE ?= make
+ TARGET=engine
+ VPATH=src:src
+ ECHO = echo
+-CFG = debug
++CFG = release
+ REV = cp -f
+ MACHINE =
+ 
+@@ -27,9 +28,10 @@ lib_SRC = $(notdir ${wildcard src/lib/*.c})
+ lib_DEP = $(patsubst %.c, deps/lib_$(CFG)_%.d, ${lib_SRC})
+ lib_OBJ = $(patsubst %.c, objs.$(CFG)/lib_%.o, ${lib_SRC})
+ 
+-CC = gcc -shared -std=gnu99 -Wno-strict-aliasing
+-CDEP = gcc -E -std=gnu99
++CC ?= gcc
+ 
++CDEP = $(CC) -shared -E -std=gnu99
++
+ ifndef CFLAGS
+ CFLAGS = $(MACHINE) -ftree-vectorize
+ endif
+@@ -41,10 +43,10 @@ ifeq ($(CFG),debug)
+ 	CFLAGS += -O3 -g -Wall ${INCLUDEFLAGS} -DDEBUG -fno-inline
+ else
+ 	ifeq ($(CFG),profile)
+-		CFLAGS += -O3 -pg -Wall ${INCLUDEFLAGS}
++		CFLAGS += -pg -Wall ${INCLUDEFLAGS}
+ 	else
+ 		ifeq ($(CFG),release)
+-			CFLAGS += -O3 -Wall ${INCLUDEFLAGS} -s
++			CFLAGS += -Wall ${INCLUDEFLAGS}
+ 		else
+ 			ifeq ($(CFG),size)
+ 				CFLAGS += -Os -Wall ${INCLUDEFLAGS} -s -ffast-math -fomit-frame-pointer -DREDUCESIZE
+@@ -73,7 +75,7 @@ build: Makefile
+ 	$(Q)echo '"' >> ./src/version.h
+ 	$(Q)echo '#define KLYSTRON_VERSION_STRING "klystron " KLYSTRON_REVISION' >> ./src/version.h
+ 	$(Q)echo '#endif' >> ./src/version.h
+-	make all CFG=$(CFG)
++	$(MAKE) all CFG=$(CFG)
+ 
+ all: bin.$(CFG)/lib${TARGET}_snd.a bin.$(CFG)/lib${TARGET}_gfx.a bin.$(CFG)/lib${TARGET}_util.a bin.$(CFG)/lib${TARGET}_gui.a tools
+ 
+@@ -208,10 +210,10 @@ ifneq ($(MAKECMDGOALS),clean)
+ endif
+ 
+ tools/bin/makebundle.exe: tools/makebundle/*.c
+-	make -C tools/makebundle
++	$(MAKE) -C tools/makebundle
+ 
+ ifdef COMSPEC
+ tools/bin/editor.exe: tools/editor/src/*
+-	make -C tools/editor
++	$(MAKE) -C tools/editor
+ 	cp tools/editor/bin.$(CFG)/editor.exe tools/bin/editor.exe
+ endif

Added: head/audio/klystrack/files/patch-klystron_tools_editor_Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/audio/klystrack/files/patch-klystron_tools_editor_Makefile	Sat Jan  9 09:15:59 2021	(r560843)
@@ -0,0 +1,45 @@
+--- klystron/tools/editor/Makefile.orig	2021-01-08 17:05:12 UTC
++++ klystron/tools/editor/Makefile
+@@ -1,7 +1,8 @@
++CC ?= gcc
+ TARGET=editor.exe
+ VPATH=src:src
+ ECHO = echo
+-CFG = debug
++CFG = release
+ MACHINE = -march=pentium2 
+ 
+ # The directories containing the source files, separated by ':'
+@@ -28,8 +29,8 @@ Group0_OBJ = $(patsubst %.c, objs.$(CFG)/Group0_%.o, \
+ 	
+ # What compiler to use for generating dependencies: 
+ # it will be invoked with -MM
+-CXX = gcc -std=c99 --no-strict-aliasing 
+-CXXDEP = gcc -E -std=c99
++CXX = $(CC) -std=c99 --no-strict-aliasing 
++CXXDEP = $(CC) -E -std=c99
+ 
+ # What include flags to pass to the compiler
+ 
+@@ -39,7 +40,7 @@ ifdef COMSPEC
+ 	CXXFLAGS += -mthreads
+ 	INCLUDEFLAGS := -I ../Common -I src -I /MinGW/include/SDL2 -I ../../src 
+ else
+-	INCLUDEFLAGS := `sdl-config --cflags` -U_FORTIFY_SOURCE -I ../../src 
++	INCLUDEFLAGS := `sdl2-config --cflags` -U_FORTIFY_SOURCE -I ../../src 
+ endif
+ 
+ LDFLAGS = -L ../../bin.$(CFG) -lengine_gfx -lengine_util -lengine_gui -lmingw32 -lSDL2_image -lSDLmain -lSDL2 -lconfig 
+@@ -49,10 +50,10 @@ ifeq ($(CFG),debug)
+ CXXFLAGS += -O3 -g -Wall ${INCLUDEFLAGS} -DDEBUG
+ else
+ ifeq ($(CFG),profile)
+-CXXFLAGS += -O3 -g -pg -Wall ${INCLUDEFLAGS}
++CXXFLAGS += -pg -Wall ${INCLUDEFLAGS}
+ else
+ ifeq ($(CFG),release)
+-CXXFLAGS += -O3 -g -Wall ${INCLUDEFLAGS}
++CXXFLAGS += -Wall ${INCLUDEFLAGS}
+ else
+ @$(ECHO) "Invalid configuration "$(CFG)" specified."
+ @$(ECHO) "You must specify a configuration when "

Added: head/audio/klystrack/files/patch-klystron_tools_makebundle_Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/audio/klystrack/files/patch-klystron_tools_makebundle_Makefile	Sat Jan  9 09:15:59 2021	(r560843)
@@ -0,0 +1,14 @@
+--- klystron/tools/makebundle/Makefile.orig	2021-01-08 17:05:12 UTC
++++ klystron/tools/makebundle/Makefile
+@@ -1,3 +1,4 @@
++CC ?= gcc
+ TARGET = ../bin/makebundle.exe
+ 
+ ifdef COMSPEC
+@@ -8,4 +9,4 @@ endif
+ 
+ $(TARGET): makebundle.c ../../src/util/bundle.h
+ 	@mkdir -p ../bin
+-	gcc -o $(TARGET) -D_XOPEN_SOURCE makebundle.c -std=c99 -I ../../src $(SDL) -Wall -O3
+\ No newline at end of file
++	$(CC) -o $(TARGET) -D_XOPEN_SOURCE makebundle.c -std=c99 -I ../../src $(SDL) -Wall

Added: head/audio/klystrack/files/patch-player_Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/audio/klystrack/files/patch-player_Makefile	Sat Jan  9 09:15:59 2021	(r560843)
@@ -0,0 +1,16 @@
+--- player/Makefile.orig	2021-01-08 17:05:12 UTC
++++ player/Makefile
+@@ -1,10 +1,11 @@
++CC ?= gcc
+ ifdef COMSPEC
+  SDL := -lSDL2main -lSDL2 -I /mingw/include/SDL2
+  LIBS := -lmingw32 -lengine_snd 
+ else
+- SDL := `sdl-config --libs` 
++ SDL := `sdl2-config --libs` 
+  LIBS := -lengine_snd 
+ endif
+ 
+ player.exe: player.c
+-	gcc -DUSESDLMUTEXES -DSTEREOOUTPUT -DENABLEAUDIODUMP -DNOSDL_MIXER -DDEBUG -o player.exe player.c -g -Wall $(LIBS) $(SDL) -I ../../klystron/src -L ../../klystron/bin.debug
++	$(CC) $(CFLAGS) $(LDFLAGS) -DUSESDLMUTEXES -DSTEREOOUTPUT -DENABLEAUDIODUMP -DNOSDL_MIXER -DDEBUG -o player.exe player.c -g -Wall $(LIBS) $(SDL) -I ../../klystron/src

Added: head/audio/klystrack/files/patch-scancode-tool_Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/audio/klystrack/files/patch-scancode-tool_Makefile	Sat Jan  9 09:15:59 2021	(r560843)
@@ -0,0 +1,8 @@
+--- scancode-tool/Makefile.orig	2021-01-08 16:47:36 UTC
++++ scancode-tool/Makefile
+@@ -1,4 +1,4 @@
+-CC = gcc -s -Ic:/MinGW/include/SDL2
++CC ?= gcc
+ EXE = scancode.exe
+ 
+ $(EXE): scancode.c

Added: head/audio/klystrack/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/audio/klystrack/pkg-descr	Sat Jan  9 09:15:59 2021	(r560843)
@@ -0,0 +1,3 @@
+Klystrack is a tracker for making C64/NES/Amiga-style chiptunes.
+
+WWW: https://kometbomb.github.io/klystrack/

Added: head/audio/klystrack/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/audio/klystrack/pkg-plist	Sat Jan  9 09:15:59 2021	(r560843)
@@ -0,0 +1,129 @@
+bin/klystrack
+lib/klystrack/key/AZERTY
+lib/klystrack/key/DVORAK
+lib/klystrack/key/FT2
+lib/klystrack/key/QWERTZ
+lib/klystrack/key/n00bstar
+lib/klystrack/res/AHX
+lib/klystrack/res/Blacklyst
+lib/klystrack/res/C64
+lib/klystrack/res/Classic
+lib/klystrack/res/Default
+lib/klystrack/res/Gameboy
+lib/klystrack/res/Golden_Brown
+lib/klystrack/res/Rust_Camo
+lib/klystrack/res/Rust_Red
+lib/klystrack/res/Ultimate_Proctamed
+share/applications/klystrack.desktop
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/JDsnare.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/MontyKick.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/bass.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/bass2.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/bigsnare.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/clap.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/cowbell.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/dang.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/hardkick.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/katana.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/kick.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/lead1.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/lethal_kick.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/lethal_snare.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/major.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/n00bstar-instruments/Arp_External_OscSweep.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/n00bstar-instruments/Arp_External_PhasingSquare.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/n00bstar-instruments/Arp_External_Short.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/n00bstar-instruments/Arp_External_SustainedPWM.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/n00bstar-instruments/Arp_Fixed_Aug.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/n00bstar-instruments/Arp_Fixed_Dim.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/n00bstar-instruments/Arp_Fixed_Dom7th.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/n00bstar-instruments/Arp_Fixed_Major.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/n00bstar-instruments/Arp_Fixed_Minor.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/n00bstar-instruments/Arp_Fixed_Sus4.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/n00bstar-instruments/Bass_Aggro.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/n00bstar-instruments/Bass_Deep.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/n00bstar-instruments/Bass_DoubleSquare.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/n00bstar-instruments/Bass_FM.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/n00bstar-instruments/Bass_Filtered.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/n00bstar-instruments/Bass_Picked.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/n00bstar-instruments/Bass_Pulse.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/n00bstar-instruments/Bass_Shifting.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/n00bstar-instruments/Bass_Sustained.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/n00bstar-instruments/Bassdrum_01.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/n00bstar-instruments/Bassdrum_02.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/n00bstar-instruments/Bassdrum_03.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/n00bstar-instruments/Bassdrum_04.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/n00bstar-instruments/Bassdrum_05.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/n00bstar-instruments/Bassdrum_06.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/n00bstar-instruments/Clap_01.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/n00bstar-instruments/Clap_02.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/n00bstar-instruments/FX_BreakGlass.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/n00bstar-instruments/FX_DriveBy.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/n00bstar-instruments/FX_PowerUp.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/n00bstar-instruments/FX_VinylRecord.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/n00bstar-instruments/Hihat_1_Closed.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/n00bstar-instruments/Hihat_1_Open.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/n00bstar-instruments/Hihat_2_Closed.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/n00bstar-instruments/Hihat_2_Open.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/n00bstar-instruments/Hihat_3_Closed.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/n00bstar-instruments/Hihat_3_Open.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/n00bstar-instruments/Instrument_Strings.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/n00bstar-instruments/Instrument_Trombone.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/n00bstar-instruments/Instrument_Trumpet.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/n00bstar-instruments/Lead_Buzz.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/n00bstar-instruments/Lead_DigitalBells.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/n00bstar-instruments/Lead_FM_Rise.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/n00bstar-instruments/Lead_FM_Sync.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/n00bstar-instruments/Lead_FakeArp.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/n00bstar-instruments/Lead_HPF_SawFifths.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/n00bstar-instruments/Lead_OctaveArpBleep.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/n00bstar-instruments/Lead_PulseToSquare.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/n00bstar-instruments/Lead_ShortFMSquare.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/n00bstar-instruments/Lead_SquareToPulse.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/n00bstar-instruments/Lead_VibraSquare.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/n00bstar-instruments/Pad_LongRise.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/n00bstar-instruments/Pad_ResonnantSweep.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/n00bstar-instruments/Pad_ThinDigital.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/n00bstar-instruments/Snare_01.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/n00bstar-instruments/Snare_02.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/n00bstar-instruments/Snare_03.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/n00bstar-instruments/Snare_04.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/n00bstar-instruments/Snare_05.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/n00bstar-instruments/Snare_06.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/n00bstar-instruments/Tom_01.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/n00bstar-instruments/Tom_02.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/n00bstar-instruments/Tom_03.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/snappy.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/ssnare.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/stabmaj.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/stabmin.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/the_horror.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/tom.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/vibbas_flt.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/instruments/wetkick.ki
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/songs/AmsterdamBoppe.kt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/songs/Diverted_Experience.kt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/songs/Ocean Loader III.kt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/songs/Paranoimia (Suntronic).kt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/songs/Sprock'n'Sprawl.kt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/songs/StarChips.kt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/songs/Starport2.kt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/songs/castlevania.kt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/songs/dr.happy.kt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/songs/hskv03-rygar_trance.kt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/songs/hwv 437.kt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/songs/n00bstar-examples/Arps.kt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/songs/n00bstar-examples/Buzz.kt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/songs/n00bstar-examples/FXBus.kt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/songs/n00bstar-examples/Multiplex.kt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/songs/n00bstar-examples/Oscillators_And_Wavetable.kt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/songs/n00bstar-examples/Ringmod.kt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/songs/n00bstar-examples/Sync.kt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/songs/obspatial.kt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/songs/phonkeh.kt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/songs/ringmod.kt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/songs/smp_dingleberries_fix.kt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/songs/smp_dpintro.kt
+%%DATADIR%%/Default.kt
+share/man/man1/klystrack.1.gz
+share/pixmaps/klystrack.png



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202101090915.1099Fx0K060848>