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 4E95B138A1A for ; Mon, 12 Jan 2015 00:00:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ADFFFE081E; Mon, 12 Jan 2015 00:00:30 +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 C86EFE0823 for ; Mon, 12 Jan 2015 00:00:29 +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 BF5BD3406A3 for ; Mon, 12 Jan 2015 00:00:27 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EF28DF61C for ; Mon, 12 Jan 2015 00:00:24 +0000 (UTC) From: "Christoph Junghans" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Christoph Junghans" Message-ID: <1421004018.dcd5d3dc0591ee0dfaf689ddd4e8e043c0797677.ottxor@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-libs/matio/ X-VCS-Repository: proj/sci X-VCS-Files: sci-libs/matio/matio-1.3.4.ebuild X-VCS-Directories: sci-libs/matio/ X-VCS-Committer: ottxor X-VCS-Committer-Name: Christoph Junghans X-VCS-Revision: dcd5d3dc0591ee0dfaf689ddd4e8e043c0797677 X-VCS-Branch: master Date: Mon, 12 Jan 2015 00:00:24 +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: 0e514a7c-9423-4352-8b18-445c6f7f4a11 X-Archives-Hash: 5e68937566aa015c91478a8e7f78c615 commit: dcd5d3dc0591ee0dfaf689ddd4e8e043c0797677 Author: Marius Brehler linux sungazer de> AuthorDate: Sun Jan 11 19:20:18 2015 +0000 Commit: Christoph Junghans gentoo org> CommitDate: Sun Jan 11 19:20:18 2015 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=dcd5d3dc sci-libs/matio: Further fixes --- sci-libs/matio/matio-1.3.4.ebuild | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/sci-libs/matio/matio-1.3.4.ebuild b/sci-libs/matio/matio-1.3.4.ebuild index 8471e8c..8d2b050 100644 --- a/sci-libs/matio/matio-1.3.4.ebuild +++ b/sci-libs/matio/matio-1.3.4.ebuild @@ -22,27 +22,22 @@ PATCHES=( "${FILESDIR}/${P}"-autotools.patch ) src_configure() { local myeconfargs=( - --docdir="${EPREFIX}/usr/share/doc/${PF}" \ - --enable-shared \ - --disable-test \ - $(use_enable fortran) \ - #$(use_enable doc docs) \ - $(use_enable static-libs static) + --disable-test + #$(use_enable doc docs) ) autotools-utils_src_configure } src_install() { autotools-utils_src_install - dodoc README ChangeLog #if use doc; then # insinto /usr/share/doc/${PF} # doins -r doxygen/html || die #fi if use examples; then insinto /usr/share/doc/${PF}/examples - doins test/test* || die + doins test/test* insinto /usr/share/${PN} - doins share/test* || die + doins share/test* fi }