Ticket #10905: Portfile.2

File Portfile.2, 861 bytes (added by cssdev, 17 years ago)

Make the flac variant the default.

Line 
1# $Id: Portfile 20220 2006-10-29 06:32:52Z blair@macports.org $
2
3PortSystem 1.0
4name            libsndfile
5version         1.0.17
6revision        1
7categories      audio
8maintainers     sean@sfarc.net
9description     Library for reading and writing audio files
10long_description        libsndfile is a C library for reading and writing \
11                        sound files such as AIFF, AU and WAV files through \
12                        one standard interface.  It can currently read/write \
13                        8, 16, 24 and 32-bit PCM files as well as 32-bit floating \
14                        point WAV files and a number of compressed formats.
15homepage        http://www.mega-nerd.com/libsndfile/
16platforms       darwin
17master_sites    ${homepage}
18checksums       md5 2d126c35448503f6dbe33934d9581f6b
19configure.args  --mandir=${prefix}/share/man --disable-flac
20
21default_variants        +flac
22
23variant flac {
24        depends_lib     port:flac
25        configure.args-delete   --disable-flac
26        configure.args-append   --enable-flac
27}
28