blob: 3fe1d29fc90acb1a93d70845590c94c7a12ab442 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit eutils
DESCRIPTION="customizable and lightweight notification-daemon"
HOMEPAGE="http://www.knopwob.org/dunst/ https://github.com/dunst-project/dunst"
SRC_URI="https://github.com/${PN}-project/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="dunstify"
CDEPEND="
dev-libs/glib:2
dev-libs/libxdg-basedir
sys-apps/dbus
x11-libs/cairo[X,glib]
x11-libs/libXScrnSaver
x11-libs/libXft
x11-libs/libXinerama
x11-libs/pango[X]
dunstify? ( x11-libs/libnotify )
"
DEPEND="
${CDEPEND}
dev-lang/perl
virtual/pkgconfig
"
RDEPEND="${CDEPEND}"
src_prepare() {
default
# Remove nasty CFLAGS which override user choice
sed -i -e "/^CFLAGS/ { s:-g::;s:-O.:: }" config.mk || die
if use dunstify; then
# add dunstify to the all target
sed -i -e "/^all:/ s:$: dunstify:" Makefile || die
fi
}
src_install() {
emake DESTDIR="${D}" PREFIX="/usr" install
if use dunstify; then
dobin dunstify
fi
dodoc AUTHORS CHANGELOG.md README.md RELEASE_NOTES
}
|