Ticket #16051: Portfile

File Portfile, 2.2 KB (added by dbevans (David B. Evans), 16 years ago)

Initial portfile

Line 
1# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
2# $Id$
3
4PortSystem 1.0
5
6name            ardour2
7version         2.5
8distname        ardour-${version}
9maintainers     gmail.com:dbevans
10categories      audio x11
11platforms       darwin
12homepage        http://ardour.org/
13
14description     Ardour is a digital audio workstation.
15
16long_description \
17                Ardour is a digital audio workstation. \
18                You can use it to record, edit and mix multi-track audio. \
19                Capabilities include: multichannel recording, non-destructive \
20                editing with unlimited undo/redo, full automation support, \
21                a powerful mixer, unlimited tracks/busses/plugins, timecode \
22                synchronization, and hardware control from surfaces like \
23                the Mackie Control Universal.
24
25use_bzip2       yes
26master_sites    ${homepage}files/releases/
27
28checksums       md5 88180d400e8c19ceea41aabadc098116 \
29                sha1 6d3d563cc11772d4d6de6f89551dd89e43466f84 \
30                rmd160 81961248b48f5a9cd1eed0f1010e02f3236da6dc
31
32depends_build   port:gettext \
33                port:pkgconfig \
34                port:libtool \
35                port:python25 \
36                port:scons
37
38depends_lib     port:jack \
39                port:libxslt \
40                port:libxml2 \
41                port:libart_lgpl \
42                port:libsamplerate \
43                port:raptor \
44                port:liblrdf \
45                port:glib2 \
46                port:gtk2 \
47                port:libgnomecanvas \
48                port:liblo \
49                port:boost \
50                port:fftw-3 \
51                port:fftw-3-single \
52                port:aubio \
53                port:slv2
54
55patchfiles      patch-SConstruct.diff
56
57use_configure   no
58
59build           {}
60
61destroot.cmd    scons
62destroot.post_args \
63                PREFIX=${prefix} DESTDIR=${destroot} VST=0 AUBIO=1 FREESOUND=1 LV2=1
64
65livecheck.check         regex
66livecheck.url           ${homepage}source_downloads
67livecheck.regex         recommended version at this time. The source code tarball is <a href="/files/releases/ardour-(\[0-9.\]+).tar.bz2">
68