summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuli Suominen <ssuominen@gentoo.org>2010-03-08 18:52:38 +0000
committerSamuli Suominen <ssuominen@gentoo.org>2010-03-08 18:52:38 +0000
commitd19d8e42f2fa71278e972b783258a42309af5ada (patch)
tree5153c18c12839efcbbf6a7cb4d2dd914ae701456 /app-emulation/vice
parentFixed inability to build irc-mode, thank Zdenek Behan for report and Ivan Pon... (diff)
downloadgentoo-2-d19d8e42f2fa71278e972b783258a42309af5ada.tar.gz
gentoo-2-d19d8e42f2fa71278e972b783258a42309af5ada.tar.bz2
gentoo-2-d19d8e42f2fa71278e972b783258a42309af5ada.zip
Don't check for obsolete png_check_sig function (because vice will silently start using it's bundled copy). Required for libpng14.
(Portage version: 2.2_rc65/cvs/Linux x86_64)
Diffstat (limited to 'app-emulation/vice')
-rw-r--r--app-emulation/vice/ChangeLog6
-rw-r--r--app-emulation/vice/vice-2.1.ebuild10
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() {