forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cockatrice-20170505.ebuild
47 lines (39 loc) · 1.22 KB
/
cockatrice-20170505.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
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit cmake-utils eutils gnome2-utils
DESCRIPTION="An open-source multiplatform software for playing card games over a network"
HOMEPAGE="https://github.com/Cockatrice/Cockatrice"
SRC_URI="${HOMEPAGE}/archive/2017-05-05-Release-2.3.17.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="server +client +oracle"
DEPEND="
dev-libs/libgcrypt:0
dev-libs/protobuf
dev-qt/linguist-tools:5
dev-qt/qtconcurrent:5
dev-qt/qtprintsupport:5
dev-qt/qtcore:5
client? (
dev-qt/qtgui:5
dev-qt/qtmultimedia:5
dev-qt/qtsvg:5 )
oracle? (
sys-libs/zlib
)"
# As the default help/about display the sha1 we need it
SHA1='c96f234'
S=${WORKDIR}/"Cockatrice-2017-05-05-Release-2.3.17"
src_configure() {
local mycmakeargs=(
-DWITH_CLIENT=$(usex client)
-DWITH_ORACLE=$(usex oracle)
-DWITH_SERVER=$(usex server)
-DICONDIR="/usr/share/icons"
-DDESKTOPDIR="/usr/share/applications" )
# Add date in the help about, come from git originally
sed -i 's/^set(PROJECT_VERSION_FRIENDLY.*/set(PROJECT_VERSION_FRIENDLY \"'${SHA1}'\")/' cmake/getversion.cmake || die "Sed failed!"
cmake-utils_src_configure
}