Gentoo Archives: gentoo-commits

From: Lars Wendler <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: games-strategy/wesnoth/
Date: Thu, 28 Feb 2019 10:43:09
Message-Id: 1551350578.1853cd01377e9de21c66a4809c18a81f49a757c3.polynomial-c@gentoo
1 commit: 1853cd01377e9de21c66a4809c18a81f49a757c3
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Thu Feb 28 10:01:31 2019 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Thu Feb 28 10:42:58 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1853cd01
7
8 games-strategy/wesnoth: Bump to version 1.14.6
9
10 Package-Manager: Portage-2.3.62, Repoman-2.3.12
11 Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
12
13 games-strategy/wesnoth/Manifest | 1 +
14 games-strategy/wesnoth/wesnoth-1.14.6.ebuild | 116 +++++++++++++++++++++++++++
15 2 files changed, 117 insertions(+)
16
17 diff --git a/games-strategy/wesnoth/Manifest b/games-strategy/wesnoth/Manifest
18 index e7fa1df1e40..af0ef226cf2 100644
19 --- a/games-strategy/wesnoth/Manifest
20 +++ b/games-strategy/wesnoth/Manifest
21 @@ -1 +1,2 @@
22 DIST wesnoth-1.14.5.tar.gz 489848620 BLAKE2B abbf1ae2bb20cfdd2575f5e21eea7db9b32f0a9c7e85101652206477f3dca8ae0aefbf4b0a252c4522565c08900b0a04d39fd5eadb5feb49168dc95db732e50e SHA512 115c7fda3ef77079d871aeae4bc448bf8de1829d7723179f634db10f23ab8c15d2d92c5a36c11aa8dc79fb8f914e95f06143565e2ae950947da35af5f71e1b6e
23 +DIST wesnoth-1.14.6.tar.gz 491891860 BLAKE2B e15512eefbb7b118ec80a5612c23edce41555fc2869b652d4799bc052f26592852a2b4d1cb76dee3203d8a26c18c4cf9de58dea1ee81403b9881642e902cf2f3 SHA512 f29b78605f5e3c2e9af8884925b43a262d6fce469bf30a4697e2c8bef8a49d0fea17bd6dc1a3e78113a50e6f21e29aedb5ee26ff2b0493371120f8c64b894096
24
25 diff --git a/games-strategy/wesnoth/wesnoth-1.14.6.ebuild b/games-strategy/wesnoth/wesnoth-1.14.6.ebuild
26 new file mode 100644
27 index 00000000000..971ba1f87a9
28 --- /dev/null
29 +++ b/games-strategy/wesnoth/wesnoth-1.14.6.ebuild
30 @@ -0,0 +1,116 @@
31 +# Copyright 1999-2019 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +inherit cmake-utils user
36 +
37 +DESCRIPTION="Battle for Wesnoth - A fantasy turn-based strategy game"
38 +HOMEPAGE="http://www.wesnoth.org
39 + https://github.com/wesnoth/wesnoth"
40 +SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
41 +
42 +LICENSE="GPL-2"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~x86 ~x86-fbsd"
45 +IUSE="dbus dedicated doc fribidi libressl nls openmp server"
46 +
47 +RDEPEND="
48 + >=dev-libs/boost-1.50:=[nls,threads,icu]
49 + >=media-libs/libsdl2-2.0.4:0[joystick,video,X]
50 + !dedicated? (
51 + dev-libs/glib:2
52 + !libressl? ( dev-libs/openssl:0= )
53 + libressl? ( dev-libs/libressl:0= )
54 + >=media-libs/fontconfig-2.4.1
55 + >=media-libs/sdl2-image-2.0.0[jpeg,png]
56 + >=media-libs/sdl2-mixer-2.0.0[vorbis]
57 + >=media-libs/sdl2-ttf-2.0.12
58 + media-libs/libvorbis
59 + >=x11-libs/pango-1.22.0
60 + >=x11-libs/cairo-1.10.0
61 + sys-libs/readline:0=
62 + dbus? ( sys-apps/dbus )
63 + fribidi? ( dev-libs/fribidi )
64 + )"
65 +DEPEND="${RDEPEND}
66 + x11-libs/libX11
67 +"
68 +BDEPEND="
69 + sys-devel/gettext
70 + virtual/pkgconfig
71 +"
72 +
73 +pkg_setup() {
74 + if use openmp; then
75 + tc-has-openmp || die "Please switch to an openmp compatible compiler"
76 + fi
77 +
78 + enewgroup ${PN}
79 + enewuser ${PN} -1 /bin/bash -1 ${PN}
80 +}
81 +
82 +src_prepare() {
83 + cmake-utils_src_prepare
84 +
85 + if ! use doc ; then
86 + sed -i \
87 + -e '/manual/d' \
88 + doc/CMakeLists.txt || die
89 + fi
90 +
91 + # respect LINGUAS (bug #483316)
92 + if [[ ${LINGUAS+set} ]] ; then
93 + local lang langs=()
94 + for lang in $(cat po/LINGUAS) ; do
95 + has ${lang} ${LINGUAS} && langs+=( ${lang} )
96 + done
97 + echo "${langs[@]}" > po/LINGUAS || die
98 + fi
99 +}
100 +
101 +src_configure() {
102 + filter-flags -ftracer -fomit-frame-pointer
103 + if [[ $(gcc-major-version) -eq 3 ]] ; then
104 + filter-flags -fstack-protector
105 + append-flags -fno-stack-protector
106 + fi
107 +
108 + # Work around eclass
109 + append-flags -UNDEBUG
110 +
111 + if use dedicated || use server ; then
112 + mycmakeargs=(
113 + -DENABLE_CAMPAIGN_SERVER="ON"
114 + -DENABLE_SERVER="ON"
115 + -DSERVER_UID="${PN}"
116 + -DSERVER_GID="${PN}"
117 + -DFIFO_DIR="/run/wesnothd"
118 + )
119 + else
120 + mycmakeargs=(
121 + -DENABLE_CAMPAIGN_SERVER="OFF"
122 + -DENABLE_SERVER="OFF"
123 + )
124 + fi
125 + mycmakeargs+=(
126 + -Wno-dev
127 + -DENABLE_GAME="$(usex !dedicated)"
128 + -DENABLE_DESKTOP_ENTRY="$(usex !dedicated)"
129 + -DENABLE_NLS="$(usex nls)"
130 + -DENABLE_NOTIFICATIONS="$(usex dbus)"
131 + -DENABLE_FRIBIDI="$(usex fribidi)"
132 + -DENABLE_OMP="$(usex openmp)"
133 + -DENABLE_STRICT_COMPILATION="OFF"
134 + -DCMAKE_INSTALL_PREFIX="${EPREFIX}/usr"
135 + )
136 + cmake-utils_src_configure
137 +}
138 +
139 +src_install() {
140 + local DOCS=( README.md changelog.md )
141 + cmake-utils_src_install
142 + if use dedicated || use server; then
143 + rmdir "${ED}/run/wesnothd" || die
144 + newinitd "${FILESDIR}"/wesnothd.rc-r1 wesnothd
145 + fi
146 +}