diff options
author | Benedikt Böhm <bb@xnull.de> | 2011-04-15 17:10:02 +0200 |
---|---|---|
committer | Benedikt Böhm <bb@xnull.de> | 2011-04-15 17:10:02 +0200 |
commit | eac252dcebca7adb5053bdac8a7d85d01640712b (patch) | |
tree | f6e316af33efa3a270582fc039df5e7e0d932af5 /sys-process | |
parent | Merge branch 'master' of git.overlays.gentoo.org:proj/betagarden (diff) | |
download | betagarden-eac252dcebca7adb5053bdac8a7d85d01640712b.tar.gz betagarden-eac252dcebca7adb5053bdac8a7d85d01640712b.tar.bz2 betagarden-eac252dcebca7adb5053bdac8a7d85d01640712b.zip |
add sys-process/mutiwatch-1.0.0
Diffstat (limited to 'sys-process')
-rw-r--r-- | sys-process/multiwatch/Manifest | 1 | ||||
-rw-r--r-- | sys-process/multiwatch/multiwatch-1.0.0.ebuild | 30 |
2 files changed, 31 insertions, 0 deletions
diff --git a/sys-process/multiwatch/Manifest b/sys-process/multiwatch/Manifest new file mode 100644 index 0000000..90b38c8 --- /dev/null +++ b/sys-process/multiwatch/Manifest @@ -0,0 +1 @@ +EBUILD multiwatch-1.0.0.ebuild 580 RMD160 a1382e45df0b9661c112a494df530ab4df7ffc3e SHA1 4e9c8614090c6c7ff202bc0d8946e69f25bf91c0 SHA256 bbbe1874e65da36148d6aeac399ff2ffd4680ed74121becbbfe8b94d001d7819 diff --git a/sys-process/multiwatch/multiwatch-1.0.0.ebuild b/sys-process/multiwatch/multiwatch-1.0.0.ebuild new file mode 100644 index 0000000..f703d87 --- /dev/null +++ b/sys-process/multiwatch/multiwatch-1.0.0.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=4 + +inherit autotools git + +DESCRIPTION="multiwatch forks and watches multiple instances of a program" +HOMEPAGE="http://redmine.lighttpd.net/projects/multiwatch" +EGIT_REPO_URI="git://git.lighttpd.net/multiwatch.git" +EGIT_COMMIT="80d85493" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="amd64 ~x86" +IUSE="" + +DEPEND="dev-libs/libev + dev-libs/glib:2" +RDEPEND="${DEPEND}" + +src_prepare() { + eautoreconf +} + +src_install() { + emake DESTDIR="${D}" install + doman multiwatch.1 +} |