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 22A9F138353 for ; Thu, 23 Jan 2020 10:25:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 647EBE0893; Thu, 23 Jan 2020 10:25:10 +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 49656E0893 for ; Thu, 23 Jan 2020 10:25:10 +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 43ADF34E3E2 for ; Thu, 23 Jan 2020 10:25:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 030ABF0 for ; Thu, 23 Jan 2020 10:25:08 +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: <1579775106.c62ff4e60d02a91e341099f82c75977dba84aae2.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-9999.ebuild X-VCS-Directories: x11-misc/dunst/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: c62ff4e60d02a91e341099f82c75977dba84aae2 X-VCS-Branch: master Date: Thu, 23 Jan 2020 10:25:08 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: b0b47977-ca6d-4d15-9fa7-ad069047ee9e X-Archives-Hash: 64a44bfa93026498c430227538f7550f commit: c62ff4e60d02a91e341099f82c75977dba84aae2 Author: Jeroen Roovers gentoo org> AuthorDate: Thu Jan 23 10:24:49 2020 +0000 Commit: Jeroen Roovers gentoo org> CommitDate: Thu Jan 23 10:25:06 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c62ff4e6 x11-misc/dunst: Add live ebuild Package-Manager: Portage-2.3.84, Repoman-2.3.20 Signed-off-by: Jeroen Roovers gentoo.org> x11-misc/dunst/dunst-9999.ebuild | 53 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) diff --git a/x11-misc/dunst/dunst-9999.ebuild b/x11-misc/dunst/dunst-9999.ebuild new file mode 100644 index 00000000000..e756b3ec1f8 --- /dev/null +++ b/x11-misc/dunst/dunst-9999.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit git-r3 toolchain-funcs + +DESCRIPTION="Customizable and lightweight notification-daemon" +HOMEPAGE="https://dunst-project.org/ https://github.com/dunst-project/dunst" +EGIT_REPO_URI="https://github.com/${PN}-project/${PN}" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="" +IUSE="dunstify" + +CDEPEND=" + dev-libs/glib:2 + sys-apps/dbus + x11-libs/cairo[X,glib] + x11-libs/gdk-pixbuf + x11-libs/libX11 + x11-libs/libXScrnSaver + x11-libs/libXinerama + x11-libs/libXrandr + x11-libs/pango[X] + dunstify? ( x11-libs/libnotify ) +" +DEPEND=" + ${CDEPEND} + dev-lang/perl + virtual/pkgconfig +" +RDEPEND="${CDEPEND}" + +src_prepare() { + sed -i -e "/^CFLAGS/ { s:-g::;s:-O.:: }" config.mk || die + + default +} + +src_compile() { + tc-export CC + emake + use dunstify && emake dunstify +} + +src_install() { + emake DESTDIR="${D}" PREFIX="/usr" install + + use dunstify && dobin dunstify + + dodoc AUTHORS CHANGELOG.md README.md RELEASE_NOTES +}