This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| \documentclass{article} | |
| \def \dummy {Testing Your Installation} | |
| \def \dojump{\def \documentclass ##1\dump {\relax}} | |
| \dojump | |
| \dump | |
| \begin{document} | |
| \huge {\bf \dummy}\par Don't worry, feel Lucky! | |
| \end{document} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # -*- 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 | |
| PortSystem 1.0 | |
| name testport | |
| version 1.0 | |
| categories replaceme | |
| platforms darwin | |
| maintainers replaceme | |
| license replaceme |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package require macports | |
| package require macports_util | |
| proc test1 {} { | |
| try { | |
| error foo | |
| } catch {{*} eCode eMessage} { | |
| error "There was an error: $eMessage" | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/security/stunnel/Portfile b/security/stunnel/Portfile | |
| index 20dd9ad0412..d077ec396cf 100644 | |
| --- a/security/stunnel/Portfile | |
| +++ b/security/stunnel/Portfile | |
| @@ -31,13 +31,13 @@ checksums rmd160 a6b2ab9bbb4da98eb21ffbe83486019bd1b4ae26 \ | |
| sha256 c74c4e15144a3ae34b8b890bb31c909207301490bd1e51bfaaa5ffeb0a994617 \ | |
| size 866754 | |
| -openssl.branch 1.1 | |
| - |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| CC=${CC-clang} | |
| echo '#include <stdio.h> | |
| #include "lib.h" | |
| int libcall(void) { | |
| printf("working\\n"); | |
| return 0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env port-tclsh | |
| # For every available port, outputs the port name to available.txt | |
| # if a binary archive is available on packages.macports.org, or to | |
| # unavailable.txt if not. | |
| package require macports | |
| mportinit | |
| set yesfile [open ./available.txt w] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env port-tclsh | |
| # For every available port, outputs the port name to distributable.txt | |
| # if binaries are considered distributable, or to not-distributable.txt | |
| # if not (along with an explanation). | |
| # Set this to where distributable_lib.tcl can be found | |
| set distributable_lib_path . | |
| package require macports |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env port-tclsh | |
| # check a PortIndex for duplicate portnames and malformed portinfo | |
| set fd [open [lindex $argv 0]] | |
| array set counts {} | |
| while {[gets $fd line] >= 0} { | |
| set name [string tolower [lindex $line 0]] | |
| incr counts($name) | |
| if {$counts($name) > 1} { | |
| puts stderr "Warning: $counts($name) occurrences of $name" | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # -*- 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 | |
| PortSystem 1.0 | |
| PortGroup python 1.0 | |
| name osxphotos | |
| version 0.63.0 | |
| categories graphics | |
| platforms {darwin any} | |
| supported_archs noarch |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| if {[catch {sysctl hw.optional.sse4_1} result] || $result == 0}]} { | |
| depends_run-append port:whatever-installs-old-adb | |
| notes-append "The current version of adb requires SSE 4.1, which is not\ | |
| supported by your CPU. An older version is provided at /path/to/adb" | |
| } |
OlderNewer