summaryrefslogtreecommitdiff
path: root/Ports/SDL2_ttf
AgeCommit message (Collapse)Author
2022-08-23Ports/SDL2_ttf: Update to 2.20.1Tim Schumacher
2022-06-08Ports: Format patches without numbering, commit hash or version numberTim Schumacher
2022-06-03Ports: Replace manually linking `SDL2_ttf` with a libtool patchTim Schumacher
2022-04-11Ports/SDL2_ttf: Update SDL2_ttf to version 2.0.18EWouters
2022-01-16Ports: Remove some config.sub patches and download a fresh one if neededAli Mohammad Pur
All of these patches did the same thing, which is already in upstream config.sub. With this change, we need only add `use_fresh_config_sub=true` to the package.sh file. Note that this is not done automatically in case the port has a modified config.sub file.
2021-10-05Ports: Make array-like settings actual arraysTim Schumacher
We may need entries with spaces in makeopts, installopts, and configopts, and at that point we should also convert depends and auth_opts to avoid confusion.
2021-06-05Ports: Specify missing library when linking SDL2_ttfGunnar Beutner
2021-04-25Ports: Update checksums to use the SHA256 algorithmGunnar Beutner
2021-04-25Ports: Build shared libraries with -Wl,-sonameGunnar Beutner
Without a SONAME gcc will put the whole library path into executables which link against these libraries: $ readelf -d Root/usr/local/games/openttd Dynamic section at offset 0xf0747c contains 32 entries: Tag Type Name/Value 0x00000001 (NEEDED) [libgcc_s.so] 0x00000001 (NEEDED) [/serenity/Build/i686/Root/usr/local/lib/libpng.so] 0x00000001 (NEEDED) [/serenity/Build/i686/Root/usr/local/lib/libz.so] 0x00000001 (NEEDED) [/serenity/Build/i686/Root/usr/local/lib/liblzma.so] 0x00000001 (NEEDED) [libSDL2-2.0.so.1] 0x00000001 (NEEDED) [libicui18n.so.69] 0x00000001 (NEEDED) [libicuuc.so.69] 0x00000001 (NEEDED) [libicudata.so.69] 0x00000001 (NEEDED) [libpthread.so] 0x00000001 (NEEDED) [libm.so] 0x00000001 (NEEDED) [libc.so] This causes the executable to fail because the dynamic linker tries to find the library in the incorrect path.
2021-04-20Ports: Improve consistency and quality of portsPanagiotis Vasilopoulos
- Replaced /Root with - Improved documentation. - Removed a few typos. - Replaced with - Added brackets in some cases. Most of the changes were reviewed and applied manually.
2021-04-16Ports: Add auth_type verification to all package.sh filesBrendan Coles
2021-04-16Ports: Build shared libraries for a few more portsGunnar Beutner
This manually builds shared libraries for a bunch of ports. Using libtool would be preferable but that's currently broken so I'm linking the shared libraries manually.
2021-04-16Ports: Make sure ports are installed into /usr/localGunnar Beutner
2021-04-14Ports: Fix building SDL2_ttf when X11 headers are installed on the host systemGunnar Beutner
2021-04-04Ports: Set freetype2 include path for SDL2_ttfLinus Groh
It tried to use some headers from my host machine and failed to build.
2021-03-13Ports: Remove redundant 'workdir' entriesLinus Groh
2021-03-11Ports: Replace hardcoded Build/ paths with SERENITY_BUILD_DIRLinus Groh
Fixes #5710.
2021-03-07LibCompress: Rename libcompression.so to libcompress.soJelle Raaijmakers
2021-03-07Ports: Add SDL2_ttfAndreas Kling