From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id CA28B1381F3 for ; Mon, 20 May 2013 13:59:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B5961E0828; Mon, 20 May 2013 13:59:05 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 35137E0828 for ; Mon, 20 May 2013 13:59:05 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D476933E3A5 for ; Mon, 20 May 2013 13:59:03 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2335) id D474E2171D; Mon, 20 May 2013 13:59:01 +0000 (UTC) From: "Tom Wijsman (tomwij)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, tomwij@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in sci-geosciences/osm-gps-map: osm-gps-map-0.7.3.ebuild ChangeLog X-VCS-Repository: gentoo-x86 X-VCS-Files: osm-gps-map-0.7.3.ebuild ChangeLog X-VCS-Directories: sci-geosciences/osm-gps-map X-VCS-Committer: tomwij X-VCS-Committer-Name: Tom Wijsman Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20130520135901.D474E2171D@flycatcher.gentoo.org> Date: Mon, 20 May 2013 13:59:01 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 73e789ef-06ca-40fd-a1cb-432fe9d04f09 X-Archives-Hash: 1139b18518cd3725a6a434a586c8b4f6 tomwij 13/05/20 13:59:01 Modified: osm-gps-map-0.7.3.ebuild ChangeLog Log: Added missing python USE flag conditional in prepare phase, fixes compilation with USE=-python. (Portage version: 2.1.11.63/cvs/Linux x86_64, signed Manifest commit with key 6D34E57D) Revision Changes Path 1.5 sci-geosciences/osm-gps-map/osm-gps-map-0.7.3.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/osm-gps-map/osm-gps-map-0.7.3.ebuild?rev=1.5&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/osm-gps-map/osm-gps-map-0.7.3.ebuild?rev=1.5&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/osm-gps-map/osm-gps-map-0.7.3.ebuild?r1=1.4&r2=1.5 Index: osm-gps-map-0.7.3.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/sci-geosciences/osm-gps-map/osm-gps-map-0.7.3.ebuild,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- osm-gps-map-0.7.3.ebuild 21 Apr 2013 14:14:32 -0000 1.4 +++ osm-gps-map-0.7.3.ebuild 20 May 2013 13:59:01 -0000 1.5 @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/osm-gps-map/osm-gps-map-0.7.3.ebuild,v 1.4 2013/04/21 14:14:32 tomwij Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/osm-gps-map/osm-gps-map-0.7.3.ebuild,v 1.5 2013/05/20 13:59:01 tomwij Exp $ EAPI=5 @@ -39,7 +39,7 @@ PYTHON_S="${WORKDIR}/python-osmgpsmap-${PV}" src_configure() { - #configure script does not accept quoted EPREFIX... + # Configure script does not accept quoted EPREFIX... gnome2_src_configure \ $(use_enable introspection) \ --docdir=/usr/share/doc/${PF} \ @@ -54,14 +54,16 @@ gnome2_src_prepare - cd "${PYTHON_S}" || die - epatch "${FILESDIR}/${P}-fix-python-setup.py.patch" + if use python ; then + cd "${PYTHON_S}" || die + epatch "${FILESDIR}/${P}-fix-python-setup.py.patch" + fi } src_compile() { gnome2_src_compile - if use python; then + if use python ; then cd "${PYTHON_S}" || die CFLAGS="${CFLAGS} -I\"${S}\"/src" LDFLAGS="${LDFLAGS} -L\"${S}\"/src/.libs" distutils-r1_src_compile fi @@ -70,7 +72,7 @@ src_install() { gnome2_src_install - if use python; then + if use python ; then cd "${PYTHON_S}" || die distutils-r1_src_install fi 1.5 sci-geosciences/osm-gps-map/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/osm-gps-map/ChangeLog?rev=1.5&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/osm-gps-map/ChangeLog?rev=1.5&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/osm-gps-map/ChangeLog?r1=1.4&r2=1.5 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/sci-geosciences/osm-gps-map/ChangeLog,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- ChangeLog 21 Apr 2013 14:14:32 -0000 1.4 +++ ChangeLog 20 May 2013 13:59:01 -0000 1.5 @@ -1,6 +1,10 @@ # ChangeLog for sci-geosciences/osm-gps-map # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/osm-gps-map/ChangeLog,v 1.4 2013/04/21 14:14:32 tomwij Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/osm-gps-map/ChangeLog,v 1.5 2013/05/20 13:59:01 tomwij Exp $ + + 20 May 2013; Tom Wijsman osm-gps-map-0.7.3.ebuild: + Added missing python USE flag conditional in prepare phase, fixes compilation + with USE=-python. 21 Apr 2013; Tom Wijsman osm-gps-map-0.7.3.ebuild: Slotted dependencies to avoid breakage, fixes bug #464240.