From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1Qtsf6-0000XQ-3H for garchives@archives.gentoo.org; Thu, 18 Aug 2011 02:48:52 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4BA4621C0E8; Thu, 18 Aug 2011 02:48:45 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 1926221C0E8 for ; Thu, 18 Aug 2011 02:48:45 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7AC681B4077 for ; Thu, 18 Aug 2011 02:48:44 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2135) id 3FF7E20051; Thu, 18 Aug 2011 02:48:43 +0000 (UTC) From: "Jim Ramsay (lack)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, lack@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in eclass: vim.eclass X-VCS-Repository: gentoo-x86 X-VCS-Files: vim.eclass X-VCS-Directories: eclass X-VCS-Committer: lack X-VCS-Committer-Name: Jim Ramsay Content-Type: text/plain; charset=utf8 Message-Id: <20110818024843.3FF7E20051@flycatcher.gentoo.org> Date: Thu, 18 Aug 2011 02:48:43 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: 84fb6d36e59af18f6b449cc756fbf26e lack 11/08/18 02:48:43 Modified: vim.eclass Log: Bug #378107: Build with >=3Dperl-core/ExtUtils-ParseXS-3.20.0 =20 This just takes the patches from the above build and rolls a single sed= line into the eclass instead. Revision Changes Path 1.199 eclass/vim.eclass file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/vim.eclass?= rev=3D1.199&view=3Dmarkup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/vim.eclass?= rev=3D1.199&content-type=3Dtext/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/vim.eclass?= r1=3D1.198&r2=3D1.199 Index: vim.eclass =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /var/cvsroot/gentoo-x86/eclass/vim.eclass,v retrieving revision 1.198 retrieving revision 1.199 diff -u -r1.198 -r1.199 --- vim.eclass 13 Jul 2011 04:22:33 -0000 1.198 +++ vim.eclass 18 Aug 2011 02:48:43 -0000 1.199 @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/vim.eclass,v 1.198 2011/07/13 = 04:22:33 lack Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/vim.eclass,v 1.199 2011/08/18 = 02:48:43 lack Exp $ =20 # Authors: # Jim Ramsay @@ -356,6 +356,12 @@ if version_is_at_least 7.3.122; then cp "${S}"/src/config.mk.dist "${S}"/src/auto/config.mk fi + + # Bug #378107 - Build properly with >=3Dperl-core/ExtUtils-ParseXS-3.20= .0 + if version_is_at_least 7.3; then + sed -i 's:\$(PERLLIB)/ExtUtils/xsubpp:/usr/bin/xsubpp:' \ + "${S}"/src/Makefile || die 'sed for ExtUtils-ParseXS failed' + fi } =20 vim_src_unpack() {