pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/audio
Module Name: pkgsrc
Committed By: nia
Date: Sat May 9 09:55:32 UTC 2020
Modified Files:
pkgsrc/audio: Makefile
Added Files:
pkgsrc/audio/sndfile-tools: DESCR Makefile PLIST distinfo options.mk
Log Message:
audio: Add sndfile-tools
sndfile-tools is a small collection of programs that use libsndfile and
other libraries to do useful things.
The collection currently includes the following programs:
- sndfile-generate-chirp
- sndfile-jackplay
- sndfile-mix-to-mono
- sndfile-resample
- sndfile-spectrogram
- sndfile-waveform
To generate a diff of this commit:
cvs rdiff -u -r1.597 -r1.598 pkgsrc/audio/Makefile
cvs rdiff -u -r0 -r1.1 pkgsrc/audio/sndfile-tools/DESCR \
pkgsrc/audio/sndfile-tools/Makefile pkgsrc/audio/sndfile-tools/PLIST \
pkgsrc/audio/sndfile-tools/distinfo pkgsrc/audio/sndfile-tools/options.mk
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/audio/Makefile
diff -u pkgsrc/audio/Makefile:1.597 pkgsrc/audio/Makefile:1.598
--- pkgsrc/audio/Makefile:1.597 Fri Apr 24 08:43:08 2020
+++ pkgsrc/audio/Makefile Sat May 9 09:55:31 2020
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.597 2020/04/24 08:43:08 nia Exp $
+# $NetBSD: Makefile,v 1.598 2020/05/09 09:55:31 nia Exp $
#
COMMENT= Audio tools
@@ -414,6 +414,7 @@ SUBDIR+= shorten
SUBDIR+= sidplay
SUBDIR+= sidplay2
SUBDIR+= snd
+SUBDIR+= sndfile-tools
SUBDIR+= solfege
SUBDIR+= sonata
SUBDIR+= sound-juicer
Added files:
Index: pkgsrc/audio/sndfile-tools/DESCR
diff -u /dev/null pkgsrc/audio/sndfile-tools/DESCR:1.1
--- /dev/null Sat May 9 09:55:32 2020
+++ pkgsrc/audio/sndfile-tools/DESCR Sat May 9 09:55:32 2020
@@ -0,0 +1,11 @@
+sndfile-tools is a small collection of programs that use libsndfile and
+other libraries to do useful things.
+
+The collection currently includes the following programs:
+
+- sndfile-generate-chirp
+- sndfile-jackplay
+- sndfile-mix-to-mono
+- sndfile-resample
+- sndfile-spectrogram
+- sndfile-waveform
Index: pkgsrc/audio/sndfile-tools/Makefile
diff -u /dev/null pkgsrc/audio/sndfile-tools/Makefile:1.1
--- /dev/null Sat May 9 09:55:32 2020
+++ pkgsrc/audio/sndfile-tools/Makefile Sat May 9 09:55:32 2020
@@ -0,0 +1,21 @@
+# $NetBSD: Makefile,v 1.1 2020/05/09 09:55:32 nia Exp $
+
+DISTNAME= sndfile-tools-1.04
+CATEGORIES= audio
+MASTER_SITES= http://www.mega-nerd.com/libsndfile/files/
+EXTRACT_SUFX= .tar.bz2
+
+MAINTAINER= pkgsrc-users%NetBSD.org@localhost
+HOMEPAGE= http://mega-nerd.com/libsndfile/tools/
+COMMENT= Small collection of programs that use libsndfile
+LICENSE= gnu-gpl-v2 OR gnu-gpl-v3
+
+GNU_CONFIGURE= yes
+USE_TOOLS+= pkg-config
+
+.include "options.mk"
+.include "../../audio/libsamplerate/buildlink3.mk"
+.include "../../audio/libsndfile/buildlink3.mk"
+.include "../../graphics/cairo/buildlink3.mk"
+.include "../../math/fftw/buildlink3.mk"
+.include "../../mk/bsd.pkg.mk"
Index: pkgsrc/audio/sndfile-tools/PLIST
diff -u /dev/null pkgsrc/audio/sndfile-tools/PLIST:1.1
--- /dev/null Sat May 9 09:55:32 2020
+++ pkgsrc/audio/sndfile-tools/PLIST Sat May 9 09:55:32 2020
@@ -0,0 +1,16 @@
+@comment $NetBSD: PLIST,v 1.1 2020/05/09 09:55:32 nia Exp $
+bin/sndfile-generate-chirp
+${PLIST.jack}bin/sndfile-jackplay
+bin/sndfile-mix-to-mono
+bin/sndfile-resample
+bin/sndfile-spectrogram
+bin/sndfile-waveform
+man/man1/sndfile-generate-chirp.1
+man/man1/sndfile-jackplay.1
+man/man1/sndfile-mix-to-mono.1
+man/man1/sndfile-resample.1
+man/man1/sndfile-spectrogram.1
+share/doc/sndfile-tools/index.html
+share/doc/sndfile-tools/sweep.png
+share/doc/sndfile-tools/wave-example.png
+share/doc/sndfile-tools/wave-sweep.png
Index: pkgsrc/audio/sndfile-tools/distinfo
diff -u /dev/null pkgsrc/audio/sndfile-tools/distinfo:1.1
--- /dev/null Sat May 9 09:55:32 2020
+++ pkgsrc/audio/sndfile-tools/distinfo Sat May 9 09:55:32 2020
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1 2020/05/09 09:55:32 nia Exp $
+
+SHA1 (sndfile-tools-1.04.tar.bz2) = bd9c90b8b9dfbfdc3f9330a77f9d310e6a8cc46f
+RMD160 (sndfile-tools-1.04.tar.bz2) = d5b714668aea20d7da328862b11a023f1dbfcaae
+SHA512 (sndfile-tools-1.04.tar.bz2) = b93fd74386960c986031fd1652335bc34243bd785ccf31480b82f4d76ef86760ca53173aace273a635db70db46c0c1c4066328aef9c21c01c6e76346dbe56390
+Size (sndfile-tools-1.04.tar.bz2) = 715692 bytes
Index: pkgsrc/audio/sndfile-tools/options.mk
diff -u /dev/null pkgsrc/audio/sndfile-tools/options.mk:1.1
--- /dev/null Sat May 9 09:55:32 2020
+++ pkgsrc/audio/sndfile-tools/options.mk Sat May 9 09:55:32 2020
@@ -0,0 +1,15 @@
+# $NetBSD: options.mk,v 1.1 2020/05/09 09:55:32 nia Exp $
+
+PKG_OPTIONS_VAR= PKG_OPTIONS.sndfile-tools
+PKG_SUPPORTED_OPTIONS= jack
+PKG_SUGGESTED_OPTIONS= jack
+
+.include "../../mk/bsd.options.mk"
+
+PLIST_VARS+= jack
+.if !empty(PKG_OPTIONS:Mjack)
+PLIST.jack= yes
+. include "../../audio/jack/buildlink3.mk"
+.else
+CONFIGURE_ARGS+= --disable-jack
+.endif
Home |
Main Index |
Thread Index |
Old Index