From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 7016E138206 for ; Sun, 31 Dec 2017 12:44:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 715D4E0874; Sun, 31 Dec 2017 12:44:36 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 511A5E0874 for ; Sun, 31 Dec 2017 12:44:36 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 754F3335C37 for ; Sun, 31 Dec 2017 12:44:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BF4C9195 for ; Sun, 31 Dec 2017 12:44:33 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1514724228.9f55795f3595867b13576fb89301a0b19004adca.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/mm/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/mm/mm-1.4.2-r2.ebuild X-VCS-Directories: dev-libs/mm/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 9f55795f3595867b13576fb89301a0b19004adca X-VCS-Branch: master Date: Sun, 31 Dec 2017 12:44:33 +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: 379561eb-ffbf-433a-9429-cfdb25c85d6d X-Archives-Hash: f6926ac246cdd463e509ef77f43a81ef commit: 9f55795f3595867b13576fb89301a0b19004adca Author: David Seifert gentoo org> AuthorDate: Sun Dec 31 11:37:49 2017 +0000 Commit: David Seifert gentoo org> CommitDate: Sun Dec 31 12:43:48 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f55795f dev-libs/mm: Minor touchups Package-Manager: Portage-2.3.19, Repoman-2.3.6 dev-libs/mm/mm-1.4.2-r2.ebuild | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/dev-libs/mm/mm-1.4.2-r2.ebuild b/dev-libs/mm/mm-1.4.2-r2.ebuild index 405cb0a82e8..23b44f79179 100644 --- a/dev-libs/mm/mm-1.4.2-r2.ebuild +++ b/dev-libs/mm/mm-1.4.2-r2.ebuild @@ -13,10 +13,14 @@ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~spa IUSE="" src_prepare() { + default sed -i Makefile.in \ -e '/--mode=link/s| -o | $(LDFLAGS)&|g' \ || die "sed Makefile.in" - default +} + +src_configure() { + econf --disable-static } src_test() { @@ -24,11 +28,9 @@ src_test() { } src_install() { - emake install DESTDIR="${D}" - dodoc README ChangeLog INSTALL PORTING THANKS -} + default + dodoc PORTING -pkg_postinst() { - ewarn 'if you upgraded from mm-1.3 or earlier please run:' - ewarn "revdep-rebuild --library \"/usr/$(get_libdir)/libmm.so.13\"" + # no static archive installed + find "${D}" -name '*.la' -delete || die }