blob: 9ee896dc26a1bc82ab0272652d82867c5e97ed70 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..13} )
inherit go-module python-any-r1 systemd
DESCRIPTION="A modern IRC server written in Go"
HOMEPAGE="https://ergo.chat/ https://github.com/ergochat/ergo"
SRC_URI="https://github.com/ergochat/ergo/archive/v${PV/_/-}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}"/${P/_/-}
LICENSE="Apache-2.0 BSD-2 BSD ISC MIT MPL-2.0"
SLOT="0"
if [[ ${PV} != *_rc* ]] ; then
KEYWORDS="amd64 ~arm ~arm64"
fi
IUSE="test"
RESTRICT="!test? ( test )"
# We may even want to package irctest in future?
RDEPEND="
acct-user/oragono
acct-group/oragono
"
BDEPEND="test? ( ${PYTHON_DEPS} )"
DOCS=( README.md docs/MANUAL.md docs/USERGUIDE.md )
pkg_setup() {
use test && python-any-r1_pkg_setup
}
src_prepare() {
default
sed -i -e 's:ERGO_USERNAME="ergo":ERGO_USERNAME="oragono":' distrib/openrc/ergo.confd || die
# Minor fiddling with paths
sed -i \
-e 's:/home/ergo/ergo:/usr/bin/ergo:' \
-e 's:/home/ergo:/var/lib/ergo:' \
-e 's:/var/lib/ergo/ircd.yaml:/etc/ergo/ircd.yaml:' \
-e 's:User=ergo:User=oragono:' \
distrib/systemd/ergo.service || die
}
src_compile() {
ego build .
}
src_install() {
einstalldocs
dobin ergo
insinto /etc/ergo
doins default.yaml
newinitd distrib/openrc/ergo.initd ergo
newconfd distrib/openrc/ergo.confd ergo
keepdir /var/lib/ergo
fowners oragono:oragono /var/lib/ergo
insinto /var/lib/ergo
doins -r languages/
systemd_dounit distrib/systemd/ergo.service
}
pkg_postinst() {
if [[ -z "${REPLACING_VERSIONS}" ]] ; then
elog "Please copy the example config in ${EROOT}/etc/ergo:"
elog "e.g. cp ${EROOT}/etc/ergo/default.yaml ${EROOT}/etc/ergo/ircd.yaml"
fi
}
|