summaryrefslogtreecommitdiff
path: root/Ports
AgeCommit message (Collapse)Author
2022-11-24Ports: Fix warning when building with `useconfigure="false"`Jelle Raaijmakers
When building a port with `useconfigure="false"`, the `do_configure` function invokes a `buildstep` with multiple positional arguments as the command to execute. It then tests whether the positional arguments evaluate to an emtpy string, but could fail when multiple positional arguments were provided. This resulted in the following warning when building the Composer port, for example: ../.port_include.sh: line 16: [: echo: binary operator expected Prevent this warning by testing against the number of positional arguments, instead.
2022-11-24Ports: Clean up PHP's `package.sh`Jelle Raaijmakers
2022-11-24Ports: Update PHP to 8.1.12Jelle Raaijmakers
2022-11-24Ports: Configure LibCrypt include path for PHPJelle Raaijmakers
Since ac40197047 LibCrypt has its own library. PHP tries to detect the `crypt_data` struct but fails to do so since it cannot find `crypt.h`. By adding this explicit include path, PHP builds again.
2022-11-23Ports/SDL2: Rename LibGUI Window function in accordance with 5d56756kleines Filmröllchen
2022-11-07Ports: Update fio to version 3.33Brian Gianforcaro
2022-11-06Base+Ports: Rename 'Sound' category to 'Media'Slimey
2022-11-05Ports: Enable ssl and ztd features for Qt portClemens Wasser
2022-11-05Ports: Build Qt modules Network and ConcurrentClemens Wasser
2022-11-03Ports: Update serenity-theming use latest commit 490a15aXexxa
2022-11-03Everywhere: Clean up "the the" comment typosNico Weber
2022-11-01Ports: Update ScummVM to 2.6.1Jelle Raaijmakers
2022-11-01Ports: Update build flags for ScummVMJelle Raaijmakers
These were no longer being picked up after some recent changes. Since port builds happen in subshells nowadays, we can get rid of the export / unset combo anyway. This fixes ScummVM crashing on startup, caused by `-fvisibility` not being set.
2022-10-27Ports: Add Lite-XLJan200101
2022-10-27Ports: Update RetroArch + SDL2_soundkrutalevex
2022-10-26Ports: Update qemu to 7.1.0Kenneth Myhra
2022-10-26Ports: Update glib to 2.74.1Kenneth Myhra
2022-10-26Ports: Update curl to 7.86.0Kenneth Myhra
2022-10-25Ports/OpenJDK: Use new global variables at /sys/kernel/ directoryLiav A
2022-10-25Ports/libuv: Use new global variables at /sys/kernel/ directoryLiav A
2022-10-25Ports/neofetch: Use new global variables at /sys/kernel/ directoryLiav A
2022-10-25Ports/python3: Update Python to 3.11.0Linus Groh
This now requires `--host` and `--with-build-python` to be passed to the configure script when cross compiling; the former we simply do like in many other package.sh scripts as well, the latter we point to `python3`, which is expected to match the port's version anyway.
2022-10-25Ports/python3: Reformat package.sh according to our current guidelinesLinus Groh
2022-10-25Ports: Fix return statuses with new buildstepsPeter Elliott
previously every buildstep would return a success error code. As a result, all the steps would run even if previous steps failed. I've also added a red status message when this happens.
2022-10-24Ports: Add port for the Boost C++ librariesGunnar Beutner
This currently requires GCC.
2022-10-24Toolchain: Update LLVM to 15.0.3Tim Schumacher
2022-10-24Ports: Add Pacman portGunnar Beutner
2022-10-24Ports: Fix building TiMidity++Gunnar Beutner
The build would previously fail if Xorg headers are installed on the host system.
2022-10-23Ports: Prefix output with the build step and port nameGunnar Beutner
We already have something similar for the toolchain builds. This makes it easier to identify which build step is currently running.
2022-10-21Ports/llvm: Add a dependency on zstdTim Schumacher
2022-10-21Ports: Update Composer to 2.4.3Jelle Raaijmakers
2022-10-21Ports: Support Serenity install root in PHP's libtoolJelle Raaijmakers
PHP's libtool does not have sysroot support; this is the minimum change to get PHP to build.
2022-10-21Ports: Update PHP to 8.1.11Jelle Raaijmakers
2022-10-19Ports: Add a ClassiCube portcflip
2022-10-19Ports/libopenal: Build with SDL2 backend, and disable example programscflip
This patch fixes libopenal's build by disabling the alsoft-config utility which required qt6, and disabling the example programs that were causing compiler errors. This also forces CMake to build with an SDL2 backend so audio can actually be played.
2022-10-19Ports/SDL2: Add null check to SerenitySDLWidget::paint_eventcflip
This was causing a crash when message boxes appeared before the window painted anything.
2022-10-18Ports: Make the quake3 port buildable on ARM64 hostsGunnar Beutner
Previously, on ARM64 hosts we'd try to build ARM64 binaries even when SERENITY_ARCH was set to x86_64. This would cause the build to fail.
2022-10-17Ports: Allow ports to specify working directory when run from launchercflip
2022-10-17Ports/dmidecode: Remove install and post_install overriden sequencesLiav A
We used to do whole bunch of unnecessary things in the install sequence which the default port_include script sequence can do just fine, therefore the install sequence is removed from the port script. The post_install sequence wrongly called "make install-bin" which could be done in the default install sequence, as well as to create the /bin directory which is completely unnecessary to do because the image build script already does that for us. Also, now /usr/local/bin is in the PATH environment variable, so the installed binaries are runnable without creating symlinks in the /bin directory, therefore making the sequence of post_install completely unnecessary in the script so it is removed too.
2022-10-17Ports: Add potrace utility portLiav A
2022-10-17Ports: Add tree utility portLiav A
2022-10-16Ports: Add lzop compression utility portLiav A
2022-10-16Ports: Add lzo library portLiav A
2022-10-16Ports: Add GNU tar portLiav A
2022-10-15Ports: Add GNU which portLiav A
2022-10-15Ports: Add file utility portLiav A
2022-10-15Ports/dosfstools: Create symlinks automatically instead of manuallyTim Schumacher
Replace the manual creation of symlinks with the `--enable-compat-symlinks` configure option, which automatically creates the symlinks that we want and more.
2022-10-15Ports/dosfstools: Don't run autogenTim Schumacher
The release tarball arrives preconfigured, so there is no need for us to run autogen manually.
2022-10-15Ports: Add dosfstools portLiav A
2022-10-14Ports: Add a kakoune portdemostanis