mirror of
https://git.FreeBSD.org/ports.git
synced 2025-02-02 11:09:29 +00:00
add Maaate, a MPEG audio analysis toolkit
This commit is contained in:
parent
06572d0f8f
commit
4c79d198a3
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=38244
29
audio/Maaate/Makefile
Normal file
29
audio/Maaate/Makefile
Normal file
@ -0,0 +1,29 @@
|
||||
# ex:ts=8
|
||||
# New ports collection makefile for: Maaate
|
||||
# Date created: Fab 12, 2001
|
||||
# Whom: Ying-Chieh Liao <ijliao@FreeBSD.org>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= Maaate
|
||||
PORTVERSION= 0.1.0
|
||||
CATEGORIES= audio
|
||||
MASTER_SITES= http://www.cmis.csiro.au/dmis/maaate/
|
||||
|
||||
MAINTAINER= ijliao@FreeBSD.org
|
||||
|
||||
USE_AUTOCONF= yes
|
||||
USE_LIBTOOL= yes
|
||||
|
||||
USE_GMAKE= yes
|
||||
|
||||
INSTALLS_SHLIB= yes
|
||||
|
||||
post-install:
|
||||
.if !defined(NOPORTDOCS)
|
||||
@${MKDIR} ${PREFIX}/share/doc/Maaate
|
||||
@${CP} ${WRKSRC}/doc/* ${PREFIX}/share/doc/Maaate
|
||||
.endif
|
||||
|
||||
.include <bsd.port.mk>
|
1
audio/Maaate/distinfo
Normal file
1
audio/Maaate/distinfo
Normal file
@ -0,0 +1 @@
|
||||
MD5 (Maaate-0.1.0.tar.gz) = 110047ecdcd0de3732f25a768ad09f03
|
10
audio/Maaate/files/patch-configure.in
Normal file
10
audio/Maaate/files/patch-configure.in
Normal file
@ -0,0 +1,10 @@
|
||||
--- configure.in.orig Mon Feb 12 16:04:53 2001
|
||||
+++ configure.in Mon Feb 12 16:04:59 2001
|
||||
@@ -14,7 +14,6 @@
|
||||
|
||||
dnl Checks for libraries.
|
||||
AC_CHECK_LIB(m,cos)
|
||||
-AC_CHECK_LIB(xml,xmlParseFile)
|
||||
|
||||
dnl Checks for header files.
|
||||
AC_HEADER_STDC
|
32
audio/Maaate/files/patch-test::Makefile.in
Normal file
32
audio/Maaate/files/patch-test::Makefile.in
Normal file
@ -0,0 +1,32 @@
|
||||
--- test/Makefile.in.orig Tue Jan 23 22:12:01 2001
|
||||
+++ test/Makefile.in Mon Feb 12 16:02:38 2001
|
||||
@@ -110,13 +110,13 @@
|
||||
MaaatePlay_LDADD = $(top_builddir)/src/tier1/libMaaateP.la
|
||||
|
||||
analyseMPaudio_SOURCES = analyseMPaudio.cc
|
||||
-analyseMPaudio_LDADD = $(top_builddir)/src/tier1/libMaaateP.la $(top_builddir)/src/tier2/libMaaateA.la -ldl
|
||||
+analyseMPaudio_LDADD = $(top_builddir)/src/tier1/libMaaateP.la $(top_builddir)/src/tier2/libMaaateA.la
|
||||
|
||||
cMaaatePlay_SOURCES = cMaaatePlay.c
|
||||
cMaaatePlay_LDADD = $(top_builddir)/src/tier1/libMaaateP.la
|
||||
|
||||
canalyseMPaudio_SOURCES = canalyseMPaudio.c
|
||||
-canalyseMPaudio_LDADD = $(top_builddir)/src/tier1/libMaaateP.la $(top_builddir)/src/tier2/libMaaateA.la -ldl
|
||||
+canalyseMPaudio_LDADD = $(top_builddir)/src/tier1/libMaaateP.la $(top_builddir)/src/tier2/libMaaateA.la
|
||||
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
|
||||
CONFIG_HEADER = ../config.h
|
||||
CONFIG_CLEAN_FILES =
|
||||
@@ -259,11 +259,11 @@
|
||||
|
||||
cMaaatePlay: $(cMaaatePlay_OBJECTS) $(cMaaatePlay_DEPENDENCIES)
|
||||
@rm -f cMaaatePlay
|
||||
- $(LINK) $(cMaaatePlay_LDFLAGS) $(cMaaatePlay_OBJECTS) $(cMaaatePlay_LDADD) $(LIBS)
|
||||
+ $(CXXLINK) $(cMaaatePlay_LDFLAGS) $(cMaaatePlay_OBJECTS) $(cMaaatePlay_LDADD) $(LIBS)
|
||||
|
||||
canalyseMPaudio: $(canalyseMPaudio_OBJECTS) $(canalyseMPaudio_DEPENDENCIES)
|
||||
@rm -f canalyseMPaudio
|
||||
- $(LINK) $(canalyseMPaudio_LDFLAGS) $(canalyseMPaudio_OBJECTS) $(canalyseMPaudio_LDADD) $(LIBS)
|
||||
+ $(CXXLINK) $(canalyseMPaudio_LDFLAGS) $(canalyseMPaudio_OBJECTS) $(canalyseMPaudio_LDADD) $(LIBS)
|
||||
.cc.o:
|
||||
$(CXXCOMPILE) -c $<
|
||||
.cc.lo:
|
1
audio/Maaate/pkg-comment
Normal file
1
audio/Maaate/pkg-comment
Normal file
@ -0,0 +1 @@
|
||||
MPEG audio analysis toolkit
|
12
audio/Maaate/pkg-descr
Normal file
12
audio/Maaate/pkg-descr
Normal file
@ -0,0 +1,12 @@
|
||||
MPEG Maaate (pronounce: ma:a:it) is a C++ toolkit to parse and
|
||||
analyse audio data in the compressed domain by analysing MPEG-1/2
|
||||
Layers 1-3 audio files. It makes the encoded fields of an MPEG
|
||||
audio stream accessible (tier1) and provides some content analysis
|
||||
functions like silence detection (tier2).
|
||||
|
||||
MPEG Maaate is designed in tiers: the first tier implements the
|
||||
parsing of the MPEG audio stream, the second tier implements the
|
||||
content analysis on the extracted field, and the third tier includes
|
||||
any applications that are based on the extracted content.
|
||||
|
||||
WWW: http://www.cmis.csiro.au/dmis/maaate/
|
41
audio/Maaate/pkg-plist
Normal file
41
audio/Maaate/pkg-plist
Normal file
@ -0,0 +1,41 @@
|
||||
bin/MaaatePlay
|
||||
bin/analyseMPaudio
|
||||
bin/inspectMPaudio
|
||||
include/Maaate/Decoder.H
|
||||
include/Maaate/MPEGfile.H
|
||||
include/Maaate/allLayers.H
|
||||
include/Maaate/byteOrder.h
|
||||
include/Maaate/header.H
|
||||
include/Maaate/layer1.H
|
||||
include/Maaate/layer2.H
|
||||
include/Maaate/layer3.H
|
||||
include/Maaate/module.H
|
||||
include/Maaate/plugins.H
|
||||
include/Maaate/segmentData.H
|
||||
include/Maaate/segmentTable.H
|
||||
include/MaaateA.h
|
||||
include/MaaateP.h
|
||||
lib/Maaate/libMaaateM.a
|
||||
lib/Maaate/libMaaateM.so
|
||||
lib/Maaate/libMaaateM.so.1
|
||||
lib/libMaaateA.a
|
||||
lib/libMaaateA.so
|
||||
lib/libMaaateA.so.1
|
||||
lib/libMaaateP.a
|
||||
lib/libMaaateP.so
|
||||
lib/libMaaateP.so.1
|
||||
@dirrm include/Maaate
|
||||
@dirrm lib/Maaate
|
||||
%%PORTDOCS%%share/doc/Maaate/COPYING
|
||||
%%PORTDOCS%%share/doc/Maaate/CSIROlogo.gif
|
||||
%%PORTDOCS%%share/doc/Maaate/THANKS
|
||||
%%PORTDOCS%%share/doc/Maaate/download.html
|
||||
%%PORTDOCS%%share/doc/Maaate/header.txt
|
||||
%%PORTDOCS%%share/doc/Maaate/index.html
|
||||
%%PORTDOCS%%share/doc/Maaate/layer1.txt
|
||||
%%PORTDOCS%%share/doc/Maaate/layer2.txt
|
||||
%%PORTDOCS%%share/doc/Maaate/layer3.txt
|
||||
%%PORTDOCS%%share/doc/Maaate/maaate-faq.txt
|
||||
%%PORTDOCS%%share/doc/Maaate/maaate.gif
|
||||
%%PORTDOCS%%share/doc/Maaate/module_guide.txt
|
||||
%%PORTDOCS%%@dirrm share/doc/Maaate
|
@ -1,6 +1,7 @@
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
SUBDIR += Maaate
|
||||
SUBDIR += afsp
|
||||
SUBDIR += amp
|
||||
SUBDIR += ascd
|
||||
|
Loading…
x
Reference in New Issue
Block a user