# Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ # This ebuild come from http://bugs.gentoo.org/show_bug.cgi?id=117374 - The site http://gentoo.zugaina.org/ only host a copy. inherit games DESCRIPTION="Extra cardsets for pysol game" HOMEPAGE="http://www.pysol.org/ http://packages.debian.org/stable/games/pysol-cardsets" SRC_URI="http://ftp.debian.org/debian/pool/main/p/pysol-cardsets/pysol-cardsets_${PV}.orig.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="amd64 ppc x86" IUSE="" RDEPEND="games-board/pysol" src_unpack() { unpack ${A} cd "${S}" # Removing cardsets already shipped with pysol-4.82-r1 package for cardset in cardset-2000 cardset-colossus cardset-hard-a-port \ cardset-hexadeck cardset-kintengu cardset-oxymoron cardset-tuxedo \ cardset-vienna-2k ; do rm -rf data/$cardset done } src_compile() { # einfo "No compilation neccessary" true } src_install() { cd "${S}" insinto "${GAMES_DATADIR}/pysol" doins -r data/* || die dodoc NEWS README prepgamesdirs }