diff options
author | trasz <trasz@FreeBSD.org> | 2008-05-16 23:36:12 +0800 |
---|---|---|
committer | trasz <trasz@FreeBSD.org> | 2008-05-16 23:36:12 +0800 |
commit | 7b169cfd1fc8cec2f722bfc1d5f5313d6dd34609 (patch) | |
tree | 097c4314afd6f327b0fd3c8fe810888788e4c974 /audio | |
parent | 0cf2a8dccbfb0f2d607a4d0cdb77ac091c96a388 (diff) | |
download | freebsd-ports-gnome-7b169cfd1fc8cec2f722bfc1d5f5313d6dd34609.tar.gz freebsd-ports-gnome-7b169cfd1fc8cec2f722bfc1d5f5313d6dd34609.tar.zst freebsd-ports-gnome-7b169cfd1fc8cec2f722bfc1d5f5313d6dd34609.zip |
Jack-smf-utils is a set of two utilities - jack-smf-player and
jack-smf-recorder - whose purpose is to play and record MIDI streams
from/to Standard MIDI Files (i.e. the files with .mid extension)
using JACK MIDI. There is also smfsh, "SMF shell" that is kind of
interactive, command line SMF files manipulation tool which started
its life as a debugging aid. And finally libsmf, C library for
loading, writing and manipulating the contents of SMF files.
WWW: http://pin.if.uz.zgora.pl/~trasz/jack-smf-utils/
Diffstat (limited to 'audio')
-rw-r--r-- | audio/Makefile | 1 | ||||
-rw-r--r-- | audio/jack-smf-utils/Makefile | 27 | ||||
-rw-r--r-- | audio/jack-smf-utils/distinfo | 3 | ||||
-rw-r--r-- | audio/jack-smf-utils/pkg-descr | 9 |
4 files changed, 40 insertions, 0 deletions
diff --git a/audio/Makefile b/audio/Makefile index 4c1760bc8a17..93cf74ae3f13 100644 --- a/audio/Makefile +++ b/audio/Makefile @@ -304,6 +304,7 @@ SUBDIR += jack SUBDIR += jack-keyboard SUBDIR += jack-rack + SUBDIR += jack-smf-utils SUBDIR += jamin SUBDIR += jid3lib SUBDIR += jmusic diff --git a/audio/jack-smf-utils/Makefile b/audio/jack-smf-utils/Makefile new file mode 100644 index 000000000000..7a48edf2208f --- /dev/null +++ b/audio/jack-smf-utils/Makefile @@ -0,0 +1,27 @@ +# New ports collection makefile for: jack-smf-utils +# Date created: 2008-05-15 +# Whom: Edward Tomasz Napierala <trasz@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= jack-smf-utils +PORTVERSION= 1.0 +CATEGORIES= audio +MASTER_SITES= http://pin.if.uz.zgora.pl/~trasz/jack-smf-utils/ \ + ${MASTER_SITE_LOCAL} +MASTER_SITE_SUBDIR= trasz + +MAINTAINER= trasz@FreeBSD.org +COMMENT= Standard MIDI File file player and recorder for JACK MIDI + +LIB_DEPENDS= jack.0:${PORTSDIR}/audio/jack \ + lash.2:${PORTSDIR}/audio/lash + +GNU_CONFIGURE= yes +USE_GNOME= glib20 + +PLIST_FILES= bin/smfsh bin/jack-smf-player bin/jack-smf-recorder +MAN1= jack-smf-player.1 jack-smf-recorder.1 + +.include <bsd.port.mk> diff --git a/audio/jack-smf-utils/distinfo b/audio/jack-smf-utils/distinfo new file mode 100644 index 000000000000..6e839a31f638 --- /dev/null +++ b/audio/jack-smf-utils/distinfo @@ -0,0 +1,3 @@ +MD5 (jack-smf-utils-1.0.tar.gz) = 80234923dd5a14bdbd8ef567347d9df8 +SHA256 (jack-smf-utils-1.0.tar.gz) = 8f2a086fbb5935375590ac45310ca92f17b8d2684299b37b5366de1cbc167a71 +SIZE (jack-smf-utils-1.0.tar.gz) = 120497 diff --git a/audio/jack-smf-utils/pkg-descr b/audio/jack-smf-utils/pkg-descr new file mode 100644 index 000000000000..82f90aaa156b --- /dev/null +++ b/audio/jack-smf-utils/pkg-descr @@ -0,0 +1,9 @@ +Jack-smf-utils is a set of two utilities - jack-smf-player and +jack-smf-recorder - whose purpose is to play and record MIDI streams +from/to Standard MIDI Files (i.e. the files with .mid extension) +using JACK MIDI. There is also smfsh, "SMF shell" that is kind of +interactive, command line SMF files manipulation tool which started +its life as a debugging aid. And finally libsmf, C library for +loading, writing and manipulating the contents of SMF files. + +WWW: http://pin.if.uz.zgora.pl/~trasz/jack-smf-utils/ |