diff options
author | Gilles Dartiguelongue <eva@gentoo.org> | 2011-01-24 23:22:25 +0000 |
---|---|---|
committer | Gilles Dartiguelongue <eva@gentoo.org> | 2011-01-24 23:22:25 +0000 |
commit | d4d52d38b1aca66c924bad94d49d1e66bdbab732 (patch) | |
tree | 91cf64811a4273999a46b404b238c46ea7c290e4 /x11-misc | |
parent | tidy (diff) | |
download | gentoo-2-d4d52d38b1aca66c924bad94d49d1e66bdbab732.tar.gz gentoo-2-d4d52d38b1aca66c924bad94d49d1e66bdbab732.tar.bz2 gentoo-2-d4d52d38b1aca66c924bad94d49d1e66bdbab732.zip |
Version bump. Drop libglade, replace gstreamer by libcanberra, lots of fixes and translation updates. Support notification spec v1.1.
(Portage version: 2.2.0_alpha19/cvs/Linux x86_64)
Diffstat (limited to 'x11-misc')
-rw-r--r-- | x11-misc/notification-daemon/ChangeLog | 11 | ||||
-rw-r--r-- | x11-misc/notification-daemon/notification-daemon-0.5.0.ebuild | 41 |
2 files changed, 50 insertions, 2 deletions
diff --git a/x11-misc/notification-daemon/ChangeLog b/x11-misc/notification-daemon/ChangeLog index 294249744bc8..c35f50c42b2a 100644 --- a/x11-misc/notification-daemon/ChangeLog +++ b/x11-misc/notification-daemon/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for x11-misc/notification-daemon -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/notification-daemon/ChangeLog,v 1.71 2010/07/20 15:49:48 jer Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/notification-daemon/ChangeLog,v 1.72 2011/01/24 23:22:25 eva Exp $ + +*notification-daemon-0.5.0 (24 Jan 2011) + + 24 Jan 2011; Gilles Dartiguelongue <eva@gentoo.org> + +notification-daemon-0.5.0.ebuild: + Version bump. Drop libglade, replace gstreamer by libcanberra, lots of fixes + and translation updates. Support notification spec v1.1. 20 Jul 2010; Jeroen Roovers <jer@gentoo.org> notification-daemon-0.4.0-r1.ebuild: diff --git a/x11-misc/notification-daemon/notification-daemon-0.5.0.ebuild b/x11-misc/notification-daemon/notification-daemon-0.5.0.ebuild new file mode 100644 index 000000000000..b5d8d27a216d --- /dev/null +++ b/x11-misc/notification-daemon/notification-daemon-0.5.0.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2011 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.5.0.ebuild,v 1.1 2011/01/24 23:22:25 eva Exp $ + +EAPI="3" +GCONF_DEBUG="no" + +inherit gnome2 + +DESCRIPTION="Notifications daemon" +HOMEPAGE="http://www.galago-project.org/" + +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.4:2 + >=x11-libs/gtk+-2.18:2 + >=gnome-base/gconf-2.4 + >=dev-libs/dbus-glib-0.78 + >=sys-apps/dbus-1 + >=media-libs/libcanberra-0.4[gtk] + x11-libs/libnotify + x11-libs/libwnck + x11-libs/libX11 +" +DEPEND="${RDEPEND} + >=dev-util/intltool-0.40 + >=sys-devel/gettext-0.14 + !xfce-extra/xfce4-notifyd" + +pkg_setup() { + DOCS="AUTHORS ChangeLog NEWS" + G2CONF="${G2CONF} --disable-static" +} + +src_install() { + gnome2_src_install + find "${ED}" -name "*.la" -delete || die "la files removal failed" +} |