forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cockatrice-20160506.ebuild
69 lines (56 loc) · 1.56 KB
/
cockatrice-20160506.ebuild
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
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit cmake-utils eutils gnome2-utils games
DESCRIPTION="An open-source multiplatform software for playing card games over a network"
HOMEPAGE="https://github.com/Cockatrice/Cockatrice"
SRC_URI="https://github.com/Cockatrice/${PN}/archive/2016-05-06-Release.tar.gz -> ${P}.tar.gz"
S=${WORKDIR}/"Cockatrice-2016-05-06-Release"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="dedicated server"
DEPEND="
dev-libs/libgcrypt:0
dev-libs/protobuf
dev-qt/qtcore:5
dev-qt/qtconcurrent:5
dev-qt/linguist-tools:5
dev-qt/qtprintsupport:5
!dedicated? (
dev-qt/qtmultimedia:5
dev-qt/qtsvg:5
dev-qt/qtgui:5
)"
src_configure() {
local mycmakeargs=(
$(usex dedicated "-DWITHOUT_CLIENT=1 -DWITH_SERVER=1" "$(usex server "-DWITH_SERVER=1" "")")
-DCMAKE_INSTALL_BINDIR="${GAMES_BINDIR}"
-DCMAKE_INSTALL_PREFIX="${GAMES_PREFIX}"
-DDATADIR="${GAMES_DATADIR}/${PN}"
-DICONDIR="/usr/share/icons"
-DDESKTOPDIR="/usr/share/applications"
)
cmake-utils_src_configure
}
src_compile() {
cmake-utils_src_compile
}
src_install() {
cmake-utils_src_install
prepgamesdirs
}
pkg_preinst() {
games_pkg_preinst
use dedicated || gnome2_icon_savelist
}
pkg_postinst() {
games_pkg_postinst
elog "zonebg pictures are in ${GAMES_DATADIR}/${PN}/zonebg"
elog "sounds are in ${GAMES_DATADIR}/${PN}/sounds"
elog "you can use those directories in cockatrice settings"
use dedicated || gnome2_icon_cache_update
}
pkg_postrm() {
use dedicated || gnome2_icon_cache_update
}