diff options
author | Ryan Phillips <rphillips@gentoo.org> | 2002-06-21 20:57:52 +0000 |
---|---|---|
committer | Ryan Phillips <rphillips@gentoo.org> | 2002-06-21 20:57:52 +0000 |
commit | c4bf7461d22c65d0c3d292e73ba8ad0fc26f364e (patch) | |
tree | 45f7c146a5b4ddae6fc0b6b6a105b40088b3fa8f /sys-apps/supervise-scripts | |
parent | updated arch detect setup (diff) | |
download | historical-c4bf7461d22c65d0c3d292e73ba8ad0fc26f364e.tar.gz historical-c4bf7461d22c65d0c3d292e73ba8ad0fc26f364e.tar.bz2 historical-c4bf7461d22c65d0c3d292e73ba8ad0fc26f364e.zip |
New package. Fixes #3684
Diffstat (limited to 'sys-apps/supervise-scripts')
-rw-r--r-- | sys-apps/supervise-scripts/ChangeLog | 13 | ||||
-rw-r--r-- | sys-apps/supervise-scripts/files/digest-supervise-scripts-3.4 | 1 | ||||
-rw-r--r-- | sys-apps/supervise-scripts/supervise-scripts-3.4.ebuild | 21 |
3 files changed, 35 insertions, 0 deletions
diff --git a/sys-apps/supervise-scripts/ChangeLog b/sys-apps/supervise-scripts/ChangeLog new file mode 100644 index 000000000000..aa579a44ad3b --- /dev/null +++ b/sys-apps/supervise-scripts/ChangeLog @@ -0,0 +1,13 @@ +# ChangeLog for sys-apps/supervise-scripts +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL +# $Header: /var/cvsroot/gentoo-x86/sys-apps/supervise-scripts/ChangeLog,v 1.1 2002/06/21 20:57:52 rphillips Exp $ + +*supervise-scripts-3.4 (21 Jun 2002) + + 21 Jun 2002; Ryan Phillips <rphillips@gentoo.org> ChangeLog : + + Added initial ChangeLog which should be updated whenever the package is + updated in any way. This changelog is targetted to users. This means that the + comments should well explained and written in clean English. The details about + writing correct changelogs are explained in the skel.ChangeLog file which you + can find in the root directory of the portage repository. diff --git a/sys-apps/supervise-scripts/files/digest-supervise-scripts-3.4 b/sys-apps/supervise-scripts/files/digest-supervise-scripts-3.4 new file mode 100644 index 000000000000..9b2424fedc7a --- /dev/null +++ b/sys-apps/supervise-scripts/files/digest-supervise-scripts-3.4 @@ -0,0 +1 @@ +MD5 bb09a82728687fed581e88f7614c86ff supervise-scripts-3.4.tar.gz 16345 diff --git a/sys-apps/supervise-scripts/supervise-scripts-3.4.ebuild b/sys-apps/supervise-scripts/supervise-scripts-3.4.ebuild new file mode 100644 index 000000000000..04652e27a349 --- /dev/null +++ b/sys-apps/supervise-scripts/supervise-scripts-3.4.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 +# Maintainer: Stoyan Zhekov <zhware@hotpop.com> +# $Header: /var/cvsroot/gentoo-x86/sys-apps/supervise-scripts/supervise-scripts-3.4.ebuild,v 1.1 2002/06/21 20:57:52 rphillips Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="Starting and stopping daemontools managed services." +SRC_URI="http://untroubled.org/supervise-scripts/${P}.tar.gz" +HOMEPAGE="http://untroubled.org/supervice-scripts/" +RDEPENDS=">=sys-apps/daemontools-0.70" + +src_compile() { + emake || die +} + +src_install () { + exeinto /usr/bin + doexe svc-add svc-isdown svc-isup svc-remove \ + svc-start svc-status svc-stop \ + svc-waitdown svc-waitup svscan-add-to-inittab +} |