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 C5B60138A6C for ; Fri, 3 Apr 2015 17:54:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 90078E096E; Fri, 3 Apr 2015 17:54:00 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 299EBE096E for ; Fri, 3 Apr 2015 17:54:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1E6AF34087C for ; Fri, 3 Apr 2015 17:53:59 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A030015232 for ; Fri, 3 Apr 2015 17:53:53 +0000 (UTC) From: "Guillaume Horel" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Guillaume Horel" Message-ID: <1428056670.033b8667adbc9d96960d27e1130ae4e6b09e9d1e.guillaume_horel@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: media-libs/OpenMOIV/ X-VCS-Repository: proj/sci X-VCS-Files: media-libs/OpenMOIV/ChangeLog media-libs/OpenMOIV/OpenMOIV-1.0.3a.ebuild X-VCS-Directories: media-libs/OpenMOIV/ X-VCS-Committer: guillaume_horel X-VCS-Committer-Name: Guillaume Horel X-VCS-Revision: 033b8667adbc9d96960d27e1130ae4e6b09e9d1e X-VCS-Branch: master Date: Fri, 3 Apr 2015 17:53:53 +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: 213cc6c0-52d1-429d-ae44-609716b63a75 X-Archives-Hash: fd6d14ec6dba7639b2ed09ab0eb76b07 commit: 033b8667adbc9d96960d27e1130ae4e6b09e9d1e Author: Marius Brehler linux sungazer de> AuthorDate: Fri Apr 3 10:24:30 2015 +0000 Commit: Guillaume Horel gmail com> CommitDate: Fri Apr 3 10:24:30 2015 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=033b8667 media-libs/OpenMOIV: Bump to EAPI=5 Package-Manager: portage-2.2.14 media-libs/OpenMOIV/ChangeLog | 6 ++++++ media-libs/OpenMOIV/OpenMOIV-1.0.3a.ebuild | 14 +++++--------- 2 files changed, 11 insertions(+), 9 deletions(-) diff --git a/media-libs/OpenMOIV/ChangeLog b/media-libs/OpenMOIV/ChangeLog new file mode 100644 index 0000000..678a961 --- /dev/null +++ b/media-libs/OpenMOIV/ChangeLog @@ -0,0 +1,6 @@ +# ChangeLog for media-libs/OpenMOIV +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: $ + + 03 Apr 2015; Marius Brehler OpenMOIV-1.0.3a.ebuild: + Bump to EAPI=5 diff --git a/media-libs/OpenMOIV/OpenMOIV-1.0.3a.ebuild b/media-libs/OpenMOIV/OpenMOIV-1.0.3a.ebuild index 8ef1a1c..c54aa76 100644 --- a/media-libs/OpenMOIV/OpenMOIV-1.0.3a.ebuild +++ b/media-libs/OpenMOIV/OpenMOIV-1.0.3a.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ -EAPI="4" +EAPI=5 inherit cmake-utils @@ -14,11 +14,7 @@ LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="~x86 ~amd64" -IUSE="" - -RDEPEND=" - media-libs/coin - " +RDEPEND="media-libs/coin" DEPEND="${RDEPEND}" S="${WORKDIR}/${PN}.src.${PV/a//}" @@ -35,8 +31,8 @@ src_configure() { src_install() { insinto "/usr/$(get_libdir)" - doins "${CMAKE_BUILD_DIR}/libChemKit2.so" || die "doins for libChemKit2 failed" + doins "${CMAKE_BUILD_DIR}/libChemKit2.so" insinto "/usr/include" - doins -r "${S}/include/ChemKit2" || die "include install failed" + doins -r "${S}/include/ChemKit2" }