blob: 8081b909502d54d0b453d733c10ebe6bee549939 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-process/daemontools-encore/daemontools-encore-1.05.ebuild,v 1.1 2011/01/28 22:11:08 bangert Exp $
EAPI=3
inherit flag-o-matic qmail
DESCRIPTION="Collection of tools for managing UNIX services"
HOMEPAGE="http://untroubled.org/daemontools-encore/"
SRC_URI="${HOMEPAGE}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE="selinux static"
DEPEND=""
RDEPEND="selinux? ( sec-policy/selinux-daemontools )
!sys-process/daemontools
!app-doc/daemontools-man"
src_compile() {
use static && append-ldflags -static
qmail_set_cc
emake || die
}
src_install() {
keepdir /service
echo ${D}/usr/bin >conf-bin
echo ${D}/usr/share/man >conf-man
dodir /usr/bin
dodir /usr/share/man
emake install || die
dodoc ChangeLog CHANGES CHANGES.djb README TODO
newinitd "${FILESDIR}"/svscan.init-1.02 svscan || die
}
pkg_postinst() {
einfo
einfo "You can run daemontools using the svscan init.d script,"
einfo "or you could run it through inittab."
einfo "To use inittab, emerge supervise-scripts and run:"
einfo "svscan-add-to-inittab"
einfo "Then you can hup init with the command telinit q"
einfo
}
|