diff options
Diffstat (limited to 'games-board/cockatrice')
-rw-r--r-- | games-board/cockatrice/cockatrice-20170505-r1.ebuild (renamed from games-board/cockatrice/cockatrice-20170505.ebuild) | 32 |
1 files changed, 19 insertions, 13 deletions
diff --git a/games-board/cockatrice/cockatrice-20170505.ebuild b/games-board/cockatrice/cockatrice-20170505-r1.ebuild index a8edee2cae16..902b7730730e 100644 --- a/games-board/cockatrice/cockatrice-20170505.ebuild +++ b/games-board/cockatrice/cockatrice-20170505-r1.ebuild @@ -1,8 +1,9 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 -inherit cmake-utils eutils gnome2-utils + +inherit cmake-utils DESCRIPTION="An open-source multiplatform software for playing card games over a network" HOMEPAGE="https://github.com/Cockatrice/Cockatrice" @@ -11,22 +12,25 @@ 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" +IUSE="+client +oracle server" -DEPEND=" - dev-libs/libgcrypt:0 +RDEPEND=" dev-libs/protobuf - dev-qt/linguist-tools:5 dev-qt/qtconcurrent:5 - dev-qt/qtprintsupport:5 dev-qt/qtcore:5 + dev-qt/qtgui:5 + dev-qt/qtnetwork:5[ssl] + dev-qt/qtwidgets:5 client? ( - dev-qt/qtgui:5 dev-qt/qtmultimedia:5 - dev-qt/qtsvg:5 ) - oracle? ( - sys-libs/zlib - )" + dev-qt/qtprintsupport:5 + dev-qt/qtsvg:5 + ) + oracle? ( sys-libs/zlib:= ) +" +DEPEND="${RDEPEND} + dev-qt/linguist-tools:5 +" # As the default help/about display the sha1 we need it SHA1='c96f234' @@ -42,6 +46,8 @@ src_configure() { -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!" + sed -e 's/^set(PROJECT_VERSION_FRIENDLY.*/set(PROJECT_VERSION_FRIENDLY \"'${SHA1}'\")/' \ + -i cmake/getversion.cmake || die "sed failed!" + cmake-utils_src_configure } |