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 (expand / 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,22 +1,22 @@ @@ -1,22 +1,22 @@
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=""

cvs diff -r1.12 -r1.13 pkgsrc/audio/flac/PLIST (expand / 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,224 +1,39 @@ @@ -1,224 +1,39 @@
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

cvs diff -r1.20 -r1.21 pkgsrc/audio/flac/distinfo (expand / 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