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 | |
---|
4 | PortSystem 1.0 |
---|
5 | |
---|
6 | name cdrdao |
---|
7 | version 1.2.3 |
---|
8 | revision 1 |
---|
9 | description Disk-At-Once Recording of Audio and Data CD-Rs/CD-RWs |
---|
10 | long_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 | |
---|
14 | homepage http://cdrdao.sourceforge.net/ |
---|
15 | categories sysutils |
---|
16 | maintainers nomaintainer |
---|
17 | platforms darwin |
---|
18 | master_sites sourceforge |
---|
19 | checksums md5 8d15ba6280bb7ba2f4d6be31d28b3c0c \ |
---|
20 | sha1 70d6547795a1342631c7ab56709fd1940c2aff9f \ |
---|
21 | rmd160 a162bdf2bc4d65581816d3a9e3c0d3ba66bb6523 |
---|
22 | use_bzip2 yes |
---|
23 | |
---|
24 | depends_build port:pkgconfig |
---|
25 | |
---|
26 | patchfiles patch-dao_ScsiIf-osx.cc.diff \ |
---|
27 | cdrdao-device-default-bufsize.patch |
---|
28 | |
---|
29 | configure.args --mandir=${prefix}/share/man \ |
---|
30 | --without-lame --without-xdao --without-ogg-support --without-mp3-support --disable-dependency-tracking |
---|
31 | |
---|
32 | variant 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 | } |
---|