1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00
MOC (music on console) is a console audio player designed to be powerful and
easy to use.

MOC plays smoothly, regardless of system or I/O load, because it handles the
output buffer in a separate thread. It does not cause gaps between files,
because the next file to be played is pre-cached while playing the current
file.

Supported file formats are: MP3, Ogg Vorbis, FLAC, Musepack (mpc), Speex, WAVE,
AIFF, AU, SVX, Sphere Nist WAV, IRCAM SF, Creative VOC.

WWW: http://moc.daper.net/

PR:		ports/84153
Submitted by:	Integral <rzinkov@gmail.com>
This commit is contained in:
Jean-Yves Lefort 2005-07-28 23:46:49 +00:00
parent 3c5e969a8e
commit 634e76de2c
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=140354
10 changed files with 230 additions and 0 deletions

View File

@ -283,6 +283,7 @@
SUBDIR += mixer.app
SUBDIR += mixmos
SUBDIR += mixxx
SUBDIR += moc
SUBDIR += modplugplay
SUBDIR += mp32ogg
SUBDIR += mp3_check

104
audio/moc/Makefile Normal file
View File

@ -0,0 +1,104 @@
# New ports collection makefile for: moc
# Date created: 24 July 2005
# Whom: Revis Zinkov <rzinkov@gmail.com>
#
# $FreeBSD$
#
PORTNAME= moc
PORTVERSION= 2.3.0
CATEGORIES= audio
MASTER_SITES= ftp://ftp.daper.net/pub/soft/moc/stable/
MAINTAINER= rzinkov@gmail.com
COMMENT= A console audio player designed to be powerful and easy to use
USE_GETOPT_LONG= yes
USE_GMAKE= yes
USE_BZIP2= yes
USE_AUTOTOOLS= libtool:15
CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}"
MAN8= mocp.8
CPPFLAGS= -I${LOCALBASE}/include
LDFLAGS= -L${LOCALBASE}/lib
OPTIONS= JACK "JACK support" off \
MP3 "MP3 support" on \
MUSEPACK "Musepack (mpc) support" off \
VORBIS "Ogg Vorbis support" on \
FLAC "FLAC support" off \
SNDFILE "libsndfile support" off \
SPEEX "Speex support" off \
SAMPLERATE "libsamplerate support" off \
CURL "curl support (Internet streams)" on
.include <bsd.port.pre.mk>
.if ${OSVERSION} < 400010
LIB_DEPENDS+= ncurses.5:${PORTSDIR}/devel/ncurses
.endif
.if defined(WITH_JACK)
LIB_DEPENDS+= jack.0:${PORTSDIR}/audio/jack
.else
CONFIGURE_ARGS+= --without-jack
.endif
.if defined(WITH_MP3)
LIB_DEPENDS+= mad.2:${PORTSDIR}/audio/mad
PLIST_FILES+= lib/moc/decoder_plugins/libmp3_decoder.so
.else
CONFIGURE_ARGS+= --without-mp3
.endif
.if defined(WITH_MUSEPACK)
LIB_DEPENDS+= mpcdec.3:${PORTSDIR}/audio/libmpcdec \
tag_c.0:${PORTSDIR}/audio/taglib
PLIST_FILES+= lib/moc/decoder_plugins/libmusepack_decoder.so
.else
CONFIGURE_ARGS+= --without-musepack
.endif
.if defined(WITH_VORBIS)
LIB_DEPENDS+= vorbis.3:${PORTSDIR}/audio/libvorbis
PLIST_FILES+= lib/moc/decoder_plugins/libogg_decoder.so
.else
CONFIGURE_ARGS+= --without-ogg
.endif
.if defined(WITH_FLAC)
LIB_DEPENDS+= FLAC:${PORTSDIR}/audio/flac
PLIST_FILES+= lib/moc/decoder_plugins/libflac_decoder.so
.else
CONFIGURE_ARGS+= --without-flac
.endif
.if defined(WITH_SNDFILE)
LIB_DEPENDS+= sndfile.1:${PORTSDIR}/audio/libsndfile
PLIST_FILES+= lib/moc/decoder_plugins/libsndfile_formats_decoder.so
.else
CONFIGURE_ARGS+= --without-sndfile
.endif
.if defined(WITH_SPEEX)
LIB_DEPENDS+= speex.3:${PORTSDIR}/audio/speex
PLIST_FILES+= lib/moc/decoder_plugins/libspeex_decoder.so
.else
CONFIGURE_ARGS+= --without-speex
.endif
.if defined(WITH_SAMPLERATE)
LIB_DEPENDS+= samplerate.1:${PORTSDIR}/audio/libsamplerate
.else
CONFIGURE_ARGS+= --without-samplerate
.endif
.if defined(WITH_CURL)
LIB_DEPENDS+= curl.3:${PORTSDIR}/ftp/curl
.else
CONFIGURE_ARGS+= --without-curl
.endif
.include <bsd.port.post.mk>

