Projects
New Ticket     Wiki     Browse Source     Timeline     Roadmap     Bug Reports     Search

root/trunk/dports/aqua/RadioRecorder/Portfile

Revision 27817, 1.3 KB (checked in by nox@…, 17 months ago)

RadioRecorder:

  • Updated to 1.08.
  • Ported to xcode portgroup.
  • Added universal support.
  • Disabled livecheck.
  • Added sha1 and rmd160 checksums.
  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
Line 
1# $Id$
2
3PortSystem              1.0
4PortGroup               xcode 1.0
5
6name                    RadioRecorder
7version                 1.08
8categories              aqua audio
9maintainers             nomaintainer
10description             downloads online radio streams to your Mac
11
12long_description \
13        Jogging with an iPod is fun, but even a big music collection gets tiring if \
14        you listen to it every day. RadioRecorder lets you take a selection of your \
15        favourite internet radio stations along with you.
16
17homepage                http://u1.netgate.net/~snowcat/RadioRecorder.html
18master_sites    macports
19use_bzip2               yes
20
21checksums               md5 3792972d944c4c9282c7861413547972 \
22                                sha1 7ee71f7dc65375c55c65720b02ae81c70d16ed04 \
23                                rmd160 4c9802530ba5cbfefd6ff0dd3f2665d8d9b0d60b
24
25# Dummy configure to enable universal variant.
26use_configure   yes
27configure               {}
28
29post-patch {
30        reinplace -E "/(MACOSX_DEPLOYMENT_TARGET|SDKROOT) =/d" \
31                ${worksrcpath}/${name}.xcode/project.pbxproj
32}
33
34variant universal {
35        # Cannot use xcode.build.settings because of #12429.
36        #xcode.build.settings-append            "ARCHS=\"i386 ppc\""
37        #xcode.destroot.settings-append         "ARCHS=\"i386 ppc\""
38        build.args                                                      "ARCHS=\"i386 ppc\""
39        destroot.args                                           "ARCHS=\"i386 ppc\""
40
41        xcode.build.settings-append                     GCC_VERSION=4.0 \
42                                                                                SDKROOT_i386=/Developer/SDKs/MacOSX10.4u.sdk
43        xcode.destroot.settings                         ${xcode.build.settings}
44}
45
46livecheck.check none
Note: See TracBrowser for help on using the browser.