diff options
author | Gerald Pfeifer <gerald@FreeBSD.org> | 2003-01-16 13:36:35 +0000 |
---|---|---|
committer | Gerald Pfeifer <gerald@FreeBSD.org> | 2003-01-16 13:36:35 +0000 |
commit | 35fb3fea77d384237697abc8629d0517920a5944 (patch) | |
tree | 32b1b06c88895628179671e8daffd02dfc725a2f | |
parent | 1550f20bf233750fc942a0571a1a49f886fb1c0b (diff) | |
download | freebsd-ports-35fb3fea77d384237697abc8629d0517920a5944.zip |
Update to version 1.25 (still broken, though less badly).
PR: 33082
Submitted by: Ulrich Spoerlein <q@uni.de>
Approved by: obrien (mentor)
-rw-r--r-- | audio/mxv/Makefile | 5 | ||||
-rw-r--r-- | audio/mxv/distinfo | 2 | ||||
-rw-r--r-- | audio/mxv/files/patch-ai | 54 | ||||
-rw-r--r-- | audio/mxv/pkg-descr | 2 |
4 files changed, 18 insertions, 45 deletions
diff --git a/audio/mxv/Makefile b/audio/mxv/Makefile index bd043618787d..78d1abd5ebf4 100644 --- a/audio/mxv/Makefile +++ b/audio/mxv/Makefile @@ -6,7 +6,7 @@ # PORTNAME= mxv -PORTVERSION= 1.20 +PORTVERSION= 1.25 CATEGORIES= audio MASTER_SITES= ftp://ftp.create.ucsb.edu/pub/MixViews/source/ DISTNAME= ${PORTNAME}-v${PORTVERSION}-source @@ -15,7 +15,8 @@ MAINTAINER= ports@FreeBSD.org BROKEN= "Does not build" -BUILD_DEPENDS= ${LOCALBASE}/interviews/bin/FREEBSD/ivmkmf:${PORTSDIR}/x11-toolkits/iv +BUILD_DEPENDS= ${LOCALBASE}/interviews/bin/FREEBSD/ivmkmf:${PORTSDIR}/x11-toolkits/iv \ + ${LOCALBASE}/include/f2c.h:${PORTSDIR}/lang/f2c NO_WRKSUBDIR= yes USE_IMAKE= yes diff --git a/audio/mxv/distinfo b/audio/mxv/distinfo index a17ca512750f..2d2ca21c559f 100644 --- a/audio/mxv/distinfo +++ b/audio/mxv/distinfo @@ -1 +1 @@ -MD5 (mxv-v1.20-source.tar.gz) = 742a7d49d5754853ab9dcacfae91c633 +MD5 (mxv-v1.25-source.tar.gz) = ea82cf4c271db7567d288de48a45967a diff --git a/audio/mxv/files/patch-ai b/audio/mxv/files/patch-ai index a1b71c4b9a46..e01c2e0481ef 100644 --- a/audio/mxv/files/patch-ai +++ b/audio/mxv/files/patch-ai @@ -1,40 +1,14 @@ -*** old/vw_converter.C Thu Jan 30 00:22:41 1997 ---- vw_converter.C Mon Jul 12 15:28:20 1999 -*************** -*** 27,33 **** ---- 27,37 ---- - #pragma implementation - #endif - -+ #ifdef __FreeBSD__ -+ #include <machine/soundcard.h> -+ #else - #include <sys/soundcard.h> -+ #endif - #include "localdefs.h" - #include "application.h" - #include "vw_converter.h" -*************** -*** 114,122 **** - fprintf(stderr, "setting frag size code to 0x%x\n", sizeCode); - #endif - - if (!ioctl (SNDCTL_DSP_SETFRAGMENT, (char *) &sizeCode)) - error("Unable to set fragment size."); -! else if (!ioctl(SNDCTL_DSP_SETFMT, (char *) &confirmedFormat)) - error("Unable to set sample format."); - else if(confirmedFormat != sampleFormat) - error("This sample format not supported by hardware."); ---- 118,129 ---- - fprintf(stderr, "setting frag size code to 0x%x\n", sizeCode); - #endif - -+ #ifndef __FreeBSD__ - if (!ioctl (SNDCTL_DSP_SETFRAGMENT, (char *) &sizeCode)) - error("Unable to set fragment size."); -! else -! #endif -! if (!ioctl(SNDCTL_DSP_SETFMT, (char *) &confirmedFormat)) - error("Unable to set sample format."); - else if(confirmedFormat != sampleFormat) - error("This sample format not supported by hardware."); +--- vw_converter.C.orig Sun Feb 18 04:29:16 2001 ++++ vw_converter.C Mon Jan 13 16:09:13 2003 +@@ -36,7 +36,11 @@ + #ifdef DEBUG_MIXER + #include <string.h> + #endif ++#ifdef __FreeBSD__ ++#include <machine/soundcard.h> ++#else + #include <sys/soundcard.h> ++#endif + #include <String.h> + #include "localdefs.h" + #include "application.h" diff --git a/audio/mxv/pkg-descr b/audio/mxv/pkg-descr index 63d49b0463da..13286f80c94c 100644 --- a/audio/mxv/pkg-descr +++ b/audio/mxv/pkg-descr @@ -2,5 +2,3 @@ This is the MiXViews sound file editor/recorder/player that supports FreeBSD's voxware sound drivers written by doug@ccmrc.ucsb.edu. It supports the following sound file formats: IRCAM, SND/AU, Hybrid (CMIX), AIF-C, WAVE, and raw (headerless). - -Version 1.20. |