blob: 50ecce31b0f0ec788f30fbf95179b8c3a72c698d (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/xfce4-notifyd/xfce4-notifyd-0.1.0.ebuild,v 1.3 2009/05/01 04:21:49 darkside Exp $
EAPI=1
inherit xfce4
XFCE_VERSION="4.6"
DESCRIPTION="Xfce4 notification daemon"
HOMEPAGE="http://spuriousinterrupt.org/projects/xfce4-notifyd"
SRC_URI="http://spuriousinterrupt.org/files/${PN}/${P}.tar.bz2"
KEYWORDS="~amd64 ~x86"
IUSE="debug libsexy"
RDEPEND="dev-libs/dbus-glib
gnome-base/libglade
>=x11-libs/gtk+-2.10:2
>=xfce-base/libxfce4util-${XFCE_VERSION}
>=xfce-base/libxfcegui4-${XFCE_VERSION}
>=xfce-base/xfconf-${XFCE_VERSION}
libsexy? ( x11-libs/libsexy )"
DEPEND="${RDEPEND}
dev-util/intltool
!x11-misc/notification-daemon
!xfce-extra/notification-daemon-xfce"
DOCS="AUTHORS ChangeLog NEWS README TODO"
pkg_setup() {
XFCE_CONFIG=" $(use_enable libsexy) --enable-maintainer-mode"
}
|