Wed Jun 12 20:31:51 2013 UTC ()
Update to 1.3.0:

FLAC 1.3.0 (26-May-2013)

    General:
        Move development to Xiph.org git repository.
        The --sector-align option of flac has been deprecated and may not exist in future versions. shntool provides similar functionality.
        Support for the RF64 and Wave64 formats in flac (see below).
        Better handling of cuesheets with non-CD-DA sample rates.
        The --ignore-chunk-sizes option has been added to the flac command line tool.
    FLAC format:
        (none)
    Ogg FLAC format:
        (none)
    flac:
        Added support for encoding from and decoding to the RF64 format, and a new corresponding option --force-rf64-format. (SF #1762502). --keep-foreign-metadata is also supported.
        Added support for encoding from and decoding to the Sony Wave64 format, and a new corresponding option --force-wave64-format. (SF #1769582). --keep-foreign-metadata is also supported.
        Added new options --preserve-modtime and --no-preserve-modtime to specify whether or not output files should copy the timestamp and permissions from their input files. The default is --preserve-modtime as in previous versions. (SF #1805428).
        Allow MM:SS:FF and MM:SS.SS time formats in non-CD-DA cuesheets. (SF #1947353, SF #2182432)
        The --sector-align option of flac has been deprecated and may not exist in future versions. shntool provides similar functionality. (SF #1805946)
        Improved error message when user attempts to decode a non-FLAC file (SF #2222789).
        Fix bug where flac was disallowing use of --replay-gain when encoding from stdin (SF #1840124).
        Fix bug with fractional seconds on some locales (SF #1815517, SF #1858012).
        Read and write appropriate channel masks for 6.1 and 7.1 surround input WAV files. Documentation was also updated.
        Correct Wave64 GUIDs.
        Support 56kHz to 192kHz gain analysis (patch from Earl Chew)
        Add ability to handle utf8 filenames on Windows (large set of patches from Janne Hyvè¾°rinen)
    metaflac:
        Allow MM:SS:FF and MM:SS.SS time formats in non-CD-DA cuesheets. (SF #1947353, SF #2182432)
    plugins:
        Minor updates for XMMS plugin.
        Winamp2 plugin was dropped because Nullsoft has provided native FLAC support since 2006.
    build system:
        Fixes for autotools (including SF #1859664).
        Fixes for MinGW (including SF #2000973, SF #2209829).
        Fixes for gcc (including SF #1834168, SF #2002481).
        Fixes for Sun Studio/Forte (SF #1701960).
        Fixes for windows builds (including SF #1676822, SF #1756624, SF #1809863, SF #1911149).
        Fixes for FreeBSD and OpenBSD.
        Compile with GNU gcc _FORTIFY_SOURCE=2 and stack protection where those features are detected.
        Enable a bunch of GCC compiler warnings and fix code that generates warnings.
    documentation:
        Document --ignore-chunk-sizes and --apply-replaygain-which-is-not-lossless option for flac.
    libraries:
        libFLAC encoder was defaulting to level 0 compression instead of 5 (SF #1816825).
        Fix bug in bitreader handling of read callback returning a short count (SF #2490454).
        Improve decoder's ability to distinguish between a FLAC sync code and an MPEG one (SF #2491433).
    Interface changes:
        libFLAC:
            Added FLAC__format_blocksize_is_subset()
        libFLAC++:
            Add a number of convienience methods.


(wiz)
diff -r1.46 -r1.47 pkgsrc/audio/flac/Makefile
diff -r1.12 -r1.13 pkgsrc/audio/flac/PLIST
diff -r1.20 -r1.21 pkgsrc/audio/flac/distinfo
diff -r1.5 -r0 pkgsrc/audio/flac/patches/patch-ad
diff -r1.4 -r0 pkgsrc/audio/flac/patches/patch-ag
diff -r1.4 -r0 pkgsrc/audio/flac/patches/patch-ah
diff -r1.1 -r0 pkgsrc/audio/flac/patches/patch-ay
diff -r1.1 -r0 pkgsrc/audio/flac/patches/patch-az

cvs diff -r1.46 -r1.47 pkgsrc/audio/flac/Makefile (switch to unified diff)

--- pkgsrc/audio/flac/Makefile 2012/09/11 23:59:36 1.46
+++ pkgsrc/audio/flac/Makefile 2013/06/12 20:31:51 1.47
@@ -1,59 +1,59 @@ @@ -1,59 +1,59 @@
1# $NetBSD: Makefile,v 1.46 2012/09/11 23:59:36 asau Exp $ 1# $NetBSD: Makefile,v 1.47 2013/06/12 20:31:51 wiz Exp $
2 2
3DISTNAME= flac-1.2.1 3DISTNAME= flac-1.3.0
4PKGREVISION= 1 
5CATEGORIES= audio archivers 4CATEGORIES= audio archivers
6MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=flac/} 5MASTER_SITES= http://downloads.xiph.org/releases/flac/
 6EXTRACT_SUFX= .tar.xz
7 7
8MAINTAINER= pkgsrc-users@NetBSD.org 8MAINTAINER= pkgsrc-users@NetBSD.org
9HOMEPAGE= http://flac.sourceforge.net/ 9HOMEPAGE= http://xiph.org/flac/
10COMMENT= Free lossless audio codec 10COMMENT= Free lossless audio codec
11LICENSE= modified-bsd AND gnu-gpl-v2 AND gnu-lgpl-v2.1 11LICENSE= modified-bsd AND gnu-gpl-v2 AND gnu-lgpl-v2.1
12 12
13PKG_INSTALLATION_TYPES= overwrite pkgviews 13PKG_INSTALLATION_TYPES= overwrite pkgviews
14 14
15WRKSRC= ${WRKDIR}/${PKGNAME_NOREV} 15WRKSRC= ${WRKDIR}/${PKGNAME_NOREV}
16USE_LIBTOOL= yes 16USE_LIBTOOL= yes
17USE_TOOLS+= gmake 17USE_TOOLS+= gmake
18USE_LANGUAGES= c c++ 18USE_LANGUAGES= c c++
19GNU_CONFIGURE= yes 19GNU_CONFIGURE= yes
20 20
21CONFIGURE_ENV+= ac_cv_path_XMMS_CONFIG="no" 21CONFIGURE_ENV+= ac_cv_path_XMMS_CONFIG="no"
22CONFIGURE_ENV+= ac_cv_prog_DOXYGEN="" 22CONFIGURE_ENV+= ac_cv_prog_DOXYGEN=""
23 23
24PKGCONFIG_OVERRIDE+= src/libFLAC++/flac++.pc.in src/libFLAC/flac.pc.in 24PKGCONFIG_OVERRIDE+= src/libFLAC++/flac++.pc.in src/libFLAC/flac.pc.in
25 25
26.include "../../mk/bsd.prefs.mk" 26.include "../../mk/bsd.prefs.mk"
27 27
28.if !empty(MACHINE_PLATFORM:MNetBSD-*-i386) 28.if !empty(MACHINE_PLATFORM:MNetBSD-*-i386)
29BUILD_DEPENDS+= nasm>=0.98:../../devel/nasm 29BUILD_DEPENDS+= nasm>=0.98:../../devel/nasm
30.endif 30.endif
31 31
32.if !empty(MACHINE_PLATFORM:M*-*-powerpc) 32.if !empty(MACHINE_PLATFORM:M*-*-powerpc)
33. if ${OPSYS} != "Darwin" 33. if ${OPSYS} != "Darwin"
34CONFIGURE_ARGS+= --disable-asm-optimizations 34CONFIGURE_ARGS+= --disable-asm-optimizations
35CONFIGURE_ARGS+= --disable-altivec 35CONFIGURE_ARGS+= --disable-altivec
36. endif 36. endif
37.endif 37.endif
38 38
39.if !empty(MACHINE_PLATFORM:MDarwin-*-i386) 39.if !empty(MACHINE_PLATFORM:MDarwin-*-i386)
40CONFIGURE_ARGS+= --disable-asm-optimizations 40CONFIGURE_ARGS+= --disable-asm-optimizations
41.endif 41.endif
42 42
43.include "../../mk/compiler.mk" 43.include "../../mk/compiler.mk"
44 44
45# Version 1.1.2 of flac doesn't seem to build correctly with -O3 using 45# Version 1.1.2 of flac doesn't seem to build correctly with -O3 using
46# the MIPSpro compiler. 46# the MIPSpro compiler.
47# XXX: retry for 1.1.3 47# XXX: retry for 1.1.3
48.if !empty(PKGSRC_COMPILER:Mmipspro) 48.if !empty(PKGSRC_COMPILER:Mmipspro)
49BUILDLINK_TRANSFORM+= rm:-O3 49BUILDLINK_TRANSFORM+= rm:-O3
50.endif 50.endif
51 51
52# SunPro does not support __inline 52# SunPro does not support __inline
53.if !empty(PKGSRC_COMPILER:Msunpro) 53.if !empty(PKGSRC_COMPILER:Msunpro)
54CFLAGS+= -D__inline=inline 54CFLAGS+= -D__inline=inline
55.endif 55.endif
56 56
57.include "../../multimedia/libogg/buildlink3.mk" 57.include "../../multimedia/libogg/buildlink3.mk"
58 58
59.include "../../mk/bsd.pkg.mk" 59.include "../../mk/bsd.pkg.mk"

cvs diff -r1.12 -r1.13 pkgsrc/audio/flac/PLIST (switch to unified diff)

--- pkgsrc/audio/flac/PLIST 2009/06/14 17:32:08 1.12
+++ pkgsrc/audio/flac/PLIST 2013/06/12 20:31:51 1.13
@@ -1,299 +1,114 @@ @@ -1,299 +1,114 @@
1@comment $NetBSD: PLIST,v 1.12 2009/06/14 17:32:08 joerg Exp $ 1@comment $NetBSD: PLIST,v 1.13 2013/06/12 20:31:51 wiz Exp $
2bin/flac 2bin/flac
3bin/metaflac 3bin/metaflac
4include/FLAC++/all.h 4include/FLAC++/all.h
5include/FLAC++/decoder.h 5include/FLAC++/decoder.h
6include/FLAC++/encoder.h 6include/FLAC++/encoder.h
7include/FLAC++/export.h 7include/FLAC++/export.h
8include/FLAC++/metadata.h 8include/FLAC++/metadata.h
9include/FLAC/all.h 9include/FLAC/all.h
10include/FLAC/assert.h 10include/FLAC/assert.h
11include/FLAC/callback.h 11include/FLAC/callback.h
12include/FLAC/export.h 12include/FLAC/export.h
13include/FLAC/format.h 13include/FLAC/format.h
14include/FLAC/metadata.h 14include/FLAC/metadata.h
15include/FLAC/ordinals.h 15include/FLAC/ordinals.h
16include/FLAC/stream_decoder.h 16include/FLAC/stream_decoder.h
17include/FLAC/stream_encoder.h 17include/FLAC/stream_encoder.h
18lib/libFLAC++.la 18lib/libFLAC++.la
19lib/libFLAC.la 19lib/libFLAC.la
20lib/pkgconfig/flac++.pc 20lib/pkgconfig/flac++.pc
21lib/pkgconfig/flac.pc 21lib/pkgconfig/flac.pc
22man/man1/flac.1 22man/man1/flac.1
23man/man1/metaflac.1 23man/man1/metaflac.1
24share/aclocal/libFLAC++.m4 24share/aclocal/libFLAC++.m4
25share/aclocal/libFLAC.m4 25share/aclocal/libFLAC.m4
26share/doc/${PKGNAME}/FLAC.tag 26share/doc/${PKGNAME}/FLAC.tag
27share/doc/${PKGNAME}/html/api/+_2all_8h-source.html 
28share/doc/${PKGNAME}/html/api/+_2export_8h-source.html 
29share/doc/${PKGNAME}/html/api/+_2export_8h.html 
30share/doc/${PKGNAME}/html/api/+_2metadata_8h-source.html 
31share/doc/${PKGNAME}/html/api/+_2metadata_8h.html 
32share/doc/${PKGNAME}/html/api/all_8h-source.html 
33share/doc/${PKGNAME}/html/api/annotated.html 
34share/doc/${PKGNAME}/html/api/assert_8h-source.html 
35share/doc/${PKGNAME}/html/api/callback_8h-source.html 
36share/doc/${PKGNAME}/html/api/callback_8h.html 
37share/doc/${PKGNAME}/html/api/classFLAC_1_1Decoder_1_1File-members.html 
38share/doc/${PKGNAME}/html/api/classFLAC_1_1Decoder_1_1File.html 
39share/doc/${PKGNAME}/html/api/classFLAC_1_1Decoder_1_1File.png 
40share/doc/${PKGNAME}/html/api/classFLAC_1_1Decoder_1_1Stream-members.html 
41share/doc/${PKGNAME}/html/api/classFLAC_1_1Decoder_1_1Stream.html 
42share/doc/${PKGNAME}/html/api/classFLAC_1_1Decoder_1_1Stream.png 
43share/doc/${PKGNAME}/html/api/classFLAC_1_1Decoder_1_1Stream_1_1State-members.html 
44share/doc/${PKGNAME}/html/api/classFLAC_1_1Decoder_1_1Stream_1_1State.html 
45share/doc/${PKGNAME}/html/api/classFLAC_1_1Encoder_1_1File-members.html 
46share/doc/${PKGNAME}/html/api/classFLAC_1_1Encoder_1_1File.html 
47share/doc/${PKGNAME}/html/api/classFLAC_1_1Encoder_1_1File.png 
48share/doc/${PKGNAME}/html/api/classFLAC_1_1Encoder_1_1Stream-members.html 
49share/doc/${PKGNAME}/html/api/classFLAC_1_1Encoder_1_1Stream.html 
50share/doc/${PKGNAME}/html/api/classFLAC_1_1Encoder_1_1Stream.png 
51share/doc/${PKGNAME}/html/api/classFLAC_1_1Encoder_1_1Stream_1_1State-members.html 
52share/doc/${PKGNAME}/html/api/classFLAC_1_1Encoder_1_1Stream_1_1State.html 
53share/doc/${PKGNAME}/html/api/classFLAC_1_1Metadata_1_1Application-members.html 
54share/doc/${PKGNAME}/html/api/classFLAC_1_1Metadata_1_1Application.html 
55share/doc/${PKGNAME}/html/api/classFLAC_1_1Metadata_1_1Application.png 
56share/doc/${PKGNAME}/html/api/classFLAC_1_1Metadata_1_1Chain-members.html 
57share/doc/${PKGNAME}/html/api/classFLAC_1_1Metadata_1_1Chain.html 
58share/doc/${PKGNAME}/html/api/classFLAC_1_1Metadata_1_1Chain_1_1Status-members.html 
59share/doc/${PKGNAME}/html/api/classFLAC_1_1Metadata_1_1Chain_1_1Status.html 
60share/doc/${PKGNAME}/html/api/classFLAC_1_1Metadata_1_1CueSheet-members.html 
61share/doc/${PKGNAME}/html/api/classFLAC_1_1Metadata_1_1CueSheet.html 
62share/doc/${PKGNAME}/html/api/classFLAC_1_1Metadata_1_1CueSheet.png 
63share/doc/${PKGNAME}/html/api/classFLAC_1_1Metadata_1_1CueSheet_1_1Track-members.html 
64share/doc/${PKGNAME}/html/api/classFLAC_1_1Metadata_1_1CueSheet_1_1Track.html 
65share/doc/${PKGNAME}/html/api/classFLAC_1_1Metadata_1_1Iterator-members.html 
66share/doc/${PKGNAME}/html/api/classFLAC_1_1Metadata_1_1Iterator.html 
67share/doc/${PKGNAME}/html/api/classFLAC_1_1Metadata_1_1Padding-members.html 
68share/doc/${PKGNAME}/html/api/classFLAC_1_1Metadata_1_1Padding.html 
69share/doc/${PKGNAME}/html/api/classFLAC_1_1Metadata_1_1Padding.png 
70share/doc/${PKGNAME}/html/api/classFLAC_1_1Metadata_1_1Picture-members.html 
71share/doc/${PKGNAME}/html/api/classFLAC_1_1Metadata_1_1Picture.html 
72share/doc/${PKGNAME}/html/api/classFLAC_1_1Metadata_1_1Picture.png 
73share/doc/${PKGNAME}/html/api/classFLAC_1_1Metadata_1_1Prototype-members.html 
74share/doc/${PKGNAME}/html/api/classFLAC_1_1Metadata_1_1Prototype.html 
75share/doc/${PKGNAME}/html/api/classFLAC_1_1Metadata_1_1Prototype.png 
76share/doc/${PKGNAME}/html/api/classFLAC_1_1Metadata_1_1SeekTable-members.html 
77share/doc/${PKGNAME}/html/api/classFLAC_1_1Metadata_1_1SeekTable.html 
78share/doc/${PKGNAME}/html/api/classFLAC_1_1Metadata_1_1SeekTable.png 
79share/doc/${PKGNAME}/html/api/classFLAC_1_1Metadata_1_1SimpleIterator-members.html 
80share/doc/${PKGNAME}/html/api/classFLAC_1_1Metadata_1_1SimpleIterator.html 
81share/doc/${PKGNAME}/html/api/classFLAC_1_1Metadata_1_1SimpleIterator_1_1Status-members.html 
82share/doc/${PKGNAME}/html/api/classFLAC_1_1Metadata_1_1SimpleIterator_1_1Status.html 
83share/doc/${PKGNAME}/html/api/classFLAC_1_1Metadata_1_1StreamInfo-members.html 
84share/doc/${PKGNAME}/html/api/classFLAC_1_1Metadata_1_1StreamInfo.html 
85share/doc/${PKGNAME}/html/api/classFLAC_1_1Metadata_1_1StreamInfo.png 
86share/doc/${PKGNAME}/html/api/classFLAC_1_1Metadata_1_1Unknown-members.html 
87share/doc/${PKGNAME}/html/api/classFLAC_1_1Metadata_1_1Unknown.html 
88share/doc/${PKGNAME}/html/api/classFLAC_1_1Metadata_1_1Unknown.png 
89share/doc/${PKGNAME}/html/api/classFLAC_1_1Metadata_1_1VorbisComment-members.html 
90share/doc/${PKGNAME}/html/api/classFLAC_1_1Metadata_1_1VorbisComment.html 
91share/doc/${PKGNAME}/html/api/classFLAC_1_1Metadata_1_1VorbisComment.png 
92share/doc/${PKGNAME}/html/api/classFLAC_1_1Metadata_1_1VorbisComment_1_1Entry-members.html 
93share/doc/${PKGNAME}/html/api/classFLAC_1_1Metadata_1_1VorbisComment_1_1Entry.html 
94share/doc/${PKGNAME}/html/api/classes.html 
95share/doc/${PKGNAME}/html/api/decoder_8h-source.html 
96share/doc/${PKGNAME}/html/api/decoder_8h.html 
97share/doc/${PKGNAME}/html/api/dir_000000.html 
98share/doc/${PKGNAME}/html/api/dir_000001.html 
99share/doc/${PKGNAME}/html/api/dir_000002.html 
100share/doc/${PKGNAME}/html/api/dirs.html 
101share/doc/${PKGNAME}/html/api/doxygen.css 
102share/doc/${PKGNAME}/html/api/doxygen.png 
103share/doc/${PKGNAME}/html/api/encoder_8h-source.html 
104share/doc/${PKGNAME}/html/api/encoder_8h.html 
105share/doc/${PKGNAME}/html/api/export_8h-source.html 
106share/doc/${PKGNAME}/html/api/export_8h.html 
107share/doc/${PKGNAME}/html/api/files.html 
108share/doc/${PKGNAME}/html/api/format_8h-source.html 
109share/doc/${PKGNAME}/html/api/format_8h.html 
110share/doc/${PKGNAME}/html/api/functions.html 
111share/doc/${PKGNAME}/html/api/functions_func.html 
112share/doc/${PKGNAME}/html/api/functions_vars.html 
113share/doc/${PKGNAME}/html/api/globals.html 
114share/doc/${PKGNAME}/html/api/globals_0x66.html 
115share/doc/${PKGNAME}/html/api/globals_0x67.html 
116share/doc/${PKGNAME}/html/api/globals_defs.html 
117share/doc/${PKGNAME}/html/api/globals_enum.html 
118share/doc/${PKGNAME}/html/api/globals_eval.html 
119share/doc/${PKGNAME}/html/api/globals_func.html 
120share/doc/${PKGNAME}/html/api/globals_type.html 
121share/doc/${PKGNAME}/html/api/globals_vars.html 
122share/doc/${PKGNAME}/html/api/group__flac.html 
123share/doc/${PKGNAME}/html/api/group__flac__callbacks.html 
124share/doc/${PKGNAME}/html/api/group__flac__decoder.html 
125share/doc/${PKGNAME}/html/api/group__flac__encoder.html 
126share/doc/${PKGNAME}/html/api/group__flac__export.html 
127share/doc/${PKGNAME}/html/api/group__flac__format.html 
128share/doc/${PKGNAME}/html/api/group__flac__metadata.html 
129share/doc/${PKGNAME}/html/api/group__flac__metadata__level0.html 
130share/doc/${PKGNAME}/html/api/group__flac__metadata__level1.html 
131share/doc/${PKGNAME}/html/api/group__flac__metadata__level2.html 
132share/doc/${PKGNAME}/html/api/group__flac__metadata__object.html 
133share/doc/${PKGNAME}/html/api/group__flac__stream__decoder.html 
134share/doc/${PKGNAME}/html/api/group__flac__stream__encoder.html 
135share/doc/${PKGNAME}/html/api/group__flacpp.html 
136share/doc/${PKGNAME}/html/api/group__flacpp__decoder.html 
137share/doc/${PKGNAME}/html/api/group__flacpp__encoder.html 
138share/doc/${PKGNAME}/html/api/group__flacpp__export.html 
139share/doc/${PKGNAME}/html/api/group__flacpp__metadata.html 
140share/doc/${PKGNAME}/html/api/group__flacpp__metadata__level0.html 
141share/doc/${PKGNAME}/html/api/group__flacpp__metadata__level1.html 
142share/doc/${PKGNAME}/html/api/group__flacpp__metadata__level2.html 
143share/doc/${PKGNAME}/html/api/group__flacpp__metadata__object.html 
144share/doc/${PKGNAME}/html/api/group__porting.html 
145share/doc/${PKGNAME}/html/api/group__porting__1__1__2__to__1__1__3.html 
146share/doc/${PKGNAME}/html/api/group__porting__1__1__3__to__1__1__4.html 
147share/doc/${PKGNAME}/html/api/group__porting__1__1__4__to__1__2__0.html 
148share/doc/${PKGNAME}/html/api/hierarchy.html 
149share/doc/${PKGNAME}/html/api/index.html 
150share/doc/${PKGNAME}/html/api/metadata_8h-source.html 
151share/doc/${PKGNAME}/html/api/metadata_8h.html 
152share/doc/${PKGNAME}/html/api/modules.html 
153share/doc/${PKGNAME}/html/api/ordinals_8h-source.html 
154share/doc/${PKGNAME}/html/api/stream__decoder_8h-source.html 
155share/doc/${PKGNAME}/html/api/stream__decoder_8h.html 
156share/doc/${PKGNAME}/html/api/stream__encoder_8h-source.html 
157share/doc/${PKGNAME}/html/api/stream__encoder_8h.html 
158share/doc/${PKGNAME}/html/api/structFLAC____EntropyCodingMethod-members.html 
159share/doc/${PKGNAME}/html/api/structFLAC____EntropyCodingMethod.html 
160share/doc/${PKGNAME}/html/api/structFLAC____EntropyCodingMethod__PartitionedRice-members.html 
161share/doc/${PKGNAME}/html/api/structFLAC____EntropyCodingMethod__PartitionedRice.html 
162share/doc/${PKGNAME}/html/api/structFLAC____EntropyCodingMethod__PartitionedRiceContents-members.html 
163share/doc/${PKGNAME}/html/api/structFLAC____EntropyCodingMethod__PartitionedRiceContents.html 
164share/doc/${PKGNAME}/html/api/structFLAC____Frame-members.html 
165share/doc/${PKGNAME}/html/api/structFLAC____Frame.html 
166share/doc/${PKGNAME}/html/api/structFLAC____FrameFooter-members.html 
167share/doc/${PKGNAME}/html/api/structFLAC____FrameFooter.html 
168share/doc/${PKGNAME}/html/api/structFLAC____FrameHeader-members.html 
169share/doc/${PKGNAME}/html/api/structFLAC____FrameHeader.html 
170share/doc/${PKGNAME}/html/api/structFLAC____IOCallbacks-members.html 
171share/doc/${PKGNAME}/html/api/structFLAC____IOCallbacks.html 
172share/doc/${PKGNAME}/html/api/structFLAC____StreamDecoder-members.html 
173share/doc/${PKGNAME}/html/api/structFLAC____StreamDecoder.html 
174share/doc/${PKGNAME}/html/api/structFLAC____StreamEncoder-members.html 
175share/doc/${PKGNAME}/html/api/structFLAC____StreamEncoder.html 
176share/doc/${PKGNAME}/html/api/structFLAC____StreamMetadata-members.html 
177share/doc/${PKGNAME}/html/api/structFLAC____StreamMetadata.html 
178share/doc/${PKGNAME}/html/api/structFLAC____StreamMetadata__Application-members.html 
179share/doc/${PKGNAME}/html/api/structFLAC____StreamMetadata__Application.html 
180share/doc/${PKGNAME}/html/api/structFLAC____StreamMetadata__CueSheet-members.html 
181share/doc/${PKGNAME}/html/api/structFLAC____StreamMetadata__CueSheet.html 
182share/doc/${PKGNAME}/html/api/structFLAC____StreamMetadata__CueSheet__Index-members.html 
183share/doc/${PKGNAME}/html/api/structFLAC____StreamMetadata__CueSheet__Index.html 
184share/doc/${PKGNAME}/html/api/structFLAC____StreamMetadata__CueSheet__Track-members.html 
185share/doc/${PKGNAME}/html/api/structFLAC____StreamMetadata__CueSheet__Track.html 
186share/doc/${PKGNAME}/html/api/structFLAC____StreamMetadata__Padding-members.html 
187share/doc/${PKGNAME}/html/api/structFLAC____StreamMetadata__Padding.html 
188share/doc/${PKGNAME}/html/api/structFLAC____StreamMetadata__Picture-members.html 
189share/doc/${PKGNAME}/html/api/structFLAC____StreamMetadata__Picture.html 
190share/doc/${PKGNAME}/html/api/structFLAC____StreamMetadata__SeekPoint-members.html 
191share/doc/${PKGNAME}/html/api/structFLAC____StreamMetadata__SeekPoint.html 
192share/doc/${PKGNAME}/html/api/structFLAC____StreamMetadata__SeekTable-members.html 
193share/doc/${PKGNAME}/html/api/structFLAC____StreamMetadata__SeekTable.html 
194share/doc/${PKGNAME}/html/api/structFLAC____StreamMetadata__StreamInfo-members.html 
195share/doc/${PKGNAME}/html/api/structFLAC____StreamMetadata__StreamInfo.html 
196share/doc/${PKGNAME}/html/api/structFLAC____StreamMetadata__Unknown-members.html 
197share/doc/${PKGNAME}/html/api/structFLAC____StreamMetadata__Unknown.html 
198share/doc/${PKGNAME}/html/api/structFLAC____StreamMetadata__VorbisComment-members.html 
199share/doc/${PKGNAME}/html/api/structFLAC____StreamMetadata__VorbisComment.html 
200share/doc/${PKGNAME}/html/api/structFLAC____StreamMetadata__VorbisComment__Entry-members.html 
201share/doc/${PKGNAME}/html/api/structFLAC____StreamMetadata__VorbisComment__Entry.html 
202share/doc/${PKGNAME}/html/api/structFLAC____Subframe-members.html 
203share/doc/${PKGNAME}/html/api/structFLAC____Subframe.html 
204share/doc/${PKGNAME}/html/api/structFLAC____Subframe__Constant-members.html 
205share/doc/${PKGNAME}/html/api/structFLAC____Subframe__Constant.html 
206share/doc/${PKGNAME}/html/api/structFLAC____Subframe__Fixed-members.html 
207share/doc/${PKGNAME}/html/api/structFLAC____Subframe__Fixed.html 
208share/doc/${PKGNAME}/html/api/structFLAC____Subframe__LPC-members.html 
209share/doc/${PKGNAME}/html/api/structFLAC____Subframe__LPC.html 
210share/doc/${PKGNAME}/html/api/structFLAC____Subframe__Verbatim-members.html 
211share/doc/${PKGNAME}/html/api/structFLAC____Subframe__Verbatim.html 
212share/doc/${PKGNAME}/html/changelog.html 27share/doc/${PKGNAME}/html/changelog.html
213share/doc/${PKGNAME}/html/comparison.html 28share/doc/${PKGNAME}/html/comparison.html
214share/doc/${PKGNAME}/html/comparison__chopin_prelude_24.html 29share/doc/${PKGNAME}/html/comparison__chopin_prelude_24.html
215share/doc/${PKGNAME}/html/comparison__dream_theater_600.html 30share/doc/${PKGNAME}/html/comparison__dream_theater_600.html
216share/doc/${PKGNAME}/html/comparison__eddie_warner_titus.html 31share/doc/${PKGNAME}/html/comparison__eddie_warner_titus.html
217share/doc/${PKGNAME}/html/comparison__fanfare_de_l_eventail_de_jeanne.html 32share/doc/${PKGNAME}/html/comparison__fanfare_de_l_eventail_de_jeanne.html
218share/doc/${PKGNAME}/html/comparison__gloria_estefan_conga.html 33share/doc/${PKGNAME}/html/comparison__gloria_estefan_conga.html
219share/doc/${PKGNAME}/html/comparison__hand_in_my_pocket.html 34share/doc/${PKGNAME}/html/comparison__hand_in_my_pocket.html
220share/doc/${PKGNAME}/html/comparison__l_sub_raga_sivapriya.html 35share/doc/${PKGNAME}/html/comparison__l_sub_raga_sivapriya.html
221share/doc/${PKGNAME}/html/comparison__laetatus_sum.html 36share/doc/${PKGNAME}/html/comparison__laetatus_sum.html
222share/doc/${PKGNAME}/html/comparison__mummified_in_barbed_wire.html 37share/doc/${PKGNAME}/html/comparison__mummified_in_barbed_wire.html
223share/doc/${PKGNAME}/html/comparison__prokofiev_pcon3_3.html 38share/doc/${PKGNAME}/html/comparison__prokofiev_pcon3_3.html
224share/doc/${PKGNAME}/html/comparison__ravel_sq4_4.html 39share/doc/${PKGNAME}/html/comparison__ravel_sq4_4.html
225share/doc/${PKGNAME}/html/comparison__scarlatti_k42.html 40share/doc/${PKGNAME}/html/comparison__scarlatti_k42.html
226share/doc/${PKGNAME}/html/comparison__tool_forty_six_and_2.html 41share/doc/${PKGNAME}/html/comparison__tool_forty_six_and_2.html
227share/doc/${PKGNAME}/html/comparison__white_room.html 42share/doc/${PKGNAME}/html/comparison__white_room.html
228share/doc/${PKGNAME}/html/comparison_all_cpudectime.html 43share/doc/${PKGNAME}/html/comparison_all_cpudectime.html
229share/doc/${PKGNAME}/html/comparison_all_cpuenctime.html 44share/doc/${PKGNAME}/html/comparison_all_cpuenctime.html
230share/doc/${PKGNAME}/html/comparison_all_procdectime.html 45share/doc/${PKGNAME}/html/comparison_all_procdectime.html
231share/doc/${PKGNAME}/html/comparison_all_procenctime.html 46share/doc/${PKGNAME}/html/comparison_all_procenctime.html
232share/doc/${PKGNAME}/html/comparison_all_ratio.html 47share/doc/${PKGNAME}/html/comparison_all_ratio.html
233share/doc/${PKGNAME}/html/developers.html 48share/doc/${PKGNAME}/html/developers.html
234share/doc/${PKGNAME}/html/documentation.html 49share/doc/${PKGNAME}/html/documentation.html
235share/doc/${PKGNAME}/html/documentation_bugs.html 50share/doc/${PKGNAME}/html/documentation_bugs.html
236share/doc/${PKGNAME}/html/documentation_example_code.html 51share/doc/${PKGNAME}/html/documentation_example_code.html
237share/doc/${PKGNAME}/html/documentation_format_overview.html 52share/doc/${PKGNAME}/html/documentation_format_overview.html
238share/doc/${PKGNAME}/html/documentation_tasks.html 53share/doc/${PKGNAME}/html/documentation_tasks.html
239share/doc/${PKGNAME}/html/documentation_tools.html 54share/doc/${PKGNAME}/html/documentation_tools.html
240share/doc/${PKGNAME}/html/documentation_tools_flac.html 55share/doc/${PKGNAME}/html/documentation_tools_flac.html
241share/doc/${PKGNAME}/html/documentation_tools_metaflac.html 56share/doc/${PKGNAME}/html/documentation_tools_metaflac.html
242share/doc/${PKGNAME}/html/documentation_tools_plugins.html 57share/doc/${PKGNAME}/html/documentation_tools_plugins.html
243share/doc/${PKGNAME}/html/download.html 58share/doc/${PKGNAME}/html/download.html
244share/doc/${PKGNAME}/html/faq.html 59share/doc/${PKGNAME}/html/faq.html
245share/doc/${PKGNAME}/html/favicon.ico 60share/doc/${PKGNAME}/html/favicon.ico
246share/doc/${PKGNAME}/html/features.html 61share/doc/${PKGNAME}/html/features.html
247share/doc/${PKGNAME}/html/flac.css 62share/doc/${PKGNAME}/html/flac.css
248share/doc/${PKGNAME}/html/format.html 63share/doc/${PKGNAME}/html/format.html
249share/doc/${PKGNAME}/html/id.html 64share/doc/${PKGNAME}/html/id.html
250share/doc/${PKGNAME}/html/images/1x1.gif 65share/doc/${PKGNAME}/html/images/1x1.gif
251share/doc/${PKGNAME}/html/images/cafebug.gif 66share/doc/${PKGNAME}/html/images/cafebug.gif
252share/doc/${PKGNAME}/html/images/hw/Blackbird_Front_low3_325x87.jpg 67share/doc/${PKGNAME}/html/images/hw/Blackbird_Front_low3_325x87.jpg
253share/doc/${PKGNAME}/html/images/hw/MS300frontsmall_270x108.jpg 68share/doc/${PKGNAME}/html/images/hw/MS300frontsmall_270x108.jpg
254share/doc/${PKGNAME}/html/images/hw/MediaBox_Frt_170x325.jpg 69share/doc/${PKGNAME}/html/images/hw/MediaBox_Frt_170x325.jpg
255share/doc/${PKGNAME}/html/images/hw/SB_Hero_Black_325x182.jpg 70share/doc/${PKGNAME}/html/images/hw/SB_Hero_Black_325x182.jpg
256share/doc/${PKGNAME}/html/images/hw/Sooloos-ControlOne_325x328.jpg 71share/doc/${PKGNAME}/html/images/hw/Sooloos-ControlOne_325x328.jpg
257share/doc/${PKGNAME}/html/images/hw/Z500_front_325x94.jpg 72share/doc/${PKGNAME}/html/images/hw/Z500_front_325x94.jpg
258share/doc/${PKGNAME}/html/images/hw/a2_01_325x252.jpg 73share/doc/${PKGNAME}/html/images/hw/a2_01_325x252.jpg
259share/doc/${PKGNAME}/html/images/hw/arcus_325x135.jpg 74share/doc/${PKGNAME}/html/images/hw/arcus_325x135.jpg
260share/doc/${PKGNAME}/html/images/hw/bmp-1430_325x241.jpg 75share/doc/${PKGNAME}/html/images/hw/bmp-1430_325x241.jpg
261share/doc/${PKGNAME}/html/images/hw/cs505_front_lrg_325x113.jpg 76share/doc/${PKGNAME}/html/images/hw/cs505_front_lrg_325x113.jpg
262share/doc/${PKGNAME}/html/images/hw/enus_3-4lft-hires_product_eva8000_325x127.jpg 77share/doc/${PKGNAME}/html/images/hw/enus_3-4lft-hires_product_eva8000_325x127.jpg
263share/doc/${PKGNAME}/html/images/hw/escient_ProductLine_325x163.jpg 78share/doc/${PKGNAME}/html/images/hw/escient_ProductLine_325x163.jpg
264share/doc/${PKGNAME}/html/images/hw/hifidelio_bl_front_Z_RGB_325x163.jpg 79share/doc/${PKGNAME}/html/images/hw/hifidelio_bl_front_Z_RGB_325x163.jpg
265share/doc/${PKGNAME}/html/images/hw/i-station-mini-dx_325x237.jpg 80share/doc/${PKGNAME}/html/images/hw/i-station-mini-dx_325x237.jpg
266share/doc/${PKGNAME}/html/images/hw/iwod-g10_325x257.jpg 81share/doc/${PKGNAME}/html/images/hw/iwod-g10_325x257.jpg
267share/doc/${PKGNAME}/html/images/hw/knc_hr-2800_325x209.jpg 82share/doc/${PKGNAME}/html/images/hw/knc_hr-2800_325x209.jpg
268share/doc/${PKGNAME}/html/images/hw/mediaready_prodmain_MRMCa_325x232.jpg 83share/doc/${PKGNAME}/html/images/hw/mediaready_prodmain_MRMCa_325x232.jpg
269share/doc/${PKGNAME}/html/images/hw/meizu_m6_325x206.jpg 84share/doc/${PKGNAME}/html/images/hw/meizu_m6_325x206.jpg
270share/doc/${PKGNAME}/html/images/hw/musica_artwork_325x90.jpg 85share/doc/${PKGNAME}/html/images/hw/musica_artwork_325x90.jpg
271share/doc/${PKGNAME}/html/images/hw/neodigits_x5000_325x124.jpg 86share/doc/${PKGNAME}/html/images/hw/neodigits_x5000_325x124.jpg
272share/doc/${PKGNAME}/html/images/hw/onda-vx737_325x240.jpg 87share/doc/${PKGNAME}/html/images/hw/onda-vx737_325x240.jpg
273share/doc/${PKGNAME}/html/images/hw/request_n_front_325x103.jpg 88share/doc/${PKGNAME}/html/images/hw/request_n_front_325x103.jpg
274share/doc/${PKGNAME}/html/images/hw/rio_karma_279x254.jpg 89share/doc/${PKGNAME}/html/images/hw/rio_karma_279x254.jpg
275share/doc/${PKGNAME}/html/images/hw/sonos_family_RGB_325x200.jpg 90share/doc/${PKGNAME}/html/images/hw/sonos_family_RGB_325x200.jpg
276share/doc/${PKGNAME}/html/images/hw/teclast-tl29_325x244.jpg 91share/doc/${PKGNAME}/html/images/hw/teclast-tl29_325x244.jpg
277share/doc/${PKGNAME}/html/images/hw/transporter_hero_grey_325x208.jpg 92share/doc/${PKGNAME}/html/images/hw/transporter_hero_grey_325x208.jpg
278share/doc/${PKGNAME}/html/images/hw/tvix-4000_325x204.jpg 93share/doc/${PKGNAME}/html/images/hw/tvix-4000_325x204.jpg
279share/doc/${PKGNAME}/html/images/hw/vibez_nofm_combi_black_b_325x220.jpg 94share/doc/${PKGNAME}/html/images/hw/vibez_nofm_combi_black_b_325x220.jpg
280share/doc/${PKGNAME}/html/images/logo100.gif 95share/doc/${PKGNAME}/html/images/logo100.gif
281share/doc/${PKGNAME}/html/images/logo130.gif 96share/doc/${PKGNAME}/html/images/logo130.gif
282share/doc/${PKGNAME}/html/index.html 97share/doc/${PKGNAME}/html/index.html
283share/doc/${PKGNAME}/html/itunes.html 98share/doc/${PKGNAME}/html/itunes.html
284share/doc/${PKGNAME}/html/license.html 99share/doc/${PKGNAME}/html/license.html
285share/doc/${PKGNAME}/html/links.html 100share/doc/${PKGNAME}/html/links.html
286share/doc/${PKGNAME}/html/news.html 101share/doc/${PKGNAME}/html/news.html
287share/doc/${PKGNAME}/html/ogg_mapping.html 102share/doc/${PKGNAME}/html/ogg_mapping.html
288share/doc/${PKGNAME}/html/ru/authors.html 103share/doc/${PKGNAME}/html/ru/authors.html
289share/doc/${PKGNAME}/html/ru/comparison.html 104share/doc/${PKGNAME}/html/ru/comparison.html
290share/doc/${PKGNAME}/html/ru/developers.html 105share/doc/${PKGNAME}/html/ru/developers.html
291share/doc/${PKGNAME}/html/ru/documentation.html 106share/doc/${PKGNAME}/html/ru/documentation.html
292share/doc/${PKGNAME}/html/ru/download.html 107share/doc/${PKGNAME}/html/ru/download.html
293share/doc/${PKGNAME}/html/ru/features.html 108share/doc/${PKGNAME}/html/ru/features.html
294share/doc/${PKGNAME}/html/ru/format.html 109share/doc/${PKGNAME}/html/ru/format.html
295share/doc/${PKGNAME}/html/ru/goals.html 110share/doc/${PKGNAME}/html/ru/goals.html
296share/doc/${PKGNAME}/html/ru/id.html 111share/doc/${PKGNAME}/html/ru/id.html
297share/doc/${PKGNAME}/html/ru/index.html 112share/doc/${PKGNAME}/html/ru/index.html
298share/doc/${PKGNAME}/html/ru/links.html 113share/doc/${PKGNAME}/html/ru/links.html
299share/doc/${PKGNAME}/html/ru/news.html 114share/doc/${PKGNAME}/html/ru/news.html

cvs diff -r1.20 -r1.21 pkgsrc/audio/flac/distinfo (switch to unified diff)

--- pkgsrc/audio/flac/distinfo 2010/11/19 12:53:16 1.20
+++ pkgsrc/audio/flac/distinfo 2013/06/12 20:31:51 1.21
@@ -1,11 +1,6 @@ @@ -1,11 +1,6 @@
1$NetBSD: distinfo,v 1.20 2010/11/19 12:53:16 obache Exp $ 1$NetBSD: distinfo,v 1.21 2013/06/12 20:31:51 wiz Exp $
2 2
3SHA1 (flac-1.2.1.tar.gz) = bd54354900181b59db3089347cc84ad81e410b38 3SHA1 (flac-1.3.0.tar.xz) = a136e5748f8fb1e6c524c75000a765fc63bb7b1b
4RMD160 (flac-1.2.1.tar.gz) = bd3223c848054f0a75d11200b30f903bdd375bfc 4RMD160 (flac-1.3.0.tar.xz) = 6ced4a7ab2f1b0e583830b0ddc37a842703ee4c9
5Size (flac-1.2.1.tar.gz) = 2009217 bytes 5Size (flac-1.3.0.tar.xz) = 1084256 bytes
6SHA1 (patch-ad) = 9df5668bb5ffc0850be0a3b34ada825642752874 
7SHA1 (patch-af) = a91054ce5d37ac2dc88725fa68c59413b5f52067 6SHA1 (patch-af) = a91054ce5d37ac2dc88725fa68c59413b5f52067
8SHA1 (patch-ag) = 39cd81f6ad7451c572d5e5c3c697c7afaa1c65a4 
9SHA1 (patch-ah) = 8a2b3d16731c5a41df5679cae915233ed63fdef0 
10SHA1 (patch-ay) = f3af19f5f005538580a607887e23679cc0e7f0f2 
11SHA1 (patch-az) = 2cb3b188d14f388b20831e189317312709d926a8 

File Deleted: pkgsrc/audio/flac/patches/Attic/patch-ad

File Deleted: pkgsrc/audio/flac/patches/Attic/patch-ag

File Deleted: pkgsrc/audio/flac/patches/Attic/patch-ah

File Deleted: pkgsrc/audio/flac/patches/Attic/patch-ay

File Deleted: pkgsrc/audio/flac/patches/Attic/patch-az