blob: 386dab481c7d6abad5253ca975fb2dd0a276cf48 (
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
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools flag-o-matic systemd
DESCRIPTION="Server for the GtkAtlantic board game"
HOMEPAGE="https://gtkatlantic.gradator.net"
SRC_URI="https://download.tuxfamily.org/gtkatlantic/monopd/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="systemd"
RDEPEND="
systemd? ( sys-apps/systemd )
"
DEPEND="
${RDEPEND}
>=dev-cpp/muParser-2
dev-libs/utfcpp
"
PATCHES=(
"${FILESDIR}"/${P}-fixes.patch
)
src_prepare() {
default
eautoreconf
}
src_configure() {
append-cppflags -I"${ESYSROOT}/usr/include/utf8cpp"
econf $(use_with systemd systemd-daemon)
}
src_install() {
default
newinitd "${FILESDIR}"/${PN}.initd ${PN}
use systemd && systemd_dounit doc/systemd/${PN}.s*
}
|