Blame


1 00ced238 2021-09-24 thomas README.portable
2 00ced238 2021-09-24 thomas ===============
3 00ced238 2021-09-24 thomas
4 00ced238 2021-09-24 thomas **NOTE: This repository is read-only and is used only to mirror the
5 00ced238 2021-09-24 thomas got-portable repository for CI purposes.**
6 00ced238 2021-09-24 thomas
7 00ced238 2021-09-24 thomas This is the portable version of got[1] (Game of Trees), using autotools to
8 e499844e 2022-03-03 thomas provide the library checks required for GoT's dependencies.
9 00ced238 2021-09-24 thomas
10 e499844e 2022-03-03 thomas The following operating systems are supported:
11 00ced238 2021-09-24 thomas
12 e499844e 2022-03-03 thomas * FreeBSD
13 e499844e 2022-03-03 thomas * NetBSD
14 b26177ad 2022-03-03 thomas * DragonFlyBSD
15 e499844e 2022-03-03 thomas * MacOS
16 e499844e 2022-03-03 thomas * Linux
17 e499844e 2022-03-03 thomas
18 00ced238 2021-09-24 thomas DEPENDENCIES
19 00ced238 2021-09-24 thomas ============
20 00ced238 2021-09-24 thomas
21 e499844e 2022-03-03 thomas Linux:
22 00ced238 2021-09-24 thomas
23 00ced238 2021-09-24 thomas * `libncurses` (for tog(1))
24 00ced238 2021-09-24 thomas * `libmd` (BSD's digest routines)
25 00ced238 2021-09-24 thomas * `libcrypto` (often via 'libssl-dev' for SHA1 routines)
26 00ced238 2021-09-24 thomas * `libuuid` (for UUID generation)
27 00ced238 2021-09-24 thomas * `libz` (for Z compression)
28 00ced238 2021-09-24 thomas * `pkg-config` (for searching libraries)
29 ebc794c1 2021-10-20 thomas * `bison` (for configuration file grammar)
30 00ced238 2021-09-24 thomas
31 e499844e 2022-03-03 thomas FreeBSD:
32 e499844e 2022-03-03 thomas
33 e499844e 2022-03-03 thomas * `automake`
34 e499844e 2022-03-03 thomas * `pkgconf`
35 e499844e 2022-03-03 thomas
36 e499844e 2022-03-03 thomas NetBSD:
37 e499844e 2022-03-03 thomas
38 e499844e 2022-03-03 thomas * `automake`
39 e499844e 2022-03-03 thomas * `libuuid`
40 e499844e 2022-03-03 thomas * `ncuresesw`
41 e499844e 2022-03-03 thomas
42 b26177ad 2022-03-03 thomas DragonFlyBSD:
43 b26177ad 2022-03-03 thomas
44 b26177ad 2022-03-03 thomas * `automake`
45 b26177ad 2022-03-03 thomas * `pkgconf`
46 b26177ad 2022-03-03 thomas * `openssl`
47 b26177ad 2022-03-03 thomas
48 e499844e 2022-03-03 thomas Darwin (MacOS):
49 e499844e 2022-03-03 thomas
50 e499844e 2022-03-03 thomas * `automake`
51 e499844e 2022-03-03 thomas * `bison`
52 e499844e 2022-03-03 thomas * `pkg-config`
53 e499844e 2022-03-03 thomas * `ncurses`
54 e499844e 2022-03-03 thomas * `openssl`
55 e499844e 2022-03-03 thomas * `ossp-uuid`
56 e499844e 2022-03-03 thomas
57 00ced238 2021-09-24 thomas TESTS (REGRESS)
58 00ced238 2021-09-24 thomas ===============
59 00ced238 2021-09-24 thomas
60 00ced238 2021-09-24 thomas To run the test suite:
61 00ced238 2021-09-24 thomas
62 00ced238 2021-09-24 thomas ```
63 00ced238 2021-09-24 thomas $ make tests
64 00ced238 2021-09-24 thomas ```
65 00ced238 2021-09-24 thomas
66 1317cd3a 2022-03-08 thomas NOTE: For Linux, you must have the jot(1) command which is typically in the
67 1317cd3a 2022-03-08 thomas `athena-jot` package, or similar.
68 1317cd3a 2022-03-08 thomas
69 00ced238 2021-09-24 thomas NOTE: THIS ONLY WORKS AFTER `make install` DUE TO HOW PATHS TO LIBEXEC
70 00ced238 2021-09-24 thomas HELPERS ARE HARD-CODED INTO THE BINARIES.
71 00ced238 2021-09-24 thomas
72 00ced238 2021-09-24 thomas INSTALLATION
73 00ced238 2021-09-24 thomas ============
74 00ced238 2021-09-24 thomas
75 00ced238 2021-09-24 thomas ```
76 00ced238 2021-09-24 thomas $ ./autogen.sh
77 00ced238 2021-09-24 thomas $ ./configure && make
78 00ced238 2021-09-24 thomas $ sudo make install
79 00ced238 2021-09-24 thomas ```
80 00ced238 2021-09-24 thomas
81 00ced238 2021-09-24 thomas BRANCHES + SUBMITTING PATCHES
82 00ced238 2021-09-24 thomas =============================
83 00ced238 2021-09-24 thomas
84 00ced238 2021-09-24 thomas `got-portable` has two key branches:
85 00ced238 2021-09-24 thomas
86 00ced238 2021-09-24 thomas * `main` which tracks got upstream untainted.
87 2f4dd2c2 2021-09-27 thomas * `linux` which provides the portable version of GoT based from code on `main`
88 00ced238 2021-09-24 thomas
89 00ced238 2021-09-24 thomas Patches for portable code fixes should be based from the `linux` branch and
90 00ced238 2021-09-24 thomas sent to the mailing list for review [2] or sent to me directly (see CONTACT).
91 00ced238 2021-09-24 thomas
92 00ced238 2021-09-24 thomas The read-only Github repository also runs CI checks using Cirrus-CI on Linux
93 00ced238 2021-09-24 thomas and FreeBSD.
94 00ced238 2021-09-24 thomas
95 00ced238 2021-09-24 thomas TODO
96 00ced238 2021-09-24 thomas ====
97 00ced238 2021-09-24 thomas
98 00ced238 2021-09-24 thomas This port is incomplete in that only got(1) and tog(1) have been ported.
99 00ced238 2021-09-24 thomas gotweb has yet to be ported.
100 00ced238 2021-09-24 thomas
101 00ced238 2021-09-24 thomas configure.ac should start defining AC_ENABLE arguments to allow for
102 00ced238 2021-09-24 thomas finer-grained control of where to search for includes/libraries, etc.
103 00ced238 2021-09-24 thomas
104 00ced238 2021-09-24 thomas CONTACT
105 00ced238 2021-09-24 thomas =======
106 00ced238 2021-09-24 thomas
107 00ced238 2021-09-24 thomas Thomas Adam <thomas@xteddy.org>
108 00ced238 2021-09-24 thomas thomas_adam (#gameoftrees on irc.libera.chat)
109 00ced238 2021-09-24 thomas
110 00ced238 2021-09-24 thomas [1] https://gameoftrees.org
111 6bfde126 2021-09-29 thomas [2] https://lists.openbsd.org/cgi-bin/mj_wwwusr?user=&passw=&func=lists-long-full&extra=gameoftrees