commit:     2a6bbbdc37ddc1aa765eb2a12210e1162caa88c3
Author:     Austin English <wizardedit <AT> gentoo <DOT> org>
AuthorDate: Thu Sep  8 23:56:00 2016 +0000
Commit:     Austin English <wizardedit <AT> gentoo <DOT> org>
CommitDate: Wed Sep 14 17:26:33 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a6bbbdc

games-board/cockatrice: remove deprecated games eclass

Also update to EAPI 6

Gentoo-Bug: https://bugs.gentoo.org/574082

Package-Manager: portage-2.3.0

 .../cockatrice/cockatrice-20160506-r1.ebuild       | 65 ++++++++++++++++++++++
 1 file changed, 65 insertions(+)

diff --git a/games-board/cockatrice/cockatrice-20160506-r1.ebuild 
b/games-board/cockatrice/cockatrice-20160506-r1.ebuild
new file mode 100644
index 00000000..3fb686a
--- /dev/null
+++ b/games-board/cockatrice/cockatrice-20160506-r1.ebuild
@@ -0,0 +1,65 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+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="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/linguist-tools
+       dev-qt/qtconcurrent
+       dev-qt/qtcore:5
+       dev-qt/qtprintsupport
+       !dedicated? (
+               dev-qt/qtgui:5
+               dev-qt/qtmultimedia:5
+               dev-qt/qtsvg:5
+       )"
+
+src_configure() {
+       local mycmakeargs=(
+               $(usex dedicated "-DWITHOUT_CLIENT=1 -DWITH_SERVER=1" "$(usex 
server "-DWITH_SERVER=1" "")")
+               -DICONDIR="/usr/share/icons"
+               -DDESKTOPDIR="/usr/share/applications"
+       )
+
+       cmake-utils_src_configure
+}
+
+src_compile() {
+       cmake-utils_src_compile
+}
+
+src_install() {
+       cmake-utils_src_install
+}
+
+pkg_preinst() {
+       use dedicated || gnome2_icon_savelist
+}
+
+pkg_postinst() {
+       #FIXME:
+       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
+}

Reply via email to