Ticket #27819: Portfile

File Portfile, 1.4 KB (added by jagerman@…, 13 years ago)
Line 
1# -*- coding: utf-8; mode: tcl; tab-width: 4; truncate-lines: t; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:et:sw=4:ts=4:sts=4
2# $Id: Portfile 74247 2010-12-09 01:18:54Z jmr@macports.org $
3
4PortSystem      1.0
5
6name            cdrdao
7version         1.2.3
8revision        1
9description     Disk-At-Once Recording of Audio and Data CD-Rs/CD-RWs
10long_description \
11        Cdrdao records audio or data CD-Rs in disk-at-once (DAO) mode \
12        based on a textual description of the CD contents (toc-file).
13
14homepage        http://cdrdao.sourceforge.net/
15categories      sysutils
16maintainers     nomaintainer
17platforms       darwin
18master_sites    sourceforge
19checksums       md5 8d15ba6280bb7ba2f4d6be31d28b3c0c \
20                sha1 70d6547795a1342631c7ab56709fd1940c2aff9f \
21                rmd160 a162bdf2bc4d65581816d3a9e3c0d3ba66bb6523
22use_bzip2       yes
23
24depends_build   port:pkgconfig
25
26patchfiles      patch-dao_ScsiIf-osx.cc.diff \
27                cdrdao-device-default-bufsize.patch
28
29configure.args  --mandir=${prefix}/share/man \
30                --without-lame --without-xdao --without-ogg-support --without-mp3-support --disable-dependency-tracking
31
32variant lame description {Use LAME encoder} {
33        depends_lib-append      port:lame
34        configure.args-delete   --without-lame
35        configure.args-append   --with-lame-lib=${prefix}/lib --with-lame-include=${prefix}/include
36}