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

(-)audio/rubberband/Makefile (-3 / +8 lines)
Lines 2-16 Link Here
2
# $FreeBSD: head/audio/rubberband/Makefile 355147 2014-05-25 09:01:30Z miwi $
2
# $FreeBSD: head/audio/rubberband/Makefile 355147 2014-05-25 09:01:30Z miwi $
3
3
4
PORTNAME=	rubberband
4
PORTNAME=	rubberband
5
PORTVERSION=	1.7.0
5
PORTVERSION=	1.8.1
6
CATEGORIES=	audio
6
CATEGORIES=	audio
7
MASTER_SITES=	http://code.breakfastquay.com/attachments/download/23/
7
MASTER_SITES=	http://breakfastquay.com/files/releases/23/
8
8
9
MAINTAINER=	ports@FreeBSD.org
9
MAINTAINER=	ports@FreeBSD.org
10
COMMENT=	Vamp audio analysis plugin SDK
10
COMMENT=	Vamp audio analysis plugin SDK
11
11
12
LICENSE=	GPLv2
12
LICENSE=	GPLv2
13
LICENSE_FILE=	${WRKSRC}/COPYING
14
13
15
BUILD_DEPENDS=	${LOCALBASE}/include/ladspa.h:${PORTSDIR}/audio/ladspa
14
BUILD_DEPENDS=	${LOCALBASE}/include/ladspa.h:${PORTSDIR}/audio/ladspa
16
LIB_DEPENDS=	libsndfile.so:${PORTSDIR}/audio/libsndfile \
15
LIB_DEPENDS=	libsndfile.so:${PORTSDIR}/audio/libsndfile \
Lines 27-30 Link Here
27
CPPFLAGS+=	-I${LOCALBASE}/include
26
CPPFLAGS+=	-I${LOCALBASE}/include
28
LDFLAGS+=	-L${LOCALBASE}/lib
27
LDFLAGS+=	-L${LOCALBASE}/lib
29
28
29
post-install:
30
	@${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/rubberband
31
	@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/librubberband.so.[0-9].*
32
	@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/ladspa/*.so
33
	@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/vamp/*.so
34
30
.include <bsd.port.mk>
35
.include <bsd.port.mk>
(-)audio/rubberband/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (rubberband-1.7.0.tar.bz2) = 8037fe0e435a756f74b524b47943a8db0a4915c8437a8a4f88cb681ed577f682
1
SHA256 (rubberband-1.8.1.tar.bz2) = ff0c63b0b5ce41f937a8a3bc560f27918c5fe0b90c6bc1cb70829b86ada82b75
2
SIZE (rubberband-1.7.0.tar.bz2) = 129328
2
SIZE (rubberband-1.8.1.tar.bz2) = 177501
(-)audio/rubberband/files/patch-system-sysutils.h (-3 / +3 lines)
Lines 1-12 Link Here
1
--- src/system/sysutils.h-dist	2012-01-08 17:15:39.369149714 +0100
1
--- src/system/sysutils.h-dist	2012-01-08 17:15:39.369149714 +0100
2
+++ src/system/sysutils.h	2012-01-08 17:19:42.384145925 +0100
2
+++ src/system/sysutils.h	2012-01-08 17:19:42.384145925 +0100
3
@@ -27,7 +27,8 @@
3
@@ -41,7 +41,8 @@
4
 #ifdef __MINGW32__
5
 #include <malloc.h>
4
 #include <malloc.h>
6
 #else
5
 #else
6
 #ifndef __MSVC__
7
-#include <alloca.h>
7
-#include <alloca.h>
8
+/* linux stdlib also includes alloca.h */
8
+/* linux stdlib also includes alloca.h */
9
+#include <stdlib.h>
9
+#include <stdlib.h>
10
 #endif
10
 #endif
11
 
11
 #endif
12
 
12
 
(-)audio/rubberband/pkg-descr (-3 / +4 lines)
Lines 1-5 Link Here
1
Rubber Band Library is a high quality software library for audio time-stretching
1
Rubber Band Library is a high quality software library for audio
2
and pitch-shifting. It permits you to change the tempo and pitch of an audio
2
time-stretching and pitch-shifting. It permits you to change the tempo
3
stream or recording dynamically and independently of one another.
3
and pitch of an audio stream or recording dynamically and independently
4
of one another.
4
5
5
WWW: http://breakfastquay.com/rubberband/
6
WWW: http://breakfastquay.com/rubberband/
(-)audio/rubberband/pkg-plist (-4 / +4 lines)
Lines 11-18 Link Here
11
lib/vamp/vamp-rubberband.so
11
lib/vamp/vamp-rubberband.so
12
libdata/pkgconfig/rubberband.pc
12
libdata/pkgconfig/rubberband.pc
13
share/ladspa/rdf/ladspa-rubberband.rdf
13
share/ladspa/rdf/ladspa-rubberband.rdf
14
@dirrm share/ladspa/rdf
14
@dirrmtry share/ladspa/rdf
15
@dirrm share/ladspa
15
@dirrmtry share/ladspa
16
@dirrm lib/vamp
16
@dirrmtry lib/vamp
17
@dirrm lib/ladspa
17
@dirrmtry lib/ladspa
18
@dirrm include/rubberband
18
@dirrm include/rubberband

Return to bug 190890