summaryrefslogtreecommitdiff
path: root/games-board/pioneers/pioneers-15.6.ebuild
blob: 34b8102adc72ddfdade226a2b474ff63a3f1e1b3 (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
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7
GNOME2_EAUTORECONF=yes

inherit gnome2

DESCRIPTION="Clone of the popular board game The Settlers of Catan"
HOMEPAGE="https://pio.sourceforge.net/"
SRC_URI="https://downloads.sourceforge.net/pio/${P}.tar.gz"

LICENSE="GPL-2+ CC-BY-SA-4.0"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="dedicated help nls"

# dev-util/gob only for autoreconf
RDEPEND="
	>=dev-libs/glib-2.28:2
	!dedicated?	(
		>=x11-libs/gtk+-3.22:3
		>=x11-libs/libnotify-0.7.4
		help? ( app-text/yelp-tools )
	)
	nls? ( virtual/libintl )"
DEPEND="${RDEPEND}"
BDEPEND="
	dev-util/gob:2
	virtual/pkgconfig
	nls? ( sys-devel/gettext )
"

DOCS=( AUTHORS ChangeLog README TODO NEWS )

PATCHES=( "${FILESDIR}/${P}-slibtool.patch" )

src_configure() {
	gnome2_src_configure \
		$(use_enable nls) \
		$(use_enable help) \
		--includedir=/usr/include \
		$(use_with !dedicated gtk)
}

src_install() {
	gnome2_src_install scrollkeeper_localstate_dir="${ED}"/var/lib/scrollkeeper/
}