diff options
author | marcus <marcus@FreeBSD.org> | 2003-12-07 00:50:00 +0000 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2003-12-07 00:50:00 +0000 |
commit | 0ca25d7555d3473934ab072ce91fe6c9997665fb (patch) | |
tree | 7fcedfdd354718462a74800df7b6a85a096e9b69 /audio | |
parent | 6742cf9b84bd32f7afb6d490ce08af4c8b4bf4d9 (diff) | |
download | FreeBSD-ports-0ca25d7555d3473934ab072ce91fe6c9997665fb.zip FreeBSD-ports-0ca25d7555d3473934ab072ce91fe6c9997665fb.tar.gz |
Add libmad, the library backend to the MAD audio project. MAD is a
high-quality MPEG 1 and 2 audio decoder.
PR: 59702
Submitted by: Sergey Akifyev <asa@gascom.ru>
Diffstat (limited to 'audio')
-rw-r--r-- | audio/Makefile | 1 | ||||
-rw-r--r-- | audio/libmad/Makefile | 24 | ||||
-rw-r--r-- | audio/libmad/distinfo | 1 | ||||
-rw-r--r-- | audio/libmad/files/patch-configure | 10 | ||||
-rw-r--r-- | audio/libmad/pkg-descr | 20 | ||||
-rw-r--r-- | audio/libmad/pkg-plist | 4 |
6 files changed, 60 insertions, 0 deletions
diff --git a/audio/Makefile b/audio/Makefile index f7d3bde..e12522f 100644 --- a/audio/Makefile +++ b/audio/Makefile @@ -144,6 +144,7 @@ SUBDIR += libao SUBDIR += libaudiofile SUBDIR += libcdaudio + SUBDIR += libmad SUBDIR += libmikmod SUBDIR += libmusicbrainz SUBDIR += libogg diff --git a/audio/libmad/Makefile b/audio/libmad/Makefile new file mode 100644 index 0000000..77fe00f --- /dev/null +++ b/audio/libmad/Makefile @@ -0,0 +1,24 @@ +# New ports collection makefile for: libmad +# Date created: 26 November 2003 +# Whom: Sergey Akifyev <asa@gascom.ru> +# +# $FreeBSD$ +# + +PORTNAME= libmad +PORTVERSION= 0.15.0b +CATEGORIES= audio +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \ + ftp://ftp.mars.org/pub/mpeg/ +MASTER_SITE_SUBDIR= mad + +MAINTAINER= asa@gascom.ru +COMMENT= Libmad library (part of MAD project) + +USE_LIBTOOL= yes +INSTALLS_SHLIB= yes +CONFIGURE_ARGS= --disable-debugging \ + --enable-sso \ + --enable-accuracy + +.include <bsd.port.mk> diff --git a/audio/libmad/distinfo b/audio/libmad/distinfo new file mode 100644 index 0000000..081f5ec --- /dev/null +++ b/audio/libmad/distinfo @@ -0,0 +1 @@ +MD5 (libmad-0.15.0b.tar.gz) = 2e4487cdf922a6da2546bad74f643205 diff --git a/audio/libmad/files/patch-configure b/audio/libmad/files/patch-configure new file mode 100644 index 0000000..f195f07 --- /dev/null +++ b/audio/libmad/files/patch-configure @@ -0,0 +1,10 @@ +--- configure.orig Wed Dec 11 18:31:51 2002 ++++ configure Thu Dec 12 12:07:17 2002 +@@ -7414,6 +7414,7 @@ + + # This can be used to rebuild libtool when needed + LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh" ++$ac_aux_dir/ltconfig $LIBTOOL_DEPS + + # Always use our own libtool. + LIBTOOL='$(SHELL) $(top_builddir)/libtool' diff --git a/audio/libmad/pkg-descr b/audio/libmad/pkg-descr new file mode 100644 index 0000000..3bb6fa2 --- /dev/null +++ b/audio/libmad/pkg-descr @@ -0,0 +1,20 @@ +MAD is a high-quality MPEG audio decoder. It currently supports MPEG-1 +as well as the MPEG-2 extension to Lower Sampling Frequencies. All +three audio layers (Layer I, Layer II, and Layer III a.k.a. MP3) are +fully implemented. + +MAD does not yet support MPEG-2 multichannel audio (although it should +be backward compatible with such streams) or AAC, nor does it support +the so-called MPEG 2.5 format. + +MAD has the following special features: + + - 24-bit PCM output + - 100% fixed-point (integer) computation + - completely new implementation based on the ISO/IEC standards + - distributed under the terms of the GNU General Public License (GPL) + +The software is distributed as a library (libmad) and command-line +front-end (madplay). + +WWW: http://mad.sourceforge.net/ diff --git a/audio/libmad/pkg-plist b/audio/libmad/pkg-plist new file mode 100644 index 0000000..6214000 --- /dev/null +++ b/audio/libmad/pkg-plist @@ -0,0 +1,4 @@ +include/mad.h +lib/libmad.a +lib/libmad.so +lib/libmad.so.2 |