2
audio/moc/distinfo Normal file
View File

@ -0,0 +1,2 @@
MD5 (moc-2.3.0.tar.bz2) = 3d5d152c28f6e40162058fc1566c8109
SIZE (moc-2.3.0.tar.bz2) = 402954

View File

@ -0,0 +1,45 @@
--- audio_conversion.c.orig Wed Jun 15 18:56:46 2005
+++ audio_conversion.c Fri Jul 29 01:19:15 2005
@@ -27,7 +27,8 @@
#define __USE_ISOC99 1
#include <assert.h>
-#include <stdint.h>
+#include <inttypes.h>
+#include <limits.h>
#include <stdlib.h>
#include <math.h>
#include <string.h>
@@ -43,6 +44,32 @@
#include "main.h"
#include "log.h"
#include "options.h"
+
+/* FreeBSD 4.x lacks these */
+
+#ifndef INT8_MIN
+#define INT8_MIN CHAR_MIN
+#endif
+
+#ifndef INT8_MAX
+#define INT8_MAX CHAR_MAX
+#endif
+
+#ifndef INT16_MIN
+#define INT16_MIN SHRT_MIN
+#endif
+
+#ifndef INT16_MAX
+#define INT16_MAX SHRT_MAX
+#endif
+
+#ifndef INT32_MIN
+#define INT32_MIN INT_MIN
+#endif
+
+#ifndef INT32_MAX
+#define INT32_MAX INT_MAX
+#endif
/* Byte order conversion */
/* TODO: use functions from byteswap.h if available */

View File

@ -0,0 +1,16 @@
--- decoder_plugins/flac/flac.c.orig Fri Jul 29 01:31:54 2005
+++ decoder_plugins/flac/flac.c Fri Jul 29 01:32:11 2005
@@ -422,11 +422,12 @@
static int flac_seek (void *void_data, int sec)
{
struct flac_data *data = (struct flac_data *)void_data;
+ FLAC__uint64 target_sample;
if (sec < 0 || (unsigned)sec > data->length)
return -1;
- FLAC__uint64 target_sample = (FLAC__uint64)((sec/(double)data->length)
+ target_sample = (FLAC__uint64)((sec/(double)data->length)
* (double)data->total_samples);
if (FLAC__seekable_stream_decoder_seek_absolute(data->decoder,

View File

@ -0,0 +1,11 @@
--- decoder_plugins/speex/speex.c.orig Fri Jul 29 01:34:35 2005
+++ decoder_plugins/speex/speex.c Fri Jul 29 01:34:45 2005
@@ -17,7 +17,7 @@
#endif
#include <string.h>
-#include <stdint.h>
+#include <inttypes.h>
#include <assert.h>
#include <speex/speex.h>
#include <speex/speex_header.h>

View File

@ -0,0 +1,11 @@
--- io_curl.c.orig Fri Jul 29 01:21:58 2005
+++ io_curl.c Fri Jul 29 01:22:25 2005
@@ -24,7 +24,7 @@
#include <unistd.h>
#include <errno.h>
#include <assert.h>
-#include <stdint.h>
+#include <inttypes.h>
#define DEBUG

View File

@ -0,0 +1,12 @@
--- server.c.orig Fri Jul 29 01:02:48 2005
+++ server.c Fri Jul 29 01:02:54 2005
@@ -212,8 +212,8 @@
static void del_client (struct client *cli)
{
- cli->socket = -1;
struct event *e;
+ cli->socket = -1;
/* Free the event queue - we can't just use event_queue_free(), because
* it can't free() the event's data. */

12
audio/moc/pkg-descr Normal file
View File

@ -0,0 +1,12 @@
MOC (music on console) is a console audio player designed to be powerful and
easy to use.
MOC plays smoothly, regardless of system or I/O load, because it handles the
output buffer in a separate thread. It does not cause gaps between files,
because the next file to be played is pre-cached while playing the current
file.
Supported file formats are: MP3, Ogg Vorbis, FLAC, Musepack (mpc), Speex, WAVE,
AIFF, AU, SVX, Sphere Nist WAV, IRCAM SF, Creative VOC.
WWW: http://moc.daper.net/

16
audio/moc/pkg-plist Normal file
View File

@ -0,0 +1,16 @@
bin/mocp
share/doc/moc/README
share/doc/moc/THANKS
share/doc/moc/config.example
share/doc/moc/keymap.example
share/moc/themes/black_theme
share/moc/themes/example_theme
share/moc/themes/green_theme
share/moc/themes/nightly_theme
share/moc/themes/transparent-background
share/moc/themes/yellow_red_theme
@dirrm lib/moc/decoder_plugins
@dirrm lib/moc
@dirrm share/moc/themes
@dirrm share/moc
@dirrm share/doc/moc