2021-01-23 01:15:30 +03:00
|
|
|
# Ports for SerenityOS
|
|
|
|
|
|
|
|
## What's this?
|
2019-05-28 01:02:29 +03:00
|
|
|
|
|
|
|
Serenity has software patched to run on it.
|
|
|
|
These shell scripts will allow you to build that sort of software, easily.
|
2021-01-23 01:15:30 +03:00
|
|
|
Note that you must have already built Serenity, and be in a Serenity build
|
|
|
|
environment.
|
|
|
|
|
2021-01-23 01:20:48 +03:00
|
|
|
## Available ports
|
|
|
|
|
|
|
|
A list of all available ports can be found [here](AvailablePorts.md).
|
|
|
|
|
2023-01-10 15:04:54 +03:00
|
|
|
## External ports
|
|
|
|
|
|
|
|
Third party ports might need additional dependencies from another location.
|
|
|
|
In this case, you can point the `SERENITY_PORT_DIRS` variable to a local ports directory.
|
|
|
|
|
|
|
|
For example:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
export SERENITY_PORT_DIRS="/path/to/port/dir/:/other/path/"
|
|
|
|
```
|
|
|
|
|
2021-01-23 01:15:30 +03:00
|
|
|
## Using ports scripts
|
|
|
|
|
|
|
|
Each port has a script called `package.sh` which defines a name and version,
|
|
|
|
its dependencies, the required files that will be downloaded as well as
|
|
|
|
configuration/compilation options, and some other things (see
|
|
|
|
[Writing ports scripts](#writing-ports-scripts) for details).
|
|
|
|
|
2021-02-14 20:51:44 +03:00
|
|
|
- To install a certain port, `cd` into its directory and run `./package.sh`
|
|
|
|
- To install all available ports, run the `build_all.sh` script in this
|
|
|
|
directory. Pass `clean` as first argument to remove old build files
|
|
|
|
beforehand.
|
|
|
|
- To reinstall all currently installed ports, run the `build_installed.sh`
|
|
|
|
script in this directory. This is sometimes required when LibC changes, for
|
|
|
|
example. Pass `clean` as first argument to remove old build files beforehand.
|
2021-01-23 01:15:30 +03:00
|
|
|
|
2023-04-22 16:09:01 +03:00
|
|
|
Installed ports are being tracked in `Build/x86_64/Root/usr/Ports/installed.db` (a simple text file).
|
2021-02-01 21:36:18 +03:00
|
|
|
You can delete this file at any time, in fact it must be edited or removed
|
|
|
|
when clearing the build directory as port dependencies may not be installed
|
|
|
|
again otherwise.
|
2021-01-23 01:15:30 +03:00
|
|
|
|
|
|
|
Not giving an option is equivalent to `installdepends`, `fetch`, `patch`,
|
|
|
|
`configure`, `build` and `install`, in that order. This is recommended for a
|
|
|
|
regular install.
|
|
|
|
|
|
|
|
### Options
|
|
|
|
|
|
|
|
The following options are available:
|
|
|
|
|
|
|
|
#### `fetch`
|
|
|
|
|
|
|
|
By default, download, verify, and extract the port's [`files`](#files).
|
|
|
|
|
|
|
|
#### `patch`
|
|
|
|
|
|
|
|
Apply the port's patches (`patches/*.patch`). A file `.foo_applied` is created
|
|
|
|
in [`workdir`](#workdir) upon success to ensure a certain patch is only
|
|
|
|
applied once.
|
|
|
|
|
|
|
|
#### `configure`
|
|
|
|
|
|
|
|
By default, run the port's [`configscript`](#configscript) (usually
|
|
|
|
`configure`) with [`configopts`](#configopts).
|
|
|
|
|
|
|
|
#### `build`
|
|
|
|
|
|
|
|
By default, run `make` with the port's [`makeopts`](#makeopts).
|
|
|
|
|
|
|
|
#### `install`
|
|
|
|
|
|
|
|
By default, run `make install` with the port's [`installopts`](#installopts).
|
|
|
|
|
2021-07-08 01:43:44 +03:00
|
|
|
#### `shell`
|
|
|
|
|
|
|
|
Open a shell in the `$workdir` with the build environment set.
|
|
|
|
|
2021-01-23 01:15:30 +03:00
|
|
|
#### `installdepends`
|
|
|
|
|
|
|
|
Install all ports from the port's [`depends`](#depends) list.
|
|
|
|
|
|
|
|
#### `clean`
|
|
|
|
|
|
|
|
By default, remove all `.out` files from the port's [`workdir`](#workdir).
|
|
|
|
|
|
|
|
#### `clean_dist`
|
|
|
|
|
|
|
|
By default, remove everything that's been downloaded from the port's
|
|
|
|
[`files`](#files) list.
|
|
|
|
|
|
|
|
#### `clean_all`
|
|
|
|
|
|
|
|
By default, [`clean`](#clean) and [`clean_dist`](#clean_dist) combined.
|
|
|
|
|
|
|
|
#### `uninstall`
|
|
|
|
|
|
|
|
Remove the port's files from the Serenity build directory, if it has a `plist`
|
|
|
|
file.
|
|
|
|
|
2022-01-24 15:39:26 +03:00
|
|
|
#### `dev`
|
|
|
|
|
|
|
|
Start a development session with guided patch importing.
|
|
|
|
This mode has a bunch of nice features:
|
|
|
|
|
|
|
|
- Drops the user in a git repository backed by another (local) git repository
|
|
|
|
that acts as the "clean", patched version of the port that is ready to be built
|
|
|
|
- The "remote" repository can be pushed to, pulled from and generally anything that
|
|
|
|
you'd want to do with a remote repo.
|
|
|
|
- After leaving the dev shell, all patches are updated and the user will be prompted
|
|
|
|
whether they wish to generate a new patch readme file.
|
|
|
|
|
|
|
|
This mode takes an extra `--no-depends` option, that if given, will cause the dependency
|
|
|
|
fetch and build steps to be skipped.
|
|
|
|
|
|
|
|
This mode can also assist in migrating old patches to new versions through a guided
|
|
|
|
semi-automated process.
|
|
|
|
|
2021-01-23 01:15:30 +03:00
|
|
|
#### `--auto`
|
|
|
|
|
|
|
|
Same as no option, but mark the port as having been installed automatically.
|
|
|
|
This is used for dependencies.
|
|
|
|
|
|
|
|
## Writing ports scripts
|
|
|
|
|
|
|
|
The `package.sh` file is a simple Bash script that's required for each port.
|
|
|
|
Patches and other files are optional. The most basic version of such a port
|
|
|
|
script simply defines some well-known variables and looks like this:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
#!/usr/bin/env -S bash ../.port_include.sh
|
2023-08-10 05:23:29 +03:00
|
|
|
port='foo'
|
|
|
|
version='1.2.3'
|
|
|
|
useconfigure='true'
|
2023-07-10 14:10:29 +03:00
|
|
|
files=(
|
2023-09-02 07:32:27 +03:00
|
|
|
"https://example.com/foo-${version}.tar.gz#9acd50f9a2af37e471f761c3fe7b8dea5617e51dac802fe6c177b74abf0abb5a"
|
2023-07-10 14:10:29 +03:00
|
|
|
)
|
2023-08-10 05:23:29 +03:00
|
|
|
depends=(
|
2023-08-16 01:38:18 +03:00
|
|
|
'bar'
|
|
|
|
'baz'
|
2023-08-10 05:23:29 +03:00
|
|
|
)
|
2021-01-23 01:15:30 +03:00
|
|
|
```
|
|
|
|
|
|
|
|
The script in the shebang, [`.port_include.sh`](./.port_include.sh), is where
|
|
|
|
all the magic happens.
|
|
|
|
|
|
|
|
### Variables
|
|
|
|
|
|
|
|
The following variables have special functionality:
|
|
|
|
|
|
|
|
#### `configopts`
|
|
|
|
|
|
|
|
Options passed to the port's [`configscript`](#configscript) in the default
|
|
|
|
`configure` function.
|
|
|
|
|
2022-10-04 02:57:03 +03:00
|
|
|
`--host=x86_64-pc-serenity` is always passed, override the `configure` function
|
2021-01-23 01:15:30 +03:00
|
|
|
if that's undesirable.
|
|
|
|
|
2022-01-24 15:39:26 +03:00
|
|
|
#### `use_fresh_config_sub`
|
|
|
|
|
|
|
|
Boolean option (`false` by default), will replace the `config.sub` pointed to by
|
|
|
|
`config_sub_path` as part of the patching process if set to true.
|
|
|
|
|
2022-05-25 13:51:13 +03:00
|
|
|
#### `config_sub_paths`
|
2022-01-24 15:39:26 +03:00
|
|
|
|
2022-05-25 13:51:13 +03:00
|
|
|
Paths to the `config.sub` files used by autoconf, starting at `$workdir`.
|
|
|
|
This is set to `(config.sub)` by default.
|
2022-01-24 15:39:26 +03:00
|
|
|
|
2021-01-23 01:15:30 +03:00
|
|
|
#### `configscript`
|
|
|
|
|
|
|
|
Name of the script that will be run in the default `configure` function when
|
|
|
|
[`useconfigure`](#useconfigure) is `true.`
|
|
|
|
|
|
|
|
Defaults to `configure`.
|
|
|
|
|
|
|
|
#### `depends`
|
|
|
|
|
2022-01-07 03:20:50 +03:00
|
|
|
An array of other SerenityOS ports the port depends on and which will be
|
|
|
|
installed during the `installdepends` step.
|
|
|
|
|
|
|
|
For example:
|
|
|
|
|
|
|
|
```bash
|
2023-08-16 01:38:18 +03:00
|
|
|
depends=(
|
|
|
|
'gettext'
|
|
|
|
'ncurses'
|
|
|
|
)
|
2022-01-07 03:20:50 +03:00
|
|
|
```
|
2021-01-23 01:15:30 +03:00
|
|
|
|
|
|
|
#### `files`
|
|
|
|
|
2023-09-02 10:18:50 +03:00
|
|
|
An array of external files required by the port, one per line.
|
|
|
|
|
|
|
|
##### Simple downloads
|
|
|
|
|
|
|
|
The format of each entry is as follows:
|
2021-01-23 01:15:30 +03:00
|
|
|
|
|
|
|
```text
|
2023-09-02 07:32:27 +03:00
|
|
|
URL#HASH
|
2021-01-23 01:15:30 +03:00
|
|
|
```
|
|
|
|
|
2023-08-23 23:57:08 +03:00
|
|
|
Where `URL` is the URL from where the file will be downloaded (using `curl`)
|
|
|
|
and `HASH` is the SHA256 hash that will be used for verification.
|
2021-01-23 01:15:30 +03:00
|
|
|
|
|
|
|
For example:
|
|
|
|
|
2022-03-11 23:19:33 +03:00
|
|
|
```bash
|
2023-07-10 14:10:29 +03:00
|
|
|
files=(
|
2023-09-02 07:32:27 +03:00
|
|
|
"https://example.com/foo-${version}.tar.xz#9acd50f9a2af37e471f761c3fe7b8dea5617e51dac802fe6c177b74abf0abb5a"
|
2023-07-10 14:10:29 +03:00
|
|
|
)
|
2022-03-11 23:19:33 +03:00
|
|
|
```
|
2021-01-23 01:15:30 +03:00
|
|
|
|
|
|
|
If a file is a compressed tar archive, a gzip compressed file or a zip
|
|
|
|
compressed file, it will be extracted.
|
|
|
|
|
2023-09-02 10:18:50 +03:00
|
|
|
##### Git repositories
|
|
|
|
|
|
|
|
The format of each entry is as follows:
|
|
|
|
|
|
|
|
```text
|
|
|
|
git+URL#REVISION
|
|
|
|
```
|
|
|
|
|
|
|
|
Where `URL` is the URL where the repository is located
|
|
|
|
and `REVISION` can be any revision qualifier that is accepted by `git fetch`.
|
|
|
|
|
|
|
|
For example:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
files=(
|
|
|
|
'git+https://gn.googlesource.com/gn#fae280eabe5d31accc53100137459ece19a7a295'
|
|
|
|
)
|
|
|
|
```
|
|
|
|
|
2021-06-06 05:45:20 +03:00
|
|
|
#### `icon_file`
|
|
|
|
|
|
|
|
The file to use for the port launcher icon. The icon file is assumed to have a
|
|
|
|
16x16 as well as a 32x32 layer.
|
|
|
|
|
2021-01-23 01:15:30 +03:00
|
|
|
#### `installopts`
|
|
|
|
|
|
|
|
Options passed to `make install` in the default `install` function.
|
|
|
|
|
2021-04-20 18:42:04 +03:00
|
|
|
`DESTDIR="${SERENITY_INSTALL_ROOT}"` (`"${SERENITY_SOURCE_DIR}/Build/${SERENITY_ARCH}/Root"`)
|
2021-03-11 21:50:44 +03:00
|
|
|
is always passed, override the `install` function if that's undesirable.
|
2021-01-23 01:15:30 +03:00
|
|
|
|
|
|
|
#### `makeopts`
|
|
|
|
|
|
|
|
Options passed to `make` in the default `build` function.
|
|
|
|
|
|
|
|
Defaults to `-j$(nproc)`.
|
|
|
|
|
|
|
|
#### `patchlevel`
|
|
|
|
|
|
|
|
The value for `patch`'s `-p` / `--strip` option, see `man patch` for details.
|
|
|
|
|
|
|
|
Defaults to `1`.
|
|
|
|
|
|
|
|
#### `port`
|
|
|
|
|
|
|
|
The "package name" of the port, usually the same as the directory this script
|
|
|
|
is placed in.
|
|
|
|
|
|
|
|
#### `prefix`
|
|
|
|
|
|
|
|
The location of the ports directory, only used for the `package.db` file for
|
|
|
|
now. Don't override this in ports contributed to Serenity.
|
|
|
|
|
2021-04-20 03:51:04 +03:00
|
|
|
Defaults to `$SERENITY_SOURCE_DIR/Ports`.
|
2021-01-23 01:15:30 +03:00
|
|
|
|
|
|
|
#### `useconfigure`
|
|
|
|
|
|
|
|
The `configure` step will run `pre_configure` and `configure` when this is set
|
|
|
|
to `true`, and simply skip them otherwise.
|
|
|
|
|
|
|
|
Defaults to `false`.
|
|
|
|
|
|
|
|
#### `version`
|
|
|
|
|
|
|
|
The version of the port. Written to `package.db`, and usually used with
|
|
|
|
variable interpolation in [`files`](#files) where the version is part of the
|
|
|
|
filename.
|
|
|
|
|
|
|
|
#### `workdir`
|
|
|
|
|
|
|
|
The working directory used for executing other commands via `run` as well as
|
2023-05-06 17:28:34 +03:00
|
|
|
cleanup. Usually the directory name of the unpacked source archive.
|
2021-01-23 01:15:30 +03:00
|
|
|
|
|
|
|
Defaults to `$port-$version`.
|
|
|
|
|
|
|
|
### Functions
|
|
|
|
|
|
|
|
The various steps of the port installation process are split into individual
|
2023-05-06 17:53:22 +03:00
|
|
|
Bash functions, some of which can be overridden to provide custom behavior,
|
2021-01-23 01:15:30 +03:00
|
|
|
like this:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
build() {
|
|
|
|
run mybuildtool --foo --bar
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
The following can be overridden, the names should be self-explanatory as they
|
|
|
|
mostly match the [available options](#options):
|
|
|
|
|
2021-07-20 16:40:41 +03:00
|
|
|
- `pre_fetch`
|
2021-01-23 01:15:30 +03:00
|
|
|
- `post_fetch`
|
2023-04-20 08:04:35 +03:00
|
|
|
- `pre_patch`
|
2021-01-23 01:15:30 +03:00
|
|
|
- `pre_configure`
|
2023-04-20 08:04:35 +03:00
|
|
|
- `configure`
|
|
|
|
- `post_configure`
|
2021-01-23 01:15:30 +03:00
|
|
|
- `build`
|
2023-04-20 08:04:35 +03:00
|
|
|
- `pre_install`
|
2021-01-23 01:15:30 +03:00
|
|
|
- `install`
|
|
|
|
- `post_install`
|
|
|
|
- `clean`
|
|
|
|
- `clean_dist`
|
|
|
|
- `clean_all`
|
|
|
|
|
|
|
|
A few (non-overridable) util functions are available as well:
|
|
|
|
|
|
|
|
#### `run`
|
|
|
|
|
|
|
|
Log the command and run it in the port's [`workdir`](#workdir).
|
|
|
|
|
|
|
|
#### `run_nocd`
|
|
|
|
|
|
|
|
Log the command and run it in the current working directory
|
|
|
|
(i.e. `Ports/$port`).
|
|
|
|
|
|
|
|
#### `run_replace_in_file`
|
|
|
|
|
|
|
|
Replace something in a file (using a Perl regular expression), like this:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
run_replace_in_file "s/define FOO 1/undef FOO/" config.h
|
|
|
|
```
|
|
|
|
|
|
|
|
## How do I contribute?
|
2019-05-28 01:02:29 +03:00
|
|
|
|
2021-01-23 01:15:30 +03:00
|
|
|
You can either:
|
2019-05-28 01:02:29 +03:00
|
|
|
|
2021-01-23 01:15:30 +03:00
|
|
|
- Add new ports - just get the software to build and add the necessary patches
|
|
|
|
and `package.sh` script
|
|
|
|
- Update an existing port: bumping its version, getting functionality to work
|
|
|
|
that wasn't available so far etc. Make sure to update the patches
|
|
|
|
accordingly.
|
2019-05-28 01:02:29 +03:00
|
|
|
|
2021-01-23 01:15:30 +03:00
|
|
|
Some videos of Andreas adding new ports can be found on YouTube, they might
|
|
|
|
help you understand how this usually works:
|
2019-05-28 01:02:29 +03:00
|
|
|
|
2021-01-23 01:15:30 +03:00
|
|
|
- [OS hacking: Porting the Bash shell](https://www.youtube.com/watch?v=QNK8vK-nkkg)
|
|
|
|
(2019-05-20)
|
|
|
|
- [OS hacking: Porting DOOM to Serenity](https://www.youtube.com/watch?v=a0P_bB6wjhY)
|
|
|
|
(2019-09-09)
|
|
|
|
- [OS hacking: Let's port git to SerenityOS!](https://www.youtube.com/watch?v=1-7VQwWo2Tg)
|
|
|
|
(2020-02-19)
|
|
|
|
- [OS hacking: Fixing a resize bug with the vim port](https://www.youtube.com/watch?v=d4uVnawzHdQ)
|
|
|
|
(2020-06-03)
|