New port mctoolame-decoder version 0.1.a: A LayerII MPEG Audio
decoder which supports multi-channel encoding
This commit is contained in:
parent
3e0280b196
commit
df8ad75c47
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=79535
5 changed files with 98 additions and 0 deletions
|
@ -143,6 +143,7 @@
|
|||
SUBDIR += lplayer
|
||||
SUBDIR += mad
|
||||
SUBDIR += maplay
|
||||
SUBDIR += mctoolame-decoder
|
||||
SUBDIR += mhwaveedit
|
||||
SUBDIR += midimountain
|
||||
SUBDIR += mikmod
|
||||
|
|
66
audio/mctoolame-decoder/Makefile
Normal file
66
audio/mctoolame-decoder/Makefile
Normal file
|
@ -0,0 +1,66 @@
|
|||
# New ports collection makefile for: mctooLAME decoder
|
||||
# Date created: Thu Mar 27 20:32:42 UTC 2003
|
||||
# Whom: Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= mctoolame
|
||||
PORTVERSION= 0.1.a
|
||||
CATEGORIES= audio
|
||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
||||
MASTER_SITE_SUBDIR= ${PORTNAME}
|
||||
PKGNAMESUFFIX= -decoder
|
||||
DISTNAME= ${PORTNAME}d-${PORTVERSION:C/\.//g}
|
||||
EXTRACT_SUFX= .tgz
|
||||
|
||||
MAINTAINER= lioux@FreeBSD.org
|
||||
COMMENT= A LayerII MPEG Audio decoder which supports multi-channel encoding
|
||||
|
||||
USE_GMAKE= yes
|
||||
USE_REINPLACE= yes
|
||||
ALL_TARGET=
|
||||
PLIST_SUB= PKGNAMESUFFIX="${PKGNAMESUFFIX}"
|
||||
|
||||
pre-everything::
|
||||
.ifndef(WITH_OPTIMIZED_CFLAGS)
|
||||
@${ECHO_MSG} '>>>'
|
||||
@${ECHO_MSG} '>>> You can enable extra optimizations by defining WITH_OPTIMIZED_CFLAGS'
|
||||
@${ECHO_MSG} ">>> For example, 'make WITH_OPTIMIZED_CFLAGS=yes'"
|
||||
.endif
|
||||
@${ECHO_MSG} '>>>'
|
||||
.ifndef(WITH_PROFILED)
|
||||
@${ECHO_MSG} ">>> You can enable profiling by defining WITH_PROFILED"
|
||||
.endif
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
post-patch:
|
||||
.ifndef(WITH_OPTIMIZED_CFLAGS)
|
||||
@${REINPLACE_CMD} -E \
|
||||
-e 's|\$$\(TWEAKS\)||' \
|
||||
${WRKSRC}/Makefile
|
||||
.endif
|
||||
.ifndef(WITH_PROFILED)
|
||||
@${REINPLACE_CMD} -E \
|
||||
-e 's|\$$\(PG\)||' \
|
||||
${WRKSRC}/Makefile
|
||||
.endif
|
||||
@${REINPLACE_CMD} -E \
|
||||
-e 's@\$$\((ARCH|OPTIM|WARNINGS)\)@@g' \
|
||||
${WRKSRC}/Makefile
|
||||
|
||||
post-configure:
|
||||
# C{C,FLAGS} safeness
|
||||
@${REINPLACE_CMD} -E \
|
||||
-e 's|^(CC[[:space:]]*=).+$$|\1${CC} ${CFLAGS}|' \
|
||||
${WRKSRC}/Makefile
|
||||
|
||||
do-install:
|
||||
.ifndef(NOPORTDOCS)
|
||||
@${MKDIR} ${DOCSDIR}/html
|
||||
@${INSTALL_DATA} ${WRKSRC}/html/* ${DOCSDIR}/html
|
||||
.endif
|
||||
@${INSTALL_PROGRAM} ${WRKSRC}/mctoolamed ${PREFIX}/bin
|
||||
|
||||
.include <bsd.port.post.mk>
|
1
audio/mctoolame-decoder/distinfo
Normal file
1
audio/mctoolame-decoder/distinfo
Normal file
|
@ -0,0 +1 @@
|
|||
MD5 (mctoolamed-01a.tgz) = 03b8d015057b537ecce0c8011181c0ec
|
24
audio/mctoolame-decoder/pkg-descr
Normal file
24
audio/mctoolame-decoder/pkg-descr
Normal file
|
@ -0,0 +1,24 @@
|
|||
[ excerpt from developer's WWW site ]
|
||||
|
||||
A multi-channel MPEG encoder, using the ISO13818 standard and the
|
||||
dist10 source code. Multi-channel files may have up to 6 defined
|
||||
channels: Left(L), Right(R), Center(C), Left Surround (LS), Right
|
||||
Surround (RS) and a Low Frequency Enhancement channel (LFE).
|
||||
|
||||
ISO13818 defines 5 multichannel modes (on top of the normal stereo
|
||||
mode), each of these modes may have an optional LFE channel:
|
||||
|
||||
3/2: L, R, C, LS, RS
|
||||
3/1: L, R, C, mono surround
|
||||
2/2: L, R, LS, RS
|
||||
2/1: L, R, mono surround
|
||||
3/0: L, R, C
|
||||
|
||||
The "standard" surround sound encoding of "5.1 channels" is achieved
|
||||
by using mode 3/2 plus an LFE channel.
|
||||
|
||||
A multi-channel MPEG file should decode OK on any MPEG decoder. If
|
||||
the decoder doesn't recognize the multi-channel extensions, then
|
||||
you'll just get a stereo file containing a down mix of the 5 channels.
|
||||
|
||||
WWW: http://www.planckenergy.com/
|
6
audio/mctoolame-decoder/pkg-plist
Normal file
6
audio/mctoolame-decoder/pkg-plist
Normal file
|
@ -0,0 +1,6 @@
|
|||
bin/mctoolamed
|
||||
%%PORTDOCS%%%%DOCSDIR%%%%PKGNAMESUFFIX%%/html/default.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%%%PKGNAMESUFFIX%%/html/history.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%%%PKGNAMESUFFIX%%/html/readme.html
|
||||
%%PORTDOCS%%@dirrm %%DOCSDIR%%%%PKGNAMESUFFIX%%/html
|
||||
%%PORTDOCS%%@dirrm %%DOCSDIR%%%%PKGNAMESUFFIX%%
|
Loading…
Reference in a new issue