diff options
author | 2006-12-21 05:12:14 +0000 | |
---|---|---|
committer | 2006-12-21 05:12:14 +0000 | |
commit | c31515690919b8baf738a9395b072bbca4830f8a (patch) | |
tree | e68739dbf179beca690de0cbeec9f3dcfbbb2f9a /games-board/xboard/xboard-4.2.7-r1.ebuild | |
parent | gnome-1.x removal (diff) | |
download | gentoo-2-c31515690919b8baf738a9395b072bbca4830f8a.tar.gz gentoo-2-c31515690919b8baf738a9395b072bbca4830f8a.tar.bz2 gentoo-2-c31515690919b8baf738a9395b072bbca4830f8a.zip |
Add configure-fixup patch from Ali Polatel (bug #158488)
(Portage version: 2.1.1-r2)
Diffstat (limited to 'games-board/xboard/xboard-4.2.7-r1.ebuild')
-rw-r--r-- | games-board/xboard/xboard-4.2.7-r1.ebuild | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/games-board/xboard/xboard-4.2.7-r1.ebuild b/games-board/xboard/xboard-4.2.7-r1.ebuild index 131f26657e17..bb1b58da2fcc 100644 --- a/games-board/xboard/xboard-4.2.7-r1.ebuild +++ b/games-board/xboard/xboard-4.2.7-r1.ebuild @@ -1,8 +1,8 @@ # 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-r1.ebuild,v 1.1 2006/12/12 22:40:27 wolf31o2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-board/xboard/xboard-4.2.7-r1.ebuild,v 1.2 2006/12/21 05:12:14 mr_bones_ Exp $ -inherit eutils games +inherit autotools eutils games DESCRIPTION="GUI for gnuchess and for internet chess servers" HOMEPAGE="http://www.tim-mann.org/xboard.html" @@ -31,16 +31,19 @@ src_unpack() { unpack ${A} cd "${S}" epatch "${FILESDIR}"/${P}* + eautoreconf } src_compile() { - egamesconf $(use_with Xaw3d) \ - $(use_enable zippy) || die "econf failed" + egamesconf \ + $(use_with Xaw3d) \ + $(use_enable zippy) \ + || die emake || die "emake failed" } src_install() { - make DESTDIR="${D}" install || die "make install failed" + emake DESTDIR="${D}" install || die "emake install failed" dodoc FAQ READ_ME ToDo ChangeLog* use zippy && dodoc zippy.README dohtml FAQ.html |