games-board/holdingnuts: Remove old
authorDavid Seifert <soap@gentoo.org>
Wed, 20 Dec 2017 21:30:15 +0000 (22:30 +0100)
committerDavid Seifert <soap@gentoo.org>
Thu, 21 Dec 2017 01:37:01 +0000 (02:37 +0100)
Package-Manager: Portage-2.3.16, Repoman-2.3.6

games-board/holdingnuts/holdingnuts-0.0.5-r1.ebuild [deleted file]

diff --git a/games-board/holdingnuts/holdingnuts-0.0.5-r1.ebuild b/games-board/holdingnuts/holdingnuts-0.0.5-r1.ebuild
deleted file mode 100644 (file)
index 837ec81..0000000
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit eutils cmake-utils games
-
-DESCRIPTION="An open source poker client and server"
-HOMEPAGE="http://www.holdingnuts.net/"
-SRC_URI="http://downloads.sourceforge.net/${PN}/${P}.tar.bz2"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="alsa debug dedicated"
-
-RDEPEND="
-       !dedicated? (
-               dev-qt/qtcore:4
-               dev-qt/qtgui:4
-               alsa? ( >=media-libs/libsdl-1.2.10:0[alsa] )
-       )"
-
-DEPEND="${RDEPEND}
-       >=dev-util/cmake-2.6.3"
-
-PATCHES=(
-       # upstream patch (bug #307901)
-       "${FILESDIR}"/${P}-wheel.patch
-)
-
-src_prepare() {
-       cmake-utils_src_prepare
-
-       sed -i -e '/^Path/d' holdingnuts.desktop || die
-}
-
-src_configure() {
-       local mycmakeargs="$(cmake-utils_use_enable alsa AUDIO)
-               $(cmake-utils_use_enable !dedicated CLIENT)
-               $(cmake-utils_use_enable debug DEBUG)"
-
-       mycmakeargs="${mycmakeargs}
-               -DCMAKE_INSTALL_PREFIX=${GAMES_PREFIX}
-               -DCMAKE_DATA_PATH=${GAMES_DATADIR}"
-
-       cmake-utils_src_configure
-}
-
-src_install() {
-       cmake-utils_src_install
-
-       if ! use dedicated ; then
-               domenu ${PN}.desktop
-               doicon ${PN}.png
-               doman docs/${PN}.6
-       fi
-
-       dodoc ChangeLog docs/protocol_spec.txt
-       doman docs/${PN}-server.6
-
-       prepgamesdirs
-}