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 1RMW4k-0005Ao-RI for garchives@archives.gentoo.org; Sat, 05 Nov 2011 02:33:43 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CA56221C032; Sat, 5 Nov 2011 02:33:33 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 9CEDE21C032 for ; Sat, 5 Nov 2011 02:33:33 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 086851B4024 for ; Sat, 5 Nov 2011 02:33:33 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 194CC80042 for ; Sat, 5 Nov 2011 02:33:32 +0000 (UTC) From: "Christoph Junghans" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Christoph Junghans" Message-ID: <16d9a40433142d529a9642364ce8a42c8822753e.kleiner_otti@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-libs/votca-tools/ X-VCS-Repository: proj/sci X-VCS-Files: sci-libs/votca-tools/ChangeLog sci-libs/votca-tools/votca-tools-9999.ebuild X-VCS-Directories: sci-libs/votca-tools/ X-VCS-Committer: kleiner_otti X-VCS-Committer-Name: Christoph Junghans X-VCS-Revision: 16d9a40433142d529a9642364ce8a42c8822753e Date: Sat, 5 Nov 2011 02:33:32 +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: 6710d469-9d75-40e3-8356-318614cca5e1 X-Archives-Hash: 53f1557fae004ed0894b57bba08664ca commit: 16d9a40433142d529a9642364ce8a42c8822753e Author: Christoph Junghans gentoo org> AuthorDate: Sat Nov 5 02:24:50 2011 +0000 Commit: Christoph Junghans gmx de> CommitDate: Sat Nov 5 02:24:50 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/sci.git;a=3Dc= ommit;h=3D16d9a404 EAPI bump + multilib support (Portage version: 2.2.0_alpha72/git/Linux i686, signed Manifest commit wi= th key C2000586) --- sci-libs/votca-tools/ChangeLog | 3 +++ sci-libs/votca-tools/votca-tools-9999.ebuild | 16 ++++++++-------- 2 files changed, 11 insertions(+), 8 deletions(-) diff --git a/sci-libs/votca-tools/ChangeLog b/sci-libs/votca-tools/Change= Log index 2eef863..1c72cc1 100644 --- a/sci-libs/votca-tools/ChangeLog +++ b/sci-libs/votca-tools/ChangeLog @@ -2,6 +2,9 @@ # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ =20 + 05 Nov 2011; Christoph Junghans votca-tools-9999.e= build: + EAPI bump + multilib support + 03 Nov 2011; Christoph Junghans votca-tools-9999.e= build: live ebuild update =20 diff --git a/sci-libs/votca-tools/votca-tools-9999.ebuild b/sci-libs/votc= a-tools/votca-tools-9999.ebuild index 97ee2fa..ccda981 100644 --- a/sci-libs/votca-tools/votca-tools-9999.ebuild +++ b/sci-libs/votca-tools/votca-tools-9999.ebuild @@ -2,9 +2,9 @@ # Distributed under the terms of the GNU General Public License v2 # $Header: $ =20 -EAPI=3D"3" +EAPI=3D4 =20 -inherit cmake-utils eutils +inherit cmake-utils eutils multilib =20 if [ "${PV}" !=3D "9999" ]; then SRC_URI=3D"system-boost? ( http://votca.googlecode.com/files/${PF}_pris= tine.tar.gz ) @@ -56,16 +56,16 @@ src_configure() { $(cmake-utils_use_with fftw FFTW) $(cmake-utils_use_with sqlite SQLITE3) -DWITH_RC_FILES=3DOFF + -DLIB=3D$(get_libdir) ) - cmake-utils_src_configure || die + cmake-utils_src_configure } =20 src_install() { - cmake-utils_src_install || die + cmake-utils_src_install if use doc; then - cd "${CMAKE_BUILD_DIR}" || die - cd share/doc || die - doxygen || die - dohtml -r html/* || die + cd "${CMAKE_BUILD_DIR}" + emake html + dohtml -r share/doc/html/* fi }