Version bump to 0.2, which is actually a tinynotify-send variant.
authorMichał Górny <mgorny@gentoo.org>
Sun, 21 Aug 2011 21:22:45 +0000 (21:22 +0000)
committerMichał Górny <mgorny@gentoo.org>
Sun, 21 Aug 2011 21:22:45 +0000 (21:22 +0000)
Package-Manager: portage-2.2.0_alpha51_p4/cvs/Linux x86_64

x11-misc/sw-notify-send/ChangeLog
x11-misc/sw-notify-send/sw-notify-send-0.2.ebuild [new file with mode: 0644]

index fb6f870c4fdf75e1ff4c140dc9b09f73960d4184..05e027639d5e2a4f99559f71598ee775290391ca 100644 (file)
@@ -1,6 +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 $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/sw-notify-send/ChangeLog,v 1.2 2011/08/21 21:22:45 mgorny Exp $
+
+*sw-notify-send-0.2 (21 Aug 2011)
+
+  21 Aug 2011; Michał Górny <mgorny@gentoo.org> +sw-notify-send-0.2.ebuild:
+  Version bump to 0.2, which is actually a tinynotify-send variant.
 
 *sw-notify-send-0.1.1 (14 Jan 2011)
 
diff --git a/x11-misc/sw-notify-send/sw-notify-send-0.2.ebuild b/x11-misc/sw-notify-send/sw-notify-send-0.2.ebuild
new file mode 100644 (file)
index 0000000..6fd8f43
--- /dev/null
@@ -0,0 +1,35 @@
+# 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.2.ebuild,v 1.1 2011/08/21 21:22:45 mgorny Exp $
+
+EAPI=4
+inherit autotools-utils
+
+MY_PN=tinynotify-send
+MY_P=${MY_PN}-${PV}
+
+DESCRIPTION="A system-wide variant of tinynotify-send"
+HOMEPAGE="https://github.com/mgorny/tinynotify-send/"
+SRC_URI="http://cloud.github.com/downloads/mgorny/${MY_PN}/${MY_P}.tar.bz2"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="x11-libs/libtinynotify
+       x11-libs/libtinynotify-cli
+       x11-libs/libtinynotify-systemwide"
+DEPEND="${RDEPEND}"
+
+DOCS=( README )
+S=${WORKDIR}/${MY_P}
+
+src_configure() {
+       myeconfargs=(
+               --disable-regular
+               --enable-system-wide
+       )
+
+       autotools-utils_src_configure
+}