diff options
author | ahze <ahze@FreeBSD.org> | 2006-05-29 07:54:55 +0800 |
---|---|---|
committer | ahze <ahze@FreeBSD.org> | 2006-05-29 07:54:55 +0800 |
commit | cfbe9b117e6021a990b434ed487edb0ee3f33c2d (patch) | |
tree | 7ca8257697b3c7ac0059143ab29eb1608101cbaa /audio | |
parent | a614d8c458fee62b5a32a22b7753c09fdfe506aa (diff) | |
download | freebsd-ports-gnome-cfbe9b117e6021a990b434ed487edb0ee3f33c2d.tar.gz freebsd-ports-gnome-cfbe9b117e6021a990b434ed487edb0ee3f33c2d.tar.zst freebsd-ports-gnome-cfbe9b117e6021a990b434ed487edb0ee3f33c2d.zip |
- Add aacgain
Normalizes the volume of mp3 and mp4 files
WWW: http://altosdesign.com/aacgain/
Diffstat (limited to 'audio')
-rw-r--r-- | audio/Makefile | 1 | ||||
-rw-r--r-- | audio/aacgain/Makefile | 20 | ||||
-rw-r--r-- | audio/aacgain/distinfo | 3 | ||||
-rw-r--r-- | audio/aacgain/files/patch-faad2_libfaad_common.h | 19 | ||||
-rw-r--r-- | audio/aacgain/pkg-descr | 3 |
5 files changed, 46 insertions, 0 deletions
diff --git a/audio/Makefile b/audio/Makefile index 6b6fabedd40f..ab55781a3695 100644 --- a/audio/Makefile +++ b/audio/Makefile @@ -5,6 +5,7 @@ SUBDIR += HVSC-Update SUBDIR += Maaate + SUBDIR += aacgain SUBDIR += abcde SUBDIR += abcmidi SUBDIR += abcselect diff --git a/audio/aacgain/Makefile b/audio/aacgain/Makefile new file mode 100644 index 000000000000..069845785ec1 --- /dev/null +++ b/audio/aacgain/Makefile @@ -0,0 +1,20 @@ +# New ports collection makefile for: aacgain +# Date created: 2006-05-28 +# Whom: Michael Johnson <ahze@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= aacgain +PORTVERSION= 1.5 +CATEGORIES= audio +MASTER_SITES= http://altosdesign.com/aacgain/ + +MAINTAINER= ahze@FreeBSD.org +COMMENT= Normalizes the volume of mp3 and mp4 files + +USE_BZIP2= yes +GNU_CONFIGURE= yes +PLIST_FILES= bin/aacgain + +.include <bsd.port.mk> diff --git a/audio/aacgain/distinfo b/audio/aacgain/distinfo new file mode 100644 index 000000000000..9715d27ed66d --- /dev/null +++ b/audio/aacgain/distinfo @@ -0,0 +1,3 @@ +MD5 (aacgain-1.5.tar.bz2) = 620412590eb8eadc274eb7c699ddb6c2 +SHA256 (aacgain-1.5.tar.bz2) = 345c065772b40bbd211994479cf216947f01fc269a89e842cdf2abcaf2308dae +SIZE (aacgain-1.5.tar.bz2) = 1136003 diff --git a/audio/aacgain/files/patch-faad2_libfaad_common.h b/audio/aacgain/files/patch-faad2_libfaad_common.h new file mode 100644 index 000000000000..dfa709b503f8 --- /dev/null +++ b/audio/aacgain/files/patch-faad2_libfaad_common.h @@ -0,0 +1,19 @@ +--- faad2/libfaad/common.h.orig Sun May 28 19:33:36 2006 ++++ faad2/libfaad/common.h Sun May 28 19:35:11 2006 +@@ -302,6 +302,7 @@ + return i; + } + #elif (defined(__i386__) && defined(__GNUC__)) ++#if 0 + #define HAS_LRINTF + // from http://www.stereopsis.com/FPU.html + static INLINE int lrintf(float f) +@@ -315,7 +316,7 @@ + return i; + } + #endif +- ++#endif + + #ifdef __ICL /* only Intel C compiler has fmath ??? */ + diff --git a/audio/aacgain/pkg-descr b/audio/aacgain/pkg-descr new file mode 100644 index 000000000000..73bda8a0e27c --- /dev/null +++ b/audio/aacgain/pkg-descr @@ -0,0 +1,3 @@ +Normalizes the volume of mp3 and mp4 files + +WWW: http://altosdesign.com/aacgain/ |