head 1.5; access; symbols pkgsrc-2013Q2:1.5.0.38 pkgsrc-2013Q2-base:1.5 pkgsrc-2012Q4:1.5.0.36 pkgsrc-2012Q4-base:1.5 pkgsrc-2011Q4:1.5.0.34 pkgsrc-2011Q4-base:1.5 pkgsrc-2011Q2:1.5.0.32 pkgsrc-2011Q2-base:1.5 pkgsrc-2009Q4:1.5.0.30 pkgsrc-2009Q4-base:1.5 pkgsrc-2008Q4:1.5.0.28 pkgsrc-2008Q4-base:1.5 pkgsrc-2008Q3:1.5.0.26 pkgsrc-2008Q3-base:1.5 cube-native-xorg:1.5.0.24 cube-native-xorg-base:1.5 pkgsrc-2008Q2:1.5.0.22 pkgsrc-2008Q2-base:1.5 pkgsrc-2008Q1:1.5.0.20 pkgsrc-2008Q1-base:1.5 pkgsrc-2007Q4:1.5.0.18 pkgsrc-2007Q4-base:1.5 pkgsrc-2007Q3:1.5.0.16 pkgsrc-2007Q3-base:1.5 pkgsrc-2007Q2:1.5.0.14 pkgsrc-2007Q2-base:1.5 pkgsrc-2007Q1:1.5.0.12 pkgsrc-2007Q1-base:1.5 pkgsrc-2006Q4:1.5.0.10 pkgsrc-2006Q4-base:1.5 pkgsrc-2006Q3:1.5.0.8 pkgsrc-2006Q3-base:1.5 pkgsrc-2006Q2:1.5.0.6 pkgsrc-2006Q2-base:1.5 pkgsrc-2006Q1:1.5.0.4 pkgsrc-2006Q1-base:1.5 pkgsrc-2005Q4:1.5.0.2 pkgsrc-2005Q4-base:1.5 pkgsrc-2005Q3:1.4.0.2 pkgsrc-2005Q3-base:1.4 pkgsrc-2005Q2:1.3.0.8 pkgsrc-2005Q2-base:1.3 pkgsrc-2005Q1:1.3.0.6 pkgsrc-2005Q1-base:1.3 pkgsrc-2004Q4:1.3.0.4 pkgsrc-2004Q4-base:1.3 pkgsrc-2004Q3:1.3.0.2 pkgsrc-2004Q3-base:1.3 pkgsrc-2004Q2:1.2.0.14 pkgsrc-2004Q2-base:1.2 pkgsrc-2004Q1:1.2.0.12 pkgsrc-2004Q1-base:1.2 pkgsrc-2003Q4:1.2.0.10 pkgsrc-2003Q4-base:1.2 netbsd-1-6-1:1.2.0.6 netbsd-1-6-1-base:1.2 netbsd-1-6:1.2.0.8 netbsd-1-6-RELEASE-base:1.2 pkgviews:1.2.0.4 pkgviews-base:1.2 buildlink2:1.2.0.2 buildlink2-base:1.2 netbsd-1-5-PATCH003:1.2 netbsd-1-5-PATCH001:1.2 netbsd-1-5-RELEASE:1.2 netbsd-1-4-PATCH003:1.2 netbsd-1-4-PATCH002:1.2 comdex-fall-1999:1.2 netbsd-1-4-PATCH001:1.2 netbsd-1-4-RELEASE:1.2 netbsd-1-3-PATCH003:1.2 netbsd-1-3-PATCH002:1.1; locks; strict; comment @# @; 1.5 date 2005.11.23.22.39.12; author wiz; state dead; branches; next 1.4; 1.4 date 2005.09.06.08.10.57; author abs; state Exp; branches; next 1.3; 1.3 date 2004.09.15.15.15.14; author minskim; state Exp; branches; next 1.2; 1.2 date 98.08.07.10.36.10; author agc; state Exp; branches; next 1.1; 1.1 date 98.02.22.23.24.34; author hubertf; state Exp; branches; next ; desc @@ 1.5 log @Update to 7.15: About 7 years of development. Includes among others: support for flac, speex, ogg/vorbis; a choice of frontends between motif and gtk; esound support; guile scripting support; and native NetBSD audio code. Some possible future work on this package: Add options for fftw2 fftw3 ladspa gamin/fam mpg123 timidity ruby @ text @$NetBSD: patch-ah,v 1.4 2005/09/06 08:10:57 abs Exp $ --- snd-file.c.orig 1998-02-10 08:42:41.000000000 -0600 +++ snd-file.c @@@@ -15,6 +15,14 @@@@ #include #endif +#if defined (__NetBSD__) + #include + #include + #if (__NetBSD_Version__ >= 299000900) /* NetBSD 2.99.9 */ + #define statfs statvfs + #endif +#endif + #ifdef BEOS int disk_kspace (int fd) {return(1234567);} time_t file_write_date(char *filename) {return(1234567);} @@@@ -26,7 +34,7 @@@@ int disk_kspace (int fd) #if defined(SGI) || defined(SCO5) || defined(UW2) || defined(SOLARIS) err = fstatfs(fd,&buf,sizeof(buf),0); #endif -#if defined(LINUX) || defined(NEXT) +#if defined(LINUX) || defined(NEXT) || defined(__NetBSD__) err = fstatfs(fd,&buf); #endif /* in 32 bit land, the number of bytes can easily go over 2^32, so we'll look at kbytes here */ @ 1.4 log @Fix NetBSD statvfs check to be >= 299000900 not >= 200040000 No pkgrevision bumps needed. @ text @d1 1 a1 1 $NetBSD: patch-ah,v 1.3 2004/09/15 15:15:14 minskim Exp $ @ 1.3 log @Use statvfs instead of statfs on NetBSD>=2.0D. @ text @d1 1 a1 1 $NetBSD$ d12 1 a12 1 + #if (__NetBSD_Version__ >= 200040000) /* NetBSD 2.0D */ @ 1.2 log @Add NetBSD RCS Ids. @ text @d3 3 a5 3 --- snd.orig/snd-file.c Tue Feb 10 15:42:41 1998 +++ snd-file.c Sun Feb 22 02:11:57 1998 @@@@ -15,6 +15,11 @@@@ d12 3 d20 1 a20 1 @@@@ -26,7 +31,7 @@@@ @ 1.1 log @X based sound editor. @ text @d1 2 @