diff options
author | Julian Ospald <hasufell@gentoo.org> | 2013-05-14 18:44:27 +0000 |
---|---|---|
committer | Julian Ospald <hasufell@gentoo.org> | 2013-05-14 18:44:27 +0000 |
commit | 4da99266d8749bc2bbd121a547055474ab690f58 (patch) | |
tree | da0a000cb8fdbe28e5cbe3e855971a39e8a027ba /games-board | |
parent | revbump, migrate -> distutils-r1, correction to dep list, fixed test phase (diff) | |
download | gentoo-2-4da99266d8749bc2bbd121a547055474ab690f58.tar.gz gentoo-2-4da99266d8749bc2bbd121a547055474ab690f58.tar.bz2 gentoo-2-4da99266d8749bc2bbd121a547055474ab690f58.zip |
remove all autotools stuff like autoreconf to fix bug #469796
(Portage version: 2.2.0_alpha174/cvs/Linux x86_64, signed Manifest commit with key E73C35B3)
Diffstat (limited to 'games-board')
-rw-r--r-- | games-board/awale/ChangeLog | 5 | ||||
-rw-r--r-- | games-board/awale/awale-1.5.ebuild | 15 |
2 files changed, 15 insertions, 5 deletions
diff --git a/games-board/awale/ChangeLog b/games-board/awale/ChangeLog index 9e6985436152..acb65ce06200 100644 --- a/games-board/awale/ChangeLog +++ b/games-board/awale/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-board/awale # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-board/awale/ChangeLog,v 1.2 2013/01/27 19:27:19 hasufell Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-board/awale/ChangeLog,v 1.3 2013/05/14 18:44:27 hasufell Exp $ + + 14 May 2013; Julian Ospald <hasufell@gentoo.org> awale-1.5.ebuild: + remove all autotools stuff like autoreconf to fix bug #469796 27 Jan 2013; Julian Ospald <hasufell@gentoo.org> awale-1.5.ebuild: make icon update depend on tk diff --git a/games-board/awale/awale-1.5.ebuild b/games-board/awale/awale-1.5.ebuild index 9d94b4759e61..c5845cfd7fc4 100644 --- a/games-board/awale/awale-1.5.ebuild +++ b/games-board/awale/awale-1.5.ebuild @@ -1,13 +1,18 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-board/awale/awale-1.5.ebuild,v 1.2 2013/01/27 19:27:19 hasufell Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-board/awale/awale-1.5.ebuild,v 1.3 2013/05/14 18:44:27 hasufell Exp $ + +# do not use autotools related stuff in stable ebuilds +# unless you like random breakage: 469796, 469798, 424041 EAPI=5 -inherit autotools eutils gnome2-utils games +inherit eutils gnome2-utils games # STABLE ARCH +# inherit autotools eutils gnome2-utils games # UNSTABLE ARCH DESCRIPTION="Free Awale - The game of all Africa" HOMEPAGE="http://www.nongnu.org/awale/" SRC_URI="mirror://nongnu/awale/${P}.tar.gz" +SRC_URI="${SRC_URI} http://dev.gentoo.org/~hasufell/distfiles/${P}-avoid-autoreconf.patch.xz" # STABLE ARCH LICENSE="GPL-2" SLOT="0" @@ -18,9 +23,11 @@ RDEPEND="tk? ( dev-lang/tcl dev-lang/tk )" src_prepare() { epatch "${FILESDIR}"/${P}-build.patch - mv configure.in configure.ac || die + epatch "${DISTDIR}"/${P}-avoid-autoreconf.patch.xz # STABLE ARCH + mv src/xawale.tcl src/xawale.tcl.in || die - eautoreconf +# mv configure.in configure.ac || die # UNSTABLE ARCH +# eautoreconf # UNSTABLE ARCH } src_configure() { |