├── .gitignore ├── ChangeLog ├── LICENSE ├── Makefile ├── README ├── TODO ├── examples ├── database │ └── openldap │ │ └── ldapsearch │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── Shared │ │ └── main.m │ │ ├── ca-certs.pem │ │ ├── iPad │ │ ├── AppDelegate_Pad.h │ │ ├── AppDelegate_Pad.m │ │ └── MainWindow_Pad.xib │ │ ├── iPhone │ │ ├── AppDelegate_Phone.h │ │ ├── AppDelegate_Phone.m │ │ └── MainWindow_Phone.xib │ │ ├── ldapTest.h │ │ ├── ldapTest.m │ │ ├── ldapTestMain.m │ │ ├── ldapsearch-Info.plist │ │ ├── ldapsearch.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── iOSPorts Example: ldapsearch.xcscheme │ │ └── ldapsearch_Prefix.pch └── devel │ └── pcre │ └── pcreTest │ ├── .gitignore │ ├── Classes │ ├── pcreTestAppDelegate.h │ └── pcreTestAppDelegate.m │ ├── MainWindow.xib │ ├── main.m │ ├── pcreTest-Info.plist │ ├── pcreTest.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── iOSPorts Example: pcreTest.xcscheme │ └── pcreTest_Prefix.pch ├── iOSPorts.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ ├── Demo: database │ └── openldap │ │ └── ldapsearch.xcscheme │ ├── Demo: devel │ └── pcre │ │ └── pcreTest.xcscheme │ ├── Port: database │ └── openldap │ │ ├── Makefile-openldap.xcscheme │ │ ├── lber.xcscheme │ │ └── ldap.xcscheme │ ├── Port: devel │ └── pcre │ │ ├── Makefile-pcre.xcscheme │ │ └── pcre.xcscheme │ ├── Port: ports │ ├── iOSPorts.xcscheme │ └── iOSPorts │ │ ├── Makefile-iOSPorts.xcscheme │ │ └── iOSPorts.xcscheme │ └── Port: security │ ├── cyrus-sasl │ ├── Makefile-cyrus-sasl.xcscheme │ └── sasl2.xcscheme │ └── openssl │ ├── Makefile-openssl.xcscheme │ ├── crypto.xcscheme │ └── ssl.xcscheme ├── include └── .gitignore └── ports ├── database └── openldap │ ├── .gitignore │ ├── Makefile │ ├── build-aux │ ├── LICENSE │ ├── configure-wrapper.sh │ ├── configure-wrapper.sh.log │ ├── configure-wrapper.sh.make │ ├── openldap-2.4.33.tgz.md5 │ └── openldap │ │ ├── include │ │ ├── lber_types.h │ │ ├── ldap_config.h │ │ ├── ldap_features.h │ │ └── portable.h │ │ └── libraries │ │ ├── liblber │ │ └── version.c │ │ ├── libldap │ │ └── version.c │ │ ├── libldap_r │ │ └── version.c │ │ ├── liblunicode │ │ └── version.c │ │ ├── liblutil │ │ └── version.c │ │ └── librewrite │ │ └── version.c │ └── openldap.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ └── contents.xcworkspacedata │ └── xcshareddata │ └── xcschemes │ ├── OpenLDAP: Makefile-openldap.xcscheme │ ├── OpenLDAP: lber.xcscheme │ └── OpenLDAP: ldap.xcscheme ├── devel └── pcre │ ├── .gitignore │ ├── Makefile │ ├── build-aux │ ├── LICENCE │ ├── config.h │ ├── configure-wrapper.sh │ └── pcre-8.31.tar.bz2.md5 │ └── pcre.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ └── contents.xcworkspacedata ├── iOSPorts ├── COPYING ├── Makefile ├── iOSPorts.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── iOSPorts │ ├── .gitignore │ ├── iOSPorts.h │ ├── iOSPortsPackage.h │ ├── iOSPortsPackage.m │ ├── iOSPortsPackageData.m │ ├── iOSPortsViewController.h │ └── iOSPortsViewController.m └── other │ ├── iOSPorts-geninfo.m │ ├── iOSPorts-genlist.m │ ├── iOSPorts-pkginfo.m │ └── iOSPorts_Prefix.pch └── security ├── cyrus-sasl ├── .gitignore ├── Cyrus SASL.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ ├── Cyrus-SASL: Makefile-cyrus-sasl.xcscheme │ │ └── Cyrus-SASL: sasl2.xcscheme ├── Makefile ├── build-aux │ ├── COPYING │ ├── config.h │ ├── configure-wrapper.sh │ └── cyrus-sasl-2.1.25.tar.gz.md5 └── sasl2_Prefix.pch ├── openssl ├── .gitignore ├── Makefile ├── README ├── build-aux │ ├── LICENSE │ ├── configure-wrapper.log │ ├── configure-wrapper.sh │ ├── openssl-1.0.1c.patch │ ├── openssl-1.0.1c.tar.gz.md5 │ └── opensslconf.h └── openssl.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ └── contents.xcworkspacedata │ └── xcshareddata │ └── xcschemes │ ├── OpenSSL: Makefile-openssl.xcscheme │ ├── OpenSSL: crypto.xcscheme │ └── OpenSSL: ssl.xcscheme └── scrypt ├── .gitignore ├── Makefile ├── README ├── build-aux ├── LICENSE ├── config.h ├── configure-wrapper.log ├── configure-wrapper.sh ├── scrypt-1.1.6.patch └── scrypt-1.1.6.tgz.md5 └── scrypt.xcodeproj ├── project.pbxproj └── project.xcworkspace └── contents.xcworkspacedata /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/.gitignore -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/ChangeLog -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/README -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/TODO -------------------------------------------------------------------------------- /examples/database/openldap/ldapsearch/.gitignore: -------------------------------------------------------------------------------- 1 | *.mode1v3 2 | *.pbxuser 3 | .DS_Store 4 | /build/ 5 | -------------------------------------------------------------------------------- /examples/database/openldap/ldapsearch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/examples/database/openldap/ldapsearch/Makefile -------------------------------------------------------------------------------- /examples/database/openldap/ldapsearch/Shared/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/examples/database/openldap/ldapsearch/Shared/main.m -------------------------------------------------------------------------------- /examples/database/openldap/ldapsearch/ca-certs.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/examples/database/openldap/ldapsearch/ca-certs.pem -------------------------------------------------------------------------------- /examples/database/openldap/ldapsearch/iPad/AppDelegate_Pad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/examples/database/openldap/ldapsearch/iPad/AppDelegate_Pad.h -------------------------------------------------------------------------------- /examples/database/openldap/ldapsearch/iPad/AppDelegate_Pad.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/examples/database/openldap/ldapsearch/iPad/AppDelegate_Pad.m -------------------------------------------------------------------------------- /examples/database/openldap/ldapsearch/iPad/MainWindow_Pad.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/examples/database/openldap/ldapsearch/iPad/MainWindow_Pad.xib -------------------------------------------------------------------------------- /examples/database/openldap/ldapsearch/iPhone/AppDelegate_Phone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/examples/database/openldap/ldapsearch/iPhone/AppDelegate_Phone.h -------------------------------------------------------------------------------- /examples/database/openldap/ldapsearch/iPhone/AppDelegate_Phone.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/examples/database/openldap/ldapsearch/iPhone/AppDelegate_Phone.m -------------------------------------------------------------------------------- /examples/database/openldap/ldapsearch/iPhone/MainWindow_Phone.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/examples/database/openldap/ldapsearch/iPhone/MainWindow_Phone.xib -------------------------------------------------------------------------------- /examples/database/openldap/ldapsearch/ldapTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/examples/database/openldap/ldapsearch/ldapTest.h -------------------------------------------------------------------------------- /examples/database/openldap/ldapsearch/ldapTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/examples/database/openldap/ldapsearch/ldapTest.m -------------------------------------------------------------------------------- /examples/database/openldap/ldapsearch/ldapTestMain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/examples/database/openldap/ldapsearch/ldapTestMain.m -------------------------------------------------------------------------------- /examples/database/openldap/ldapsearch/ldapsearch-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/examples/database/openldap/ldapsearch/ldapsearch-Info.plist -------------------------------------------------------------------------------- /examples/database/openldap/ldapsearch/ldapsearch.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/examples/database/openldap/ldapsearch/ldapsearch.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /examples/database/openldap/ldapsearch/ldapsearch.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/examples/database/openldap/ldapsearch/ldapsearch.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /examples/database/openldap/ldapsearch/ldapsearch.xcodeproj/xcshareddata/xcschemes/iOSPorts Example: ldapsearch.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/examples/database/openldap/ldapsearch/ldapsearch.xcodeproj/xcshareddata/xcschemes/iOSPorts Example: ldapsearch.xcscheme -------------------------------------------------------------------------------- /examples/database/openldap/ldapsearch/ldapsearch_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/examples/database/openldap/ldapsearch/ldapsearch_Prefix.pch -------------------------------------------------------------------------------- /examples/devel/pcre/pcreTest/.gitignore: -------------------------------------------------------------------------------- 1 | /build/ 2 | -------------------------------------------------------------------------------- /examples/devel/pcre/pcreTest/Classes/pcreTestAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/examples/devel/pcre/pcreTest/Classes/pcreTestAppDelegate.h -------------------------------------------------------------------------------- /examples/devel/pcre/pcreTest/Classes/pcreTestAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/examples/devel/pcre/pcreTest/Classes/pcreTestAppDelegate.m -------------------------------------------------------------------------------- /examples/devel/pcre/pcreTest/MainWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/examples/devel/pcre/pcreTest/MainWindow.xib -------------------------------------------------------------------------------- /examples/devel/pcre/pcreTest/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/examples/devel/pcre/pcreTest/main.m -------------------------------------------------------------------------------- /examples/devel/pcre/pcreTest/pcreTest-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/examples/devel/pcre/pcreTest/pcreTest-Info.plist -------------------------------------------------------------------------------- /examples/devel/pcre/pcreTest/pcreTest.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/examples/devel/pcre/pcreTest/pcreTest.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /examples/devel/pcre/pcreTest/pcreTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/examples/devel/pcre/pcreTest/pcreTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /examples/devel/pcre/pcreTest/pcreTest.xcodeproj/xcshareddata/xcschemes/iOSPorts Example: pcreTest.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/examples/devel/pcre/pcreTest/pcreTest.xcodeproj/xcshareddata/xcschemes/iOSPorts Example: pcreTest.xcscheme -------------------------------------------------------------------------------- /examples/devel/pcre/pcreTest/pcreTest_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/examples/devel/pcre/pcreTest/pcreTest_Prefix.pch -------------------------------------------------------------------------------- /iOSPorts.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/iOSPorts.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /iOSPorts.xcworkspace/xcshareddata/xcschemes/Demo: database/openldap/ldapsearch.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/iOSPorts.xcworkspace/xcshareddata/xcschemes/Demo: database/openldap/ldapsearch.xcscheme -------------------------------------------------------------------------------- /iOSPorts.xcworkspace/xcshareddata/xcschemes/Demo: devel/pcre/pcreTest.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/iOSPorts.xcworkspace/xcshareddata/xcschemes/Demo: devel/pcre/pcreTest.xcscheme -------------------------------------------------------------------------------- /iOSPorts.xcworkspace/xcshareddata/xcschemes/Port: database/openldap/Makefile-openldap.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/iOSPorts.xcworkspace/xcshareddata/xcschemes/Port: database/openldap/Makefile-openldap.xcscheme -------------------------------------------------------------------------------- /iOSPorts.xcworkspace/xcshareddata/xcschemes/Port: database/openldap/lber.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/iOSPorts.xcworkspace/xcshareddata/xcschemes/Port: database/openldap/lber.xcscheme -------------------------------------------------------------------------------- /iOSPorts.xcworkspace/xcshareddata/xcschemes/Port: database/openldap/ldap.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/iOSPorts.xcworkspace/xcshareddata/xcschemes/Port: database/openldap/ldap.xcscheme -------------------------------------------------------------------------------- /iOSPorts.xcworkspace/xcshareddata/xcschemes/Port: devel/pcre/Makefile-pcre.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/iOSPorts.xcworkspace/xcshareddata/xcschemes/Port: devel/pcre/Makefile-pcre.xcscheme -------------------------------------------------------------------------------- /iOSPorts.xcworkspace/xcshareddata/xcschemes/Port: devel/pcre/pcre.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/iOSPorts.xcworkspace/xcshareddata/xcschemes/Port: devel/pcre/pcre.xcscheme -------------------------------------------------------------------------------- /iOSPorts.xcworkspace/xcshareddata/xcschemes/Port: ports/iOSPorts.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/iOSPorts.xcworkspace/xcshareddata/xcschemes/Port: ports/iOSPorts.xcscheme -------------------------------------------------------------------------------- /iOSPorts.xcworkspace/xcshareddata/xcschemes/Port: ports/iOSPorts/Makefile-iOSPorts.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/iOSPorts.xcworkspace/xcshareddata/xcschemes/Port: ports/iOSPorts/Makefile-iOSPorts.xcscheme -------------------------------------------------------------------------------- /iOSPorts.xcworkspace/xcshareddata/xcschemes/Port: ports/iOSPorts/iOSPorts.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/iOSPorts.xcworkspace/xcshareddata/xcschemes/Port: ports/iOSPorts/iOSPorts.xcscheme -------------------------------------------------------------------------------- /iOSPorts.xcworkspace/xcshareddata/xcschemes/Port: security/cyrus-sasl/Makefile-cyrus-sasl.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/iOSPorts.xcworkspace/xcshareddata/xcschemes/Port: security/cyrus-sasl/Makefile-cyrus-sasl.xcscheme -------------------------------------------------------------------------------- /iOSPorts.xcworkspace/xcshareddata/xcschemes/Port: security/cyrus-sasl/sasl2.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/iOSPorts.xcworkspace/xcshareddata/xcschemes/Port: security/cyrus-sasl/sasl2.xcscheme -------------------------------------------------------------------------------- /iOSPorts.xcworkspace/xcshareddata/xcschemes/Port: security/openssl/Makefile-openssl.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/iOSPorts.xcworkspace/xcshareddata/xcschemes/Port: security/openssl/Makefile-openssl.xcscheme -------------------------------------------------------------------------------- /iOSPorts.xcworkspace/xcshareddata/xcschemes/Port: security/openssl/crypto.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/iOSPorts.xcworkspace/xcshareddata/xcschemes/Port: security/openssl/crypto.xcscheme -------------------------------------------------------------------------------- /iOSPorts.xcworkspace/xcshareddata/xcschemes/Port: security/openssl/ssl.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/iOSPorts.xcworkspace/xcshareddata/xcschemes/Port: security/openssl/ssl.xcscheme -------------------------------------------------------------------------------- /include/.gitignore: -------------------------------------------------------------------------------- 1 | /* 2 | -------------------------------------------------------------------------------- /ports/database/openldap/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/ports/database/openldap/.gitignore -------------------------------------------------------------------------------- /ports/database/openldap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/ports/database/openldap/Makefile -------------------------------------------------------------------------------- /ports/database/openldap/build-aux/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/ports/database/openldap/build-aux/LICENSE -------------------------------------------------------------------------------- /ports/database/openldap/build-aux/configure-wrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/ports/database/openldap/build-aux/configure-wrapper.sh -------------------------------------------------------------------------------- /ports/database/openldap/build-aux/configure-wrapper.sh.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/ports/database/openldap/build-aux/configure-wrapper.sh.log -------------------------------------------------------------------------------- /ports/database/openldap/build-aux/configure-wrapper.sh.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/ports/database/openldap/build-aux/configure-wrapper.sh.make -------------------------------------------------------------------------------- /ports/database/openldap/build-aux/openldap-2.4.33.tgz.md5: -------------------------------------------------------------------------------- 1 | MD5 (openldap-2.4.33.tgz) = 5adae44897647c15ce5abbff313bc85a 2 | -------------------------------------------------------------------------------- /ports/database/openldap/build-aux/openldap/include/lber_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/ports/database/openldap/build-aux/openldap/include/lber_types.h -------------------------------------------------------------------------------- /ports/database/openldap/build-aux/openldap/include/ldap_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/ports/database/openldap/build-aux/openldap/include/ldap_config.h -------------------------------------------------------------------------------- /ports/database/openldap/build-aux/openldap/include/ldap_features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/ports/database/openldap/build-aux/openldap/include/ldap_features.h -------------------------------------------------------------------------------- /ports/database/openldap/build-aux/openldap/include/portable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/ports/database/openldap/build-aux/openldap/include/portable.h -------------------------------------------------------------------------------- /ports/database/openldap/build-aux/openldap/libraries/liblber/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/ports/database/openldap/build-aux/openldap/libraries/liblber/version.c -------------------------------------------------------------------------------- /ports/database/openldap/build-aux/openldap/libraries/libldap/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/ports/database/openldap/build-aux/openldap/libraries/libldap/version.c -------------------------------------------------------------------------------- /ports/database/openldap/build-aux/openldap/libraries/libldap_r/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/ports/database/openldap/build-aux/openldap/libraries/libldap_r/version.c -------------------------------------------------------------------------------- /ports/database/openldap/build-aux/openldap/libraries/liblunicode/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/ports/database/openldap/build-aux/openldap/libraries/liblunicode/version.c -------------------------------------------------------------------------------- /ports/database/openldap/build-aux/openldap/libraries/liblutil/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/ports/database/openldap/build-aux/openldap/libraries/liblutil/version.c -------------------------------------------------------------------------------- /ports/database/openldap/build-aux/openldap/libraries/librewrite/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/ports/database/openldap/build-aux/openldap/libraries/librewrite/version.c -------------------------------------------------------------------------------- /ports/database/openldap/openldap.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/ports/database/openldap/openldap.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ports/database/openldap/openldap.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/ports/database/openldap/openldap.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ports/database/openldap/openldap.xcodeproj/xcshareddata/xcschemes/OpenLDAP: Makefile-openldap.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/ports/database/openldap/openldap.xcodeproj/xcshareddata/xcschemes/OpenLDAP: Makefile-openldap.xcscheme -------------------------------------------------------------------------------- /ports/database/openldap/openldap.xcodeproj/xcshareddata/xcschemes/OpenLDAP: lber.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/ports/database/openldap/openldap.xcodeproj/xcshareddata/xcschemes/OpenLDAP: lber.xcscheme -------------------------------------------------------------------------------- /ports/database/openldap/openldap.xcodeproj/xcshareddata/xcschemes/OpenLDAP: ldap.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/ports/database/openldap/openldap.xcodeproj/xcshareddata/xcschemes/OpenLDAP: ldap.xcscheme -------------------------------------------------------------------------------- /ports/devel/pcre/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/ports/devel/pcre/.gitignore -------------------------------------------------------------------------------- /ports/devel/pcre/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/ports/devel/pcre/Makefile -------------------------------------------------------------------------------- /ports/devel/pcre/build-aux/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/ports/devel/pcre/build-aux/LICENCE -------------------------------------------------------------------------------- /ports/devel/pcre/build-aux/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/ports/devel/pcre/build-aux/config.h -------------------------------------------------------------------------------- /ports/devel/pcre/build-aux/configure-wrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/ports/devel/pcre/build-aux/configure-wrapper.sh -------------------------------------------------------------------------------- /ports/devel/pcre/build-aux/pcre-8.31.tar.bz2.md5: -------------------------------------------------------------------------------- 1 | MD5 (pcre-8.31.tar.bz2) = 1c9a276af932b5599157f96e945391f0 2 | -------------------------------------------------------------------------------- /ports/devel/pcre/pcre.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/ports/devel/pcre/pcre.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ports/devel/pcre/pcre.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/ports/devel/pcre/pcre.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ports/iOSPorts/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/ports/iOSPorts/COPYING -------------------------------------------------------------------------------- /ports/iOSPorts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/ports/iOSPorts/Makefile -------------------------------------------------------------------------------- /ports/iOSPorts/iOSPorts.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/ports/iOSPorts/iOSPorts.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ports/iOSPorts/iOSPorts.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/ports/iOSPorts/iOSPorts.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ports/iOSPorts/iOSPorts/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/ports/iOSPorts/iOSPorts/.gitignore -------------------------------------------------------------------------------- /ports/iOSPorts/iOSPorts/iOSPorts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/ports/iOSPorts/iOSPorts/iOSPorts.h -------------------------------------------------------------------------------- /ports/iOSPorts/iOSPorts/iOSPortsPackage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/ports/iOSPorts/iOSPorts/iOSPortsPackage.h -------------------------------------------------------------------------------- /ports/iOSPorts/iOSPorts/iOSPortsPackage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/ports/iOSPorts/iOSPorts/iOSPortsPackage.m -------------------------------------------------------------------------------- /ports/iOSPorts/iOSPorts/iOSPortsPackageData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/ports/iOSPorts/iOSPorts/iOSPortsPackageData.m -------------------------------------------------------------------------------- /ports/iOSPorts/iOSPorts/iOSPortsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/ports/iOSPorts/iOSPorts/iOSPortsViewController.h -------------------------------------------------------------------------------- /ports/iOSPorts/iOSPorts/iOSPortsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/ports/iOSPorts/iOSPorts/iOSPortsViewController.m -------------------------------------------------------------------------------- /ports/iOSPorts/other/iOSPorts-geninfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/ports/iOSPorts/other/iOSPorts-geninfo.m -------------------------------------------------------------------------------- /ports/iOSPorts/other/iOSPorts-genlist.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/ports/iOSPorts/other/iOSPorts-genlist.m -------------------------------------------------------------------------------- /ports/iOSPorts/other/iOSPorts-pkginfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/ports/iOSPorts/other/iOSPorts-pkginfo.m -------------------------------------------------------------------------------- /ports/iOSPorts/other/iOSPorts_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/ports/iOSPorts/other/iOSPorts_Prefix.pch -------------------------------------------------------------------------------- /ports/security/cyrus-sasl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/ports/security/cyrus-sasl/.gitignore -------------------------------------------------------------------------------- /ports/security/cyrus-sasl/Cyrus SASL.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/ports/security/cyrus-sasl/Cyrus SASL.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ports/security/cyrus-sasl/Cyrus SASL.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/ports/security/cyrus-sasl/Cyrus SASL.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ports/security/cyrus-sasl/Cyrus SASL.xcodeproj/xcshareddata/xcschemes/Cyrus-SASL: Makefile-cyrus-sasl.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/ports/security/cyrus-sasl/Cyrus SASL.xcodeproj/xcshareddata/xcschemes/Cyrus-SASL: Makefile-cyrus-sasl.xcscheme -------------------------------------------------------------------------------- /ports/security/cyrus-sasl/Cyrus SASL.xcodeproj/xcshareddata/xcschemes/Cyrus-SASL: sasl2.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/ports/security/cyrus-sasl/Cyrus SASL.xcodeproj/xcshareddata/xcschemes/Cyrus-SASL: sasl2.xcscheme -------------------------------------------------------------------------------- /ports/security/cyrus-sasl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/ports/security/cyrus-sasl/Makefile -------------------------------------------------------------------------------- /ports/security/cyrus-sasl/build-aux/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/ports/security/cyrus-sasl/build-aux/COPYING -------------------------------------------------------------------------------- /ports/security/cyrus-sasl/build-aux/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/ports/security/cyrus-sasl/build-aux/config.h -------------------------------------------------------------------------------- /ports/security/cyrus-sasl/build-aux/configure-wrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/ports/security/cyrus-sasl/build-aux/configure-wrapper.sh -------------------------------------------------------------------------------- /ports/security/cyrus-sasl/build-aux/cyrus-sasl-2.1.25.tar.gz.md5: -------------------------------------------------------------------------------- 1 | MD5 (cyrus-sasl-2.1.25.tar.gz) = 341cffe829a4d71f2a6503d669d5a946 2 | -------------------------------------------------------------------------------- /ports/security/cyrus-sasl/sasl2_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/ports/security/cyrus-sasl/sasl2_Prefix.pch -------------------------------------------------------------------------------- /ports/security/openssl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/ports/security/openssl/.gitignore -------------------------------------------------------------------------------- /ports/security/openssl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/ports/security/openssl/Makefile -------------------------------------------------------------------------------- /ports/security/openssl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/ports/security/openssl/README -------------------------------------------------------------------------------- /ports/security/openssl/build-aux/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/ports/security/openssl/build-aux/LICENSE -------------------------------------------------------------------------------- /ports/security/openssl/build-aux/configure-wrapper.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/ports/security/openssl/build-aux/configure-wrapper.log -------------------------------------------------------------------------------- /ports/security/openssl/build-aux/configure-wrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/ports/security/openssl/build-aux/configure-wrapper.sh -------------------------------------------------------------------------------- /ports/security/openssl/build-aux/openssl-1.0.1c.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/ports/security/openssl/build-aux/openssl-1.0.1c.patch -------------------------------------------------------------------------------- /ports/security/openssl/build-aux/openssl-1.0.1c.tar.gz.md5: -------------------------------------------------------------------------------- 1 | MD5 (openssl-1.0.1c.tar.gz) = ae412727c8c15b67880aef7bd2999b2e 2 | -------------------------------------------------------------------------------- /ports/security/openssl/build-aux/opensslconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/ports/security/openssl/build-aux/opensslconf.h -------------------------------------------------------------------------------- /ports/security/openssl/openssl.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/ports/security/openssl/openssl.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ports/security/openssl/openssl.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/ports/security/openssl/openssl.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ports/security/openssl/openssl.xcodeproj/xcshareddata/xcschemes/OpenSSL: Makefile-openssl.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/ports/security/openssl/openssl.xcodeproj/xcshareddata/xcschemes/OpenSSL: Makefile-openssl.xcscheme -------------------------------------------------------------------------------- /ports/security/openssl/openssl.xcodeproj/xcshareddata/xcschemes/OpenSSL: crypto.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/ports/security/openssl/openssl.xcodeproj/xcshareddata/xcschemes/OpenSSL: crypto.xcscheme -------------------------------------------------------------------------------- /ports/security/openssl/openssl.xcodeproj/xcshareddata/xcschemes/OpenSSL: ssl.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/ports/security/openssl/openssl.xcodeproj/xcshareddata/xcschemes/OpenSSL: ssl.xcscheme -------------------------------------------------------------------------------- /ports/security/scrypt/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/ports/security/scrypt/.gitignore -------------------------------------------------------------------------------- /ports/security/scrypt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/ports/security/scrypt/Makefile -------------------------------------------------------------------------------- /ports/security/scrypt/README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ports/security/scrypt/build-aux/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/ports/security/scrypt/build-aux/LICENSE -------------------------------------------------------------------------------- /ports/security/scrypt/build-aux/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/ports/security/scrypt/build-aux/config.h -------------------------------------------------------------------------------- /ports/security/scrypt/build-aux/configure-wrapper.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/ports/security/scrypt/build-aux/configure-wrapper.log -------------------------------------------------------------------------------- /ports/security/scrypt/build-aux/configure-wrapper.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | ./configure \ 4 | "$@" 5 | 6 | -------------------------------------------------------------------------------- /ports/security/scrypt/build-aux/scrypt-1.1.6.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/ports/security/scrypt/build-aux/scrypt-1.1.6.patch -------------------------------------------------------------------------------- /ports/security/scrypt/build-aux/scrypt-1.1.6.tgz.md5: -------------------------------------------------------------------------------- 1 | MD5 (scrypt-1.1.6.tgz) = a35523cd497f7283635ce881db39c2e2 2 | -------------------------------------------------------------------------------- /ports/security/scrypt/scrypt.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/ports/security/scrypt/scrypt.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ports/security/scrypt/scrypt.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/iOSPorts/HEAD/ports/security/scrypt/scrypt.xcodeproj/project.xcworkspace/contents.xcworkspacedata --------------------------------------------------------------------------------