Ticket #54540: Portfile.2

File Portfile.2, 1.7 KB (added by ryandesign (Ryan Carsten Schmidt), 7 years ago)
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
3PortSystem          1.0
4PortGroup           github 1.0
5PortGroup           xcode 1.0
6
7github.setup        jwise HoRNDIS 8 rel
8categories          sysutils
9platforms           darwin
10license             GPL-2+
11maintainers         {gmail.com:ndiscreet @chicagotripp} \
12                    openmaintainer
13
14description         HoRNDIS (pronounced \"horrendous\") is a driver for macOS \
15                    that allows you to use your Android phone's native USB \
16                    tethering mode to get Internet access.
17
18long_description    HoRNDIS is implemented as a kext, rather than as a \
19                    user-space program that opens a TAP or TUN device\; this \
20                    means that it does not conflict with other TAP/TUN kexts \
21                    that you might have installed (like OpenVPN, Tunnelblick, \
22                    or Cisco VPN). The driver implements Microsoft's \
23                    proprietary RNDIS protocol, which is the only protocol \
24                    supported natively by Android devices\; although Linux and \
25                    Windows users have enjoyed native RNDIS drivers for years, \
26                    macOS supports only CDC Ethernet devices out of the box.
27
28homepage            http://joshuawise.com/horndis
29
30checksums           rmd160  4c7358b4ef51bf6ba07a74b1047fea677b57bab4 \
31                    sha256  11361e2d422ce46ae9183261514459a51fe886045195f4ec2bbeb7cfd4ff0e80
32
33xcode.project       ${name}.xcodeproj
34xcode.target        ${name}
35xcode.configuration Release-unsigned
36xcode.destroot.type framework
37
38platform powerpc {
39    xcode.project   ${name}_PPC.xcodeproj
40}