diff options
author | sf <sf@FreeBSD.org> | 2001-10-23 02:44:30 +0800 |
---|---|---|
committer | sf <sf@FreeBSD.org> | 2001-10-23 02:44:30 +0800 |
commit | eba00b6aae15fcd1ab16c12fd939626e5016060e (patch) | |
tree | f890e1608893ae1a78f75bd4209fb0bf0778b527 /audio/sox | |
parent | af3297a496506d4981c7b090f33f569dcf2944bd (diff) | |
download | freebsd-ports-gnome-eba00b6aae15fcd1ab16c12fd939626e5016060e.tar.gz freebsd-ports-gnome-eba00b6aae15fcd1ab16c12fd939626e5016060e.tar.zst freebsd-ports-gnome-eba00b6aae15fcd1ab16c12fd939626e5016060e.zip |
o unbreak Alpha and prepare for other 64-bit platforms.
o add WITH_VORBIS and fix WITH_GSM.
PR: 31413
Submitted by: Christian Weisgerber <naddy@mips.inka.de>,
Dan Nelson <dnelson@allantgroup.com> (maintainer)
Diffstat (limited to 'audio/sox')
-rw-r--r-- | audio/sox/Makefile | 26 | ||||
-rw-r--r-- | audio/sox/files/patch-ad | 15 | ||||
-rw-r--r-- | audio/sox/files/patch-ae | 20 |
3 files changed, 54 insertions, 7 deletions
diff --git a/audio/sox/Makefile b/audio/sox/Makefile index 934df14e8d08..7e34200d620a 100644 --- a/audio/sox/Makefile +++ b/audio/sox/Makefile @@ -7,20 +7,32 @@ PORTNAME= sox PORTVERSION= 12.17.2 +PORTREVISION= 1 CATEGORIES= audio MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= sox -MAINTAINER= dnelson@emsphone.com +MAINTAINER= dnelson@emsphone.com -MAN1= sox.1 play.1 soxexam.1 -MLINKS= play.1 rec.1 -GNU_CONFIGURE= yes -CONFIGURE_ARGS= --enable-fast-ulaw --enable-fast-alaw +MAN1= sox.1 play.1 soxexam.1 +MLINKS= play.1 rec.1 +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --enable-fast-ulaw --enable-fast-alaw .if defined(WITH_GSM) -CONFIGURE_ARGS+= --with-gsmlib=${PREFIX}/lib --with-gsminc=${PREFIX}/include -LIB_DEPENDS+= gsm.1:${PORTSDIR}/audio/gsm +CONFIGURE_ARGS+= --with-gsmlib=${LOCALBASE}/lib \ + --with-gsminc=${LOCALBASE}/include +LIB_DEPENDS+= gsm.1:${PORTSDIR}/audio/gsm +.else +CONFIGURE_ARGS+= --with-gsminc=no +.endif + +.if defined(WITH_VORBIS) +CONFIGURE_ARGS+= --with-ogg-vorbisinc=${LOCALBASE}/include \ + --with-ogg-vorbislib=${LOCALBASE}/lib +LIB_DEPENDS+= vorbis.0:${PORTSDIR}/audio/libvorbis +.else +CONFIGURE_ARGS+= --with-ogg-vorbisinc=no .endif .include <bsd.port.mk> diff --git a/audio/sox/files/patch-ad b/audio/sox/files/patch-ad new file mode 100644 index 000000000000..812abc4c4e56 --- /dev/null +++ b/audio/sox/files/patch-ad @@ -0,0 +1,15 @@ + +$FreeBSD$ + +--- ima_rw.c.orig Sun Oct 21 00:11:17 2001 ++++ ima_rw.c Sun Oct 21 00:11:25 2001 +@@ -23,8 +23,8 @@ + #include <math.h> + #include <stdio.h> + #include <stdlib.h> +-#include "ima_rw.h" + #include "st.h" ++#include "ima_rw.h" + + /* + * diff --git a/audio/sox/files/patch-ae b/audio/sox/files/patch-ae new file mode 100644 index 000000000000..c4e0930b579b --- /dev/null +++ b/audio/sox/files/patch-ae @@ -0,0 +1,20 @@ + +$FreeBSD$ + +--- st.h.orig Sun Oct 21 00:13:45 2001 ++++ st.h Sun Oct 21 00:13:56 2001 +@@ -33,14 +33,9 @@ + #define st_free free + + /* FIXME: Move to separate header */ +-#ifdef __alpha__ + #include <sys/types.h> /* To get defines for 32-bit integers */ + #define LONG int32_t + #define ULONG u_int32_t +-#else +-#define LONG long +-#define ULONG unsigned long +-#endif + + #define MAXLONG 0x7fffffffL + #define MAXULONG 0xffffffffL |