Gentoo Archives: gentoo-commits

From: Stefan Strogin <steils@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: games-server/monopd/
Date: Thu, 29 Aug 2019 21:35:12
Message-Id: 1567114445.023655cf884e2a70be37458f648df5c117026447.steils@gentoo
1 commit: 023655cf884e2a70be37458f648df5c117026447
2 Author: Stefan Strogin <steils <AT> gentoo <DOT> org>
3 AuthorDate: Thu Aug 29 20:05:33 2019 +0000
4 Commit: Stefan Strogin <steils <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 29 21:34:05 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=023655cf
7
8 games-server/monopd: fix build with >=dev-libs/utfcpp-2.3.6
9
10 Reported-by: Toralf Förster <toralf <AT> gentoo.org>
11 Reported-by: Arfrever Frehtes Taifersar Arahesis <arfrever.fta <AT> gmail.com>
12 Closes: https://bugs.gentoo.org/691952
13 Package-Manager: Portage-2.3.73, Repoman-2.3.17
14 Signed-off-by: Stefan Strogin <steils <AT> gentoo.org>
15
16 games-server/monopd/monopd-0.10.2-r1.ebuild | 6 ++++--
17 1 file changed, 4 insertions(+), 2 deletions(-)
18
19 diff --git a/games-server/monopd/monopd-0.10.2-r1.ebuild b/games-server/monopd/monopd-0.10.2-r1.ebuild
20 index c0776e83d64..83037a0574f 100644
21 --- a/games-server/monopd/monopd-0.10.2-r1.ebuild
22 +++ b/games-server/monopd/monopd-0.10.2-r1.ebuild
23 @@ -1,8 +1,9 @@
24 -# Copyright 1999-2016 Gentoo Foundation
25 +# Copyright 1999-2019 Gentoo Authors
26 # Distributed under the terms of the GNU General Public License v2
27
28 EAPI=6
29 -inherit autotools eutils systemd
30 +
31 +inherit autotools eutils flag-o-matic systemd
32
33 DESCRIPTION="server for atlantik games"
34 HOMEPAGE="http://gtkatlantic.gradator.net/"
35 @@ -33,6 +34,7 @@ src_prepare() {
36 }
37
38 src_configure() {
39 + append-cppflags -I"/usr/include/utf8cpp"
40 econf $(use_with systemd systemd-daemon)
41 }