Ticket #45294: Portfile

File Portfile, 1.5 KB (added by lubodiakov@…, 9 years ago)

Updated to Jenkins build 500, added options to build with 10.4u SDK

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
5PortGroup               github 1.0
6
7github.setup        irungentoo toxcore c086a66725fc
8
9version                 500
10categories              net devel
11platforms               darwin
12maintainers             gmail.com:lubodiakov
13license                 LGPL-2
14
15description             Libraries/dependencies for Toxcore, an Open \
16                        Source, encrypted peer to peer Skype \
17                        replacement
18
19long_description        ${description}. Under heavy development.
20
21depends_build       port:cmake port:libtool port:autoconf port:automake port:libsodium port:check port:yasm port:libvpx port:libopus  port:pkgconfig port:gettext
22
23use_autoreconf      yes
24
25checksums           rmd160  5c52eec9fc0aeef6bedcf853cc5197fe46865586 \
26                    sha256  872e36d503afbf6677a649f0821fceb598d515ac20d986e4b5eb668aaba9c078
27
28platform darwin 7 {
29    configure.cflags-append     "-isysroot /Developer/SDKs/MacOSX10.4u.sdk -mmacosx-version-min=10.3"
30}
31
32platform darwin 8 {
33    configure.cflags-append     "-isysroot /Developer/SDKs/MacOSX10.4u.sdk -mmacosx-version-min=10.3"
34}
35
36platform darwin 9 {
37    configure.compiler  gcc-4.0
38    configure.cflags-append     "-mmacosx-version-min=10.3 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -Wl,-syslibroot,/Developer/SDKs/MacOSX10.4u.sdk"
39        configure.optflags-append     "--disable-tests --disable-testing"
40        #configure.ldflags-append    "-MACOSX_DEPLOYMENT_TARGET=10.3"
41}
42