diff options
author | Michał Górny <mgorny@gentoo.org> | 2011-01-14 13:36:28 +0000 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2011-01-14 13:36:28 +0000 |
commit | 3099cd64cdbc03ce3724c7bbc4dcc3e9729fd13c (patch) | |
tree | ec7ee74d0217d42beb9a83ac86d3ad1cc889d800 /x11-misc | |
parent | Convert ebuild version (diff) | |
download | gentoo-2-3099cd64cdbc03ce3724c7bbc4dcc3e9729fd13c.tar.gz gentoo-2-3099cd64cdbc03ce3724c7bbc4dcc3e9729fd13c.tar.bz2 gentoo-2-3099cd64cdbc03ce3724c7bbc4dcc3e9729fd13c.zip |
A new ebuild for sw-notify-send, a system-wide notify-send wrapper. Moved from Sunrise per bug #318961.
(Portage version: 2.2.0_alpha15_p1/cvs/Linux x86_64)
Diffstat (limited to 'x11-misc')
-rw-r--r-- | x11-misc/sw-notify-send/ChangeLog | 11 | ||||
-rw-r--r-- | x11-misc/sw-notify-send/metadata.xml | 16 | ||||
-rw-r--r-- | x11-misc/sw-notify-send/sw-notify-send-0.1.1.ebuild | 27 |
3 files changed, 54 insertions, 0 deletions
diff --git a/x11-misc/sw-notify-send/ChangeLog b/x11-misc/sw-notify-send/ChangeLog new file mode 100644 index 000000000000..fb6f870c4fdf --- /dev/null +++ b/x11-misc/sw-notify-send/ChangeLog @@ -0,0 +1,11 @@ +# ChangeLog for x11-misc/sw-notify-send +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/sw-notify-send/ChangeLog,v 1.1 2011/01/14 13:36:28 mgorny Exp $ + +*sw-notify-send-0.1.1 (14 Jan 2011) + + 14 Jan 2011; Michał Górny <mgorny@gentoo.org> +sw-notify-send-0.1.1.ebuild, + +metadata.xml: + A new ebuild for sw-notify-send, a system-wide notify-send wrapper. Moved + from Sunrise per bug #318961. + diff --git a/x11-misc/sw-notify-send/metadata.xml b/x11-misc/sw-notify-send/metadata.xml new file mode 100644 index 000000000000..03944ee1b05b --- /dev/null +++ b/x11-misc/sw-notify-send/metadata.xml @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>no-herd</herd> + <maintainer> + <email>mgorny@gentoo.org</email> + <name>Michał Górny</name> + </maintainer> + <upstream> + <maintainer status="active"> + <email>mgorny@gentoo.org</email> + <name>Michał Górny</name> + </maintainer> + <bugs-to>http://bugs.gentoo.org/enter_bug.cgi?product=Gentoo%20Linux&component=Applications&short_desc=x11-misc/sw-notify-send:%20</bugs-to> + </upstream> +</pkgmetadata> diff --git a/x11-misc/sw-notify-send/sw-notify-send-0.1.1.ebuild b/x11-misc/sw-notify-send/sw-notify-send-0.1.1.ebuild new file mode 100644 index 000000000000..d4deff72bbe6 --- /dev/null +++ b/x11-misc/sw-notify-send/sw-notify-send-0.1.1.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/sw-notify-send/sw-notify-send-0.1.1.ebuild,v 1.1 2011/01/14 13:36:28 mgorny Exp $ + +EAPI=3 +inherit autotools-utils + +DESCRIPTION="A system-wide notification wrapper for notify-send" +HOMEPAGE="https://github.com/mgorny/sw-notify-send/" +SRC_URI="http://cloud.github.com/downloads/mgorny/${PN}/${P}.tar.bz2" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +RDEPEND="sys-process/procps" +DEPEND="${RDEPEND}" + +# The lack of x11-libs/libnotify RDEPEND is intentional as: +# 1) The notification daemon may be running in a libnotify-enabled +# chroot system, while keeping the host system libnotify-free (in this +# case sw-notify-send enters the chroot first); +# 2) Having any kind of a notification daemon implies having libnotify +# installed. And if none is running, notify-send is not called anyway. + +DOCS=( README ) |