diff options
author | 2005-01-03 03:16:38 +0000 | |
---|---|---|
committer | 2005-01-03 03:16:38 +0000 | |
commit | 27fa4b12b67d1242a3d8ee766e07a07a96561018 (patch) | |
tree | e2a40abac5dc888effbfd65c17163640c3ec45ed /games-board | |
parent | add hppa KEYWORDS #75746 (Manifest recommit) (diff) | |
download | gentoo-2-27fa4b12b67d1242a3d8ee766e07a07a96561018.tar.gz gentoo-2-27fa4b12b67d1242a3d8ee766e07a07a96561018.tar.bz2 gentoo-2-27fa4b12b67d1242a3d8ee766e07a07a96561018.zip |
Punt all the autotool crap and just fix the timestamp of configure.in #76473.
Diffstat (limited to 'games-board')
-rw-r--r-- | games-board/ace/ChangeLog | 7 | ||||
-rw-r--r-- | games-board/ace/ace-1.2-r1.ebuild | 25 |
2 files changed, 11 insertions, 21 deletions
diff --git a/games-board/ace/ChangeLog b/games-board/ace/ChangeLog index fad3062fcb0f..fec660a15092 100644 --- a/games-board/ace/ChangeLog +++ b/games-board/ace/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-board/ace -# Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-board/ace/ChangeLog,v 1.8 2004/12/28 12:03:49 josejx Exp $ +# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-board/ace/ChangeLog,v 1.9 2005/01/03 03:16:38 vapier Exp $ + + 02 Jan 2005; Mike Frysinger <vapier@gentoo.org> ace-1.2-r1.ebuild: + Punt all the autotool crap and just fix the timestamp of configure.in #76473. 28 Dec 2004; Joseph Jezak <josejx@gentoo.org> ace-1.2-r1.ebuild: Marked ppc stable. diff --git a/games-board/ace/ace-1.2-r1.ebuild b/games-board/ace/ace-1.2-r1.ebuild index c11d69d6f273..24a4df960c00 100644 --- a/games-board/ace/ace-1.2-r1.ebuild +++ b/games-board/ace/ace-1.2-r1.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2004 Gentoo Foundation +# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-board/ace/ace-1.2-r1.ebuild,v 1.10 2004/12/28 12:03:49 josejx Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-board/ace/ace-1.2-r1.ebuild,v 1.11 2005/01/03 03:16:38 vapier Exp $ -inherit eutils games +inherit games eutils DESCRIPTION="DJ Delorie's Ace of Penguins solitaire games" HOMEPAGE="http://www.delorie.com/store/ace/" @@ -10,33 +10,20 @@ SRC_URI="http://www.delorie.com/store/ace/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="x86 ppc ~sparc" +KEYWORDS="ppc sparc x86" IUSE="" RDEPEND="virtual/x11 media-libs/libpng sys-libs/zlib" -DEPEND="${RDEPEND} - >=sys-devel/libtool-1.3.4 - >=sys-apps/sed-4" src_unpack() { unpack ${A} cd ${S} epatch ${FILESDIR}/ace-1.2-check_for_end_of_game.patch -} - -src_compile() { - # bug #54701 - export WANT_AUTOMAKE=1.4 - egamesconf || die - for f in `grep 1.3.4 * -l` ; do - sed -i -e 's:1.3.4::' ${f} || die "sed ${f} failed" - done - emake || die "emake died (first pass)" - ./ltconfig ltmain.sh || die "./ltconfig failed" - emake || die "emake died (second pass)" + # Fix timestamps so we dont run autotools #76473 + touch -r aclocal.m4 configure.in } src_install() { |