summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuli Suominen <ssuominen@gentoo.org>2009-07-22 07:32:43 +0000
committerSamuli Suominen <ssuominen@gentoo.org>2009-07-22 07:32:43 +0000
commit8f0084fc25f11d2c6aac1972932f9fac093a2595 (patch)
treee357f5fbab202c25d2eccca013f95eefd160bac3 /x11-misc
parentVersion bump from qtedge. (diff)
downloadgentoo-2-8f0084fc25f11d2c6aac1972932f9fac093a2595.tar.gz
gentoo-2-8f0084fc25f11d2c6aac1972932f9fac093a2595.tar.bz2
gentoo-2-8f0084fc25f11d2c6aac1972932f9fac093a2595.zip
Version bump (snapshot).
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'x11-misc')
-rw-r--r--x11-misc/xfce4-notifyd/ChangeLog8
-rw-r--r--x11-misc/xfce4-notifyd/xfce4-notifyd-0.1.0_p20090722.ebuild50
2 files changed, 57 insertions, 1 deletions
diff --git a/x11-misc/xfce4-notifyd/ChangeLog b/x11-misc/xfce4-notifyd/ChangeLog
index 9e3f48b3c28b..89b58bd3937c 100644
--- a/x11-misc/xfce4-notifyd/ChangeLog
+++ b/x11-misc/xfce4-notifyd/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for x11-misc/xfce4-notifyd
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/xfce4-notifyd/ChangeLog,v 1.4 2009/07/22 07:07:34 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/xfce4-notifyd/ChangeLog,v 1.5 2009/07/22 07:32:43 ssuominen Exp $
+
+*xfce4-notifyd-0.1.0_p20090722 (22 Jul 2009)
+
+ 22 Jul 2009; Samuli Suominen <ssuominen@gentoo.org>
+ +xfce4-notifyd-0.1.0_p20090722.ebuild:
+ Version bump (snapshot).
*xfce4-notifyd-0.1.0-r1 (22 Jul 2009)
diff --git a/x11-misc/xfce4-notifyd/xfce4-notifyd-0.1.0_p20090722.ebuild b/x11-misc/xfce4-notifyd/xfce4-notifyd-0.1.0_p20090722.ebuild
new file mode 100644
index 000000000000..e9dc25bae43d
--- /dev/null
+++ b/x11-misc/xfce4-notifyd/xfce4-notifyd-0.1.0_p20090722.ebuild
@@ -0,0 +1,50 @@
+# 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_p20090722.ebuild,v 1.1 2009/07/22 07:32:43 ssuominen Exp $
+
+EAPI=2
+inherit autotools
+
+DESCRIPTION="Xfce4 notification daemon"
+HOMEPAGE="http://spuriousinterrupt.org/projects/xfce4-notifyd"
+SRC_URI="http://dev.gentoo.org/~ssuominen/${P}.tar.bz2
+ mirror://gentoo/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="debug nls +libsexy"
+
+RDEPEND=">=dev-libs/dbus-glib-0.72
+ >=gnome-base/libglade-2.6
+ >=x11-libs/gtk+-2.10:2
+ >=xfce-base/libxfce4util-4.6
+ >=xfce-base/libxfcegui4-4.6
+ >=xfce-base/xfconf-4.6
+ libsexy? ( >=x11-libs/libsexy-0.1.6 )"
+DEPEND="${RDEPEND}
+ dev-util/pkgconfig
+ dev-util/xfce4-dev-tools
+ nls? ( dev-util/intltool
+ sys-devel/gettext )
+ !<x11-libs/libnotify-0.4.5
+ !x11-misc/notification-daemon
+ !xfce-extra/notification-daemon-xfce"
+
+src_prepare() {
+ AT_M4DIR="/usr/share/xfce4/dev-tools/m4macros" eautoreconf
+}
+
+src_configure() {
+ econf \
+ --enable-maintainer-mode \
+ --disable-dependency-tracking \
+ $(use_enable nls) \
+ $(use_enable libsexy) \
+ $(use_enable debug)
+}
+
+src_install() {
+ emake DESTDIR="${D}" install || die "emake install failed"
+ dodoc AUTHORS ChangeLog NEWS README TODO
+}