blob: b4cd53a724a71c1e43444e379a0baeaf60ada352 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-process/supervise-scripts/supervise-scripts-3.5.ebuild,v 1.2 2005/03/03 18:38:32 ciaranm Exp $
inherit fixheadtails toolchain-funcs
DESCRIPTION="Starting and stopping daemontools managed services"
HOMEPAGE="http://untroubled.org/supervise-scripts/"
SRC_URI="http://untroubled.org/supervise-scripts/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 ppc sparc x86"
IUSE=""
RDEPEND=">=sys-process/daemontools-0.70"
DEPEND=">=sys-process/daemontools-0.70
dev-libs/bglibs
sys-devel/gcc-config"
src_unpack() {
unpack ${A}
cd ${S}
echo '/usr/bin' > conf-bin
echo '/usr/lib/bglibs/lib' > conf-bglibs
echo '/usr/lib/bglibs/include' > conf-bgincs
echo "$(tc-getCC) ${CFLAGS}" >conf-cc
echo "$(tc-getCC) ${LDFLAGS}" >conf-ld
ht_fix_file svscan-add-to-inittab.in Makefile
}
src_compile() {
# does NOT support parallel make
make || die
}
src_install() {
dobin svc-add svc-isdown svc-isup svc-remove \
svc-start svc-status svc-stop svc-restart \
svc-waitdown svc-waitup svscan-add-to-inittab \
svscan-add-to-inittab svscan-start svscan-stopall || die
dodoc ANNOUNCEMENT ChangeLog NEWS README TODO VERSION
doman *.[0-9]
}
|