diff options
author | 2012-03-31 08:43:50 +0000 | |
---|---|---|
committer | 2012-03-31 08:43:50 +0000 | |
commit | 08d83a29aca3cc9beab28d28955d6d31f2f68b4f (patch) | |
tree | 8119a642c631c20adbfdeb4ca07f390b32a77d32 /x11-misc/notification-daemon | |
parent | Version bump. (diff) | |
download | gentoo-2-08d83a29aca3cc9beab28d28955d6d31f2f68b4f.tar.gz gentoo-2-08d83a29aca3cc9beab28d28955d6d31f2f68b4f.tar.bz2 gentoo-2-08d83a29aca3cc9beab28d28955d6d31f2f68b4f.zip |
Version bump.
(Portage version: 2.2.0_alpha96/cvs/Linux x86_64)
Diffstat (limited to 'x11-misc/notification-daemon')
-rw-r--r-- | x11-misc/notification-daemon/ChangeLog | 8 | ||||
-rw-r--r-- | x11-misc/notification-daemon/notification-daemon-0.7.4.ebuild | 43 |
2 files changed, 50 insertions, 1 deletions
diff --git a/x11-misc/notification-daemon/ChangeLog b/x11-misc/notification-daemon/ChangeLog index d1c814fda80e..45a1c7c4bcc9 100644 --- a/x11-misc/notification-daemon/ChangeLog +++ b/x11-misc/notification-daemon/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for x11-misc/notification-daemon # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/notification-daemon/ChangeLog,v 1.85 2012/01/28 02:17:07 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/notification-daemon/ChangeLog,v 1.86 2012/03/31 08:43:50 ssuominen Exp $ + +*notification-daemon-0.7.4 (31 Mar 2012) + + 31 Mar 2012; Samuli Suominen <ssuominen@gentoo.org> + +notification-daemon-0.7.4.ebuild: + Version bump. 28 Jan 2012; Samuli Suominen <ssuominen@gentoo.org> notification-daemon-0.5.0.ebuild, notification-daemon-0.7.3.ebuild: diff --git a/x11-misc/notification-daemon/notification-daemon-0.7.4.ebuild b/x11-misc/notification-daemon/notification-daemon-0.7.4.ebuild new file mode 100644 index 000000000000..94d57f674c89 --- /dev/null +++ b/x11-misc/notification-daemon/notification-daemon-0.7.4.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/notification-daemon/notification-daemon-0.7.4.ebuild,v 1.1 2012/03/31 08:43:50 ssuominen Exp $ + +EAPI=4 +inherit gnome.org + +DESCRIPTION="Notification daemon" +HOMEPAGE="http://git.gnome.org/browse/notification-daemon/" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris" +IUSE="" + +RDEPEND=">=dev-libs/glib-2.28 + x11-libs/gtk+:3 + sys-apps/dbus + media-libs/libcanberra[gtk3] + >=x11-libs/libnotify-0.7 + x11-libs/libX11 + !x11-misc/notify-osd + !x11-misc/qtnotifydaemon" +DEPEND="${RDEPEND} + app-arch/xz-utils + >=dev-util/intltool-0.40 + dev-util/pkgconfig + sys-devel/gettext" + +DOCS=( AUTHORS ChangeLog NEWS ) + +src_install() { + default + + cat <<-EOF > "${T}"/org.freedesktop.Notifications.service + [D-BUS Service] + Name=org.freedesktop.Notifications + Exec=/usr/libexec/notification-daemon + EOF + + insinto /usr/share/dbus-1/services + doins "${T}"/org.freedesktop.Notifications.service +} |