├── .gitattributes ├── .github └── FUNDING.yml ├── .gitignore ├── README.md ├── cross ├── mingw-w64-pkgconfig │ └── Portfile ├── mingw-w64-wine-gecko │ └── _Portfile └── mingw-w64-wine-mono │ └── Portfile ├── devel ├── MacOSX.sdk │ └── Portfile ├── game-porting-toolkit │ ├── Portfile │ └── files │ │ ├── 1001-configure-remove-cross_compiling-check.diff │ │ ├── 1002-ntdll-d3dmetal-env.diff │ │ ├── 1003-build_fixes.diff │ │ ├── gameportingtoolkit │ │ ├── gameportingtoolkit-no-esync │ │ └── gameportingtoolkit-no-hud └── libinotify │ └── Portfile ├── emulators ├── crossover │ ├── Portfile │ └── files │ │ └── CrossOver.icns ├── crossovertricks │ ├── Portfile │ └── files │ │ └── crossovertricks ├── kegworks │ └── Portfile ├── sikarugir │ └── Portfile ├── wine-devel │ ├── Portfile │ └── files │ │ ├── 0001-ntdll-CW-HACK-18947.patch │ │ ├── 0002-ntdll-CW-HACK-20186.patch │ │ ├── 0003-wow64cpu-CW-HACK-20760.patch │ │ ├── 0004-ntdll-CW-HACK-22131.patch │ │ ├── 0005-ntdll-CW-HACK-23427.patch │ │ ├── 0006-ntdll-CW-Hack-24256.patch │ │ ├── 0007-ntdll-CW-HACK-24265.patch │ │ ├── 0008-ntdll-CW-HACK-24945.patch │ │ ├── 0009-ntdll-CW-HACK-25719.patch │ │ ├── 0010-ntdll-HACK-Winehq-Bug-56441.patch │ │ ├── 0011-kernelbase-HACK-Add-hack_append_command_line.patch │ │ ├── 0012-kernelbase-CW-HACK-13322-17315-21883.patch │ │ ├── 0013-ntdll-CW-HACK-22435.patch │ │ ├── 0014-winemac.drv-CW-HACK-22435.patch │ │ ├── 0015-winemetal-new-stub.patch │ │ └── 1001-kernelbase-CW-HACK-19610.patch ├── wine-stable │ ├── Portfile │ └── files │ │ ├── 0001-winehq_macos_hacks.diff │ │ ├── MR6866.diff │ │ └── MR7328.diff └── winetricks │ └── Portfile └── multimedia ├── gstreamer-development └── Portfile ├── gstreamer-runtime └── Portfile └── gstreamer.framework └── Portfile /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gcenx/macports-wine/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gcenx/macports-wine/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gcenx/macports-wine/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gcenx/macports-wine/HEAD/README.md -------------------------------------------------------------------------------- /cross/mingw-w64-pkgconfig/Portfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gcenx/macports-wine/HEAD/cross/mingw-w64-pkgconfig/Portfile -------------------------------------------------------------------------------- /cross/mingw-w64-wine-gecko/_Portfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gcenx/macports-wine/HEAD/cross/mingw-w64-wine-gecko/_Portfile -------------------------------------------------------------------------------- /cross/mingw-w64-wine-mono/Portfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gcenx/macports-wine/HEAD/cross/mingw-w64-wine-mono/Portfile -------------------------------------------------------------------------------- /devel/MacOSX.sdk/Portfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gcenx/macports-wine/HEAD/devel/MacOSX.sdk/Portfile -------------------------------------------------------------------------------- /devel/game-porting-toolkit/Portfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gcenx/macports-wine/HEAD/devel/game-porting-toolkit/Portfile -------------------------------------------------------------------------------- /devel/game-porting-toolkit/files/1001-configure-remove-cross_compiling-check.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gcenx/macports-wine/HEAD/devel/game-porting-toolkit/files/1001-configure-remove-cross_compiling-check.diff -------------------------------------------------------------------------------- /devel/game-porting-toolkit/files/1002-ntdll-d3dmetal-env.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gcenx/macports-wine/HEAD/devel/game-porting-toolkit/files/1002-ntdll-d3dmetal-env.diff -------------------------------------------------------------------------------- /devel/game-porting-toolkit/files/1003-build_fixes.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gcenx/macports-wine/HEAD/devel/game-porting-toolkit/files/1003-build_fixes.diff -------------------------------------------------------------------------------- /devel/game-porting-toolkit/files/gameportingtoolkit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gcenx/macports-wine/HEAD/devel/game-porting-toolkit/files/gameportingtoolkit -------------------------------------------------------------------------------- /devel/game-porting-toolkit/files/gameportingtoolkit-no-esync: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gcenx/macports-wine/HEAD/devel/game-porting-toolkit/files/gameportingtoolkit-no-esync -------------------------------------------------------------------------------- /devel/game-porting-toolkit/files/gameportingtoolkit-no-hud: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gcenx/macports-wine/HEAD/devel/game-porting-toolkit/files/gameportingtoolkit-no-hud -------------------------------------------------------------------------------- /devel/libinotify/Portfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gcenx/macports-wine/HEAD/devel/libinotify/Portfile -------------------------------------------------------------------------------- /emulators/crossover/Portfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gcenx/macports-wine/HEAD/emulators/crossover/Portfile -------------------------------------------------------------------------------- /emulators/crossover/files/CrossOver.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gcenx/macports-wine/HEAD/emulators/crossover/files/CrossOver.icns -------------------------------------------------------------------------------- /emulators/crossovertricks/Portfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gcenx/macports-wine/HEAD/emulators/crossovertricks/Portfile -------------------------------------------------------------------------------- /emulators/crossovertricks/files/crossovertricks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gcenx/macports-wine/HEAD/emulators/crossovertricks/files/crossovertricks -------------------------------------------------------------------------------- /emulators/kegworks/Portfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gcenx/macports-wine/HEAD/emulators/kegworks/Portfile -------------------------------------------------------------------------------- /emulators/sikarugir/Portfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gcenx/macports-wine/HEAD/emulators/sikarugir/Portfile -------------------------------------------------------------------------------- /emulators/wine-devel/Portfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gcenx/macports-wine/HEAD/emulators/wine-devel/Portfile -------------------------------------------------------------------------------- /emulators/wine-devel/files/0001-ntdll-CW-HACK-18947.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gcenx/macports-wine/HEAD/emulators/wine-devel/files/0001-ntdll-CW-HACK-18947.patch -------------------------------------------------------------------------------- /emulators/wine-devel/files/0002-ntdll-CW-HACK-20186.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gcenx/macports-wine/HEAD/emulators/wine-devel/files/0002-ntdll-CW-HACK-20186.patch -------------------------------------------------------------------------------- /emulators/wine-devel/files/0003-wow64cpu-CW-HACK-20760.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gcenx/macports-wine/HEAD/emulators/wine-devel/files/0003-wow64cpu-CW-HACK-20760.patch -------------------------------------------------------------------------------- /emulators/wine-devel/files/0004-ntdll-CW-HACK-22131.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gcenx/macports-wine/HEAD/emulators/wine-devel/files/0004-ntdll-CW-HACK-22131.patch -------------------------------------------------------------------------------- /emulators/wine-devel/files/0005-ntdll-CW-HACK-23427.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gcenx/macports-wine/HEAD/emulators/wine-devel/files/0005-ntdll-CW-HACK-23427.patch -------------------------------------------------------------------------------- /emulators/wine-devel/files/0006-ntdll-CW-Hack-24256.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gcenx/macports-wine/HEAD/emulators/wine-devel/files/0006-ntdll-CW-Hack-24256.patch -------------------------------------------------------------------------------- /emulators/wine-devel/files/0007-ntdll-CW-HACK-24265.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gcenx/macports-wine/HEAD/emulators/wine-devel/files/0007-ntdll-CW-HACK-24265.patch -------------------------------------------------------------------------------- /emulators/wine-devel/files/0008-ntdll-CW-HACK-24945.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gcenx/macports-wine/HEAD/emulators/wine-devel/files/0008-ntdll-CW-HACK-24945.patch -------------------------------------------------------------------------------- /emulators/wine-devel/files/0009-ntdll-CW-HACK-25719.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gcenx/macports-wine/HEAD/emulators/wine-devel/files/0009-ntdll-CW-HACK-25719.patch -------------------------------------------------------------------------------- /emulators/wine-devel/files/0010-ntdll-HACK-Winehq-Bug-56441.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gcenx/macports-wine/HEAD/emulators/wine-devel/files/0010-ntdll-HACK-Winehq-Bug-56441.patch -------------------------------------------------------------------------------- /emulators/wine-devel/files/0011-kernelbase-HACK-Add-hack_append_command_line.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gcenx/macports-wine/HEAD/emulators/wine-devel/files/0011-kernelbase-HACK-Add-hack_append_command_line.patch -------------------------------------------------------------------------------- /emulators/wine-devel/files/0012-kernelbase-CW-HACK-13322-17315-21883.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gcenx/macports-wine/HEAD/emulators/wine-devel/files/0012-kernelbase-CW-HACK-13322-17315-21883.patch -------------------------------------------------------------------------------- /emulators/wine-devel/files/0013-ntdll-CW-HACK-22435.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gcenx/macports-wine/HEAD/emulators/wine-devel/files/0013-ntdll-CW-HACK-22435.patch -------------------------------------------------------------------------------- /emulators/wine-devel/files/0014-winemac.drv-CW-HACK-22435.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gcenx/macports-wine/HEAD/emulators/wine-devel/files/0014-winemac.drv-CW-HACK-22435.patch -------------------------------------------------------------------------------- /emulators/wine-devel/files/0015-winemetal-new-stub.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gcenx/macports-wine/HEAD/emulators/wine-devel/files/0015-winemetal-new-stub.patch -------------------------------------------------------------------------------- /emulators/wine-devel/files/1001-kernelbase-CW-HACK-19610.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gcenx/macports-wine/HEAD/emulators/wine-devel/files/1001-kernelbase-CW-HACK-19610.patch -------------------------------------------------------------------------------- /emulators/wine-stable/Portfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gcenx/macports-wine/HEAD/emulators/wine-stable/Portfile -------------------------------------------------------------------------------- /emulators/wine-stable/files/0001-winehq_macos_hacks.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gcenx/macports-wine/HEAD/emulators/wine-stable/files/0001-winehq_macos_hacks.diff -------------------------------------------------------------------------------- /emulators/wine-stable/files/MR6866.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gcenx/macports-wine/HEAD/emulators/wine-stable/files/MR6866.diff -------------------------------------------------------------------------------- /emulators/wine-stable/files/MR7328.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gcenx/macports-wine/HEAD/emulators/wine-stable/files/MR7328.diff -------------------------------------------------------------------------------- /emulators/winetricks/Portfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gcenx/macports-wine/HEAD/emulators/winetricks/Portfile -------------------------------------------------------------------------------- /multimedia/gstreamer-development/Portfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gcenx/macports-wine/HEAD/multimedia/gstreamer-development/Portfile -------------------------------------------------------------------------------- /multimedia/gstreamer-runtime/Portfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gcenx/macports-wine/HEAD/multimedia/gstreamer-runtime/Portfile -------------------------------------------------------------------------------- /multimedia/gstreamer.framework/Portfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gcenx/macports-wine/HEAD/multimedia/gstreamer.framework/Portfile --------------------------------------------------------------------------------