diff options
Diffstat (limited to 'app-emulation')
-rw-r--r-- | app-emulation/vice/ChangeLog | 6 | ||||
-rw-r--r-- | app-emulation/vice/vice-2.1.ebuild | 10 |
2 files changed, 13 insertions, 3 deletions
diff --git a/app-emulation/vice/ChangeLog b/app-emulation/vice/ChangeLog index 33580763f84d..fa787fd1c0e4 100644 --- a/app-emulation/vice/ChangeLog +++ b/app-emulation/vice/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-emulation/vice # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/vice/ChangeLog,v 1.66 2010/01/22 16:41:32 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/vice/ChangeLog,v 1.67 2010/03/08 18:52:38 ssuominen Exp $ + + 08 Mar 2010; Samuli Suominen <ssuominen@gentoo.org> vice-2.1.ebuild: + Don't check for obsolete png_check_sig function (because vice will + silently start using it's bundled copy). Required for libpng14. 22 Jan 2010; Samuli Suominen <ssuominen@gentoo.org> vice-2.1.ebuild: Require SLOT="0" of media-libs/jpeg for headers. diff --git a/app-emulation/vice/vice-2.1.ebuild b/app-emulation/vice/vice-2.1.ebuild index 55f17226bbed..d41ad6452355 100644 --- a/app-emulation/vice/vice-2.1.ebuild +++ b/app-emulation/vice/vice-2.1.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/vice/vice-2.1.ebuild,v 1.6 2010/01/22 16:41:32 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/vice/vice-2.1.ebuild,v 1.7 2010/03/08 18:52:38 ssuominen Exp $ EAPI=2 -inherit eutils games +inherit autotools eutils games DESCRIPTION="The Versatile Commodore 8-bit Emulator" HOMEPAGE="http://www.viceteam.org/" @@ -55,6 +55,12 @@ DEPEND="${RDEPEND} src_prepare() { epatch "${FILESDIR}"/${P}-gcc44.patch \ "${FILESDIR}"/${P}-xshm.patch + + sed -i \ + -e 's:png_check_sig:png_sig_cmp:g' \ + configure.in || die + + AT_NO_RECURSIVE=1 eautoreconf } src_configure() { |