# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/games-board/xboard/xboard-4.2.7.ebuild,v 1.14 2006/10/20 22:14:59 tupone Exp $ inherit eutils games DESCRIPTION="GUI for gnuchess and for internet chess servers" HOMEPAGE="http://www.tim-mann.org/xboard.html" SRC_URI="mirror://gnu/xboard/${P}.tar.gz mirror://gentoo/${PN}.png http://dev.gentoo.org/~wolf31o2/sources/dump/${PN}.png" LICENSE="GPL-2" SLOT="0" KEYWORDS="alpha amd64 ppc ppc64 x86" IUSE="Xaw3d zippy" RESTRICT="test" #124112 RDEPEND="Xaw3d? ( x11-libs/Xaw3d ) x11-libs/libXaw x11-libs/libSM x11-libs/libX11 x11-libs/libXt x11-libs/libXmu x11-libs/libXext x11-libs/libICE" DEPEND="${RDEPEND} x11-proto/xproto" src_unpack() { unpack ${A} cd "${S}" epatch "${FILESDIR}"/${P}* } src_compile() { egamesconf $(use_with Xaw3d) \ $(use_enable zippy) || die "econf failed" emake || die "emake failed" } src_install() { make DESTDIR="${D}" install || die "make install failed" dodoc FAQ READ_ME ToDo ChangeLog* if use zippy; then dodoc zippy.README fi dohtml FAQ.html doicon ${DISTDIR}/xboard.png make_desktop_entry ${PN} "Xboard (Chess)" prepgamesdirs } pkg_postinst() { ewarn "No chess engine is emerged by default!" ewarn "If you want a chess engine to play with," ewarn "you can emerge gnuchess or crafty." ewarn "Read xboard FAQ for information." }