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 940271396D0 for ; Sat, 9 Sep 2017 12:32:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C39421FC052; Sat, 9 Sep 2017 12:32:56 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 A56EC1FC052 for ; Sat, 9 Sep 2017 12:32:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 A5F74341700 for ; Sat, 9 Sep 2017 12:32:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 25B869063 for ; Sat, 9 Sep 2017 12:32:54 +0000 (UTC) From: "Jeroen Roovers" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jeroen Roovers" Message-ID: <1504960365.be2939d93ac65776cd825462cd25d5f31241b44c.jer@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/dunst/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-misc/dunst/dunst-1.2.0.ebuild X-VCS-Directories: x11-misc/dunst/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: be2939d93ac65776cd825462cd25d5f31241b44c X-VCS-Branch: master Date: Sat, 9 Sep 2017 12:32:54 +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: 880ab412-74b9-4c46-92f3-4178b939d8ef X-Archives-Hash: 82c9d617146252bbf0ec6c4ab43b5278 commit: be2939d93ac65776cd825462cd25d5f31241b44c Author: Jeroen Roovers gentoo org> AuthorDate: Sat Sep 9 12:32:45 2017 +0000 Commit: Jeroen Roovers gentoo org> CommitDate: Sat Sep 9 12:32:45 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be2939d9 x11-misc/dunst: Fix src_install(). Package-Manager: Portage-2.3.8, Repoman-2.3.3 x11-misc/dunst/dunst-1.2.0.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/x11-misc/dunst/dunst-1.2.0.ebuild b/x11-misc/dunst/dunst-1.2.0.ebuild index 40b3555454b..ceff714d927 100644 --- a/x11-misc/dunst/dunst-1.2.0.ebuild +++ b/x11-misc/dunst/dunst-1.2.0.ebuild @@ -47,9 +47,9 @@ src_compile() { } src_install() { - default + emake DESTDIR="${D}" PREFIX="/usr" install - dunstify && dobin dunstify + use dunstify && dobin dunstify dodoc AUTHORS CHANGELOG.md README.md RELEASE_NOTES }