diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2010-04-25 23:30:46 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2010-04-25 23:30:46 +0000 |
commit | dbd7212aed013887c03ccc78842f90d05e850d0c (patch) | |
tree | 927d4367644f0594455359cc7e82348a236f768b /games-board/xboard/xboard-4.4.3.ebuild | |
parent | Fix manifest (diff) | |
download | gentoo-2-dbd7212aed013887c03ccc78842f90d05e850d0c.tar.gz gentoo-2-dbd7212aed013887c03ccc78842f90d05e850d0c.tar.bz2 gentoo-2-dbd7212aed013887c03ccc78842f90d05e850d0c.zip |
version bump
(Portage version: 2.1.8.3/cvs/Linux i686)
Diffstat (limited to 'games-board/xboard/xboard-4.4.3.ebuild')
-rw-r--r-- | games-board/xboard/xboard-4.4.3.ebuild | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/games-board/xboard/xboard-4.4.3.ebuild b/games-board/xboard/xboard-4.4.3.ebuild new file mode 100644 index 000000000000..12bcff2ce7b0 --- /dev/null +++ b/games-board/xboard/xboard-4.4.3.ebuild @@ -0,0 +1,71 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-board/xboard/xboard-4.4.3.ebuild,v 1.1 2010/04/25 23:30:46 mr_bones_ Exp $ + +EAPI=2 +inherit autotools eutils games + +DESCRIPTION="GUI for gnuchess and for internet chess servers" +HOMEPAGE="http://www.gnu.org/software/xboard/" +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="~amd64 ~ppc ~ppc64 ~x86" +IUSE="Xaw3d +default-font zippy" +RESTRICT="test" #124112 + +RDEPEND="Xaw3d? ( x11-libs/Xaw3d ) + x11-libs/libXpm + x11-libs/libXaw + x11-libs/libSM + x11-libs/libX11 + x11-libs/libXt + x11-libs/libXmu + x11-libs/libXext + x11-libs/libICE + default-font? ( media-fonts/font-adobe-100dpi )" +DEPEND="${RDEPEND} + x11-proto/xproto" + +src_unpack() { + unpack ${P}.tar.gz +} + +src_prepare() { + epatch "${FILESDIR}"/${P}* + sed -i \ + -e '/icons/s:\$(datadir):/usr/share:' \ + Makefile.am \ + || die 'sed failed' + eautoreconf +} + +src_configure() { + egamesconf \ + --disable-dependency-tracking \ + $(use_with Xaw3d) \ + $(use_enable zippy) +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + dodoc AUTHORS COPYRIGHT ChangeLog NEWS README TODO ics-parsing.txt + use zippy && dodoc zippy.README + dohtml FAQ.html + doicon "${DISTDIR}"/xboard.png + make_desktop_entry ${PN} "Xboard (Chess)" + prepgamesdirs +} + +pkg_postinst() { + games_pkg_postinst + elog "No chess engines are emerged by default! If you want a chess engine" + elog "to play with, you can emerge gnuchess or crafty." + elog "Read xboard FAQ for information." + if ! use default-font ; then + ewarn "Read the xboard(6) man page for specifying the font for xboard to use." + fi +} |