View | Details | Raw Unified | Return to bug 59328
Collapse All | Expand All

(-)audio/normalize/Makefile (-5 / +13 lines)
Lines 6-23 Link Here
6
#
6
#
7
7
8
PORTNAME=	normalize
8
PORTNAME=	normalize
9
PORTVERSION=	0.7.5
9
PORTVERSION=	0.7.6
10
PORTREVISION=	2
11
CATEGORIES=	audio
10
CATEGORIES=	audio
12
MASTER_SITES=	http://www.cs.columbia.edu/~cvaill/normalize/
11
MASTER_SITES=	http://www1.cs.columbia.edu/~cvaill/normalize/
13
12
14
MAINTAINER=	ports@FreeBSD.org
13
MAINTAINER=	ports@FreeBSD.org
15
COMMENT=	A tool for adjusting the volume of wave/MP3 files to a standard level
14
COMMENT=	A tool for adjusting the volume of wave/MP3 files to a standard level
16
15
17
LIB_DEPENDS=	intl.5:${PORTSDIR}/devel/gettext
16
LIB_DEPENDS=	mad.1:${PORTSDIR}/audio/mad \
17
		intl.5:${PORTSDIR}/devel/gettext
18
19
USE_BZIP2=	yes
20
USE_GETOPT_LONG=	yes
21
GNU_CONFIGURE=	yes
22
CONFIGURE_TARGET=	--build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
23
CONFIGURE_ENV=	CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}"
24
CONFIGURE_ARGS=	--disable-xmms
18
25
19
MAN1=		normalize.1 normalize-mp3.1
26
MAN1=		normalize.1 normalize-mp3.1
20
27
21
GNU_CONFIGURE=	yes
28
CPPFLAGS=	-I${LOCALBASE}/include
29
LDFLAGS=	-L${LOCALBASE}/lib
22
30
23
.include <bsd.port.mk>
31
.include <bsd.port.mk>
(-)audio/normalize/distinfo (-1 / +1 lines)
Line 1 Link Here
1
MD5 (normalize-0.7.5.tar.gz) = 8416433fa2213d0879de79a6c589babe
1
MD5 (normalize-0.7.6.tar.bz2) = 7476f028304791595e91610bb0cd4e97
(-)audio/normalize/files/patch-src::Makefile.in (+55 lines)
Line 0 Link Here
1
--- src/Makefile.in.orig	Mon Sep  9 06:33:08 2002
2
+++ src/Makefile.in	Sun Nov 16 02:33:16 2003
3
@@ -146,7 +146,7 @@
4
 @MAD_FALSE@MADSOURCES = 
5
 
6
 normalize_SOURCES = normalize.c volume.c adjust.c mpegadjust.c \
7
-	common.h version.c getopt.c getopt1.c getopt.h \
8
+	common.h version.c \
9
 	$(AUDIOFILESOURCES) $(MADSOURCES)
10
 
11
 
12
@@ -184,7 +184,6 @@
13
 am_normalize_OBJECTS = normalize-normalize.$(OBJEXT) \
14
 	normalize-volume.$(OBJEXT) normalize-adjust.$(OBJEXT) \
15
 	normalize-mpegadjust.$(OBJEXT) normalize-version.$(OBJEXT) \
16
-	normalize-getopt.$(OBJEXT) normalize-getopt1.$(OBJEXT) \
17
 	$(am__objects_1) $(am__objects_2)
18
 normalize_OBJECTS = $(am_normalize_OBJECTS)
19
 normalize_LDFLAGS =
20
@@ -199,8 +198,6 @@
21
 depcomp = $(SHELL) $(top_srcdir)/config/depcomp
22
 am__depfiles_maybe = depfiles
23
 @AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/normalize-adjust.Po \
24
-@AMDEP_TRUE@	./$(DEPDIR)/normalize-getopt.Po \
25
-@AMDEP_TRUE@	./$(DEPDIR)/normalize-getopt1.Po \
26
 @AMDEP_TRUE@	./$(DEPDIR)/normalize-mpegadjust.Po \
27
 @AMDEP_TRUE@	./$(DEPDIR)/normalize-mpegvolume.Po \
28
 @AMDEP_TRUE@	./$(DEPDIR)/normalize-normalize.Po \
29
@@ -265,8 +262,6 @@
30
 normalize-adjust.$(OBJEXT): adjust.c
31
 normalize-mpegadjust.$(OBJEXT): mpegadjust.c
32
 normalize-version.$(OBJEXT): version.c
33
-normalize-getopt.$(OBJEXT): getopt.c
34
-normalize-getopt1.$(OBJEXT): getopt1.c
35
 normalize-wiener_af.$(OBJEXT): wiener_af.c
36
 normalize-riff.$(OBJEXT): riff.c
37
 normalize-mpegvolume.$(OBJEXT): mpegvolume.c
38
@@ -301,8 +296,6 @@
39
 	-rm -f *.tab.c
40
 
41
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/normalize-adjust.Po@am__quote@
42
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/normalize-getopt.Po@am__quote@
43
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/normalize-getopt1.Po@am__quote@
44
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/normalize-mpegadjust.Po@am__quote@
45
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/normalize-mpegvolume.Po@am__quote@
46
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/normalize-normalize.Po@am__quote@
47
@@ -678,7 +635,7 @@
48
 
49
 # test program targets follow
50
 
51
-mktestwav: mktestwav.o riff.o version.o getopt.o getopt1.o
52
+mktestwav: mktestwav.o riff.o version.o
53
 	$(LINK) $^ -lm
54
 
55
 mktestwav.o: mktestwav.c riff.h
(-)audio/normalize/pkg-descr (+2 lines)
Lines 3-7 Link Here
3
creating mp3 mixes, where different recording levels on different
3
creating mp3 mixes, where different recording levels on different
4
albums can cause the volume to vary greatly from song to song.
4
albums can cause the volume to vary greatly from song to song.
5
5
6
WWW: http://www1.cs.columbia.edu/~cvaill/normalize/
7
6
- George Reid
8
- George Reid
7
greid@ukug.uk.freebsd.org
9
greid@ukug.uk.freebsd.org

Return to bug 59328