You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sys-process/supervise-scripts/supervise-scripts-3.5.ebuild

46 lines
1.3 KiB

# Copyright 1999-2011 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.7 2011/01/29 23:14:00 bangert Exp $
inherit eutils fixheadtails toolchain-funcs
DESCRIPTION="Starting and stopping daemontools managed services"
HOMEPAGE="http://untroubled.org/supervise-scripts/"
SRC_URI="http://untroubled.org/supervise-scripts/archive/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 ppc sparc x86"
IUSE=""
RDEPEND="virtual/daemontools"
DEPEND="${RDEPEND}
dev-libs/bglibs"
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
epatch "${FILESDIR}"/${P}-head-tails-syntax.patch #152307
}
src_compile() {
# does NOT support parallel make
emake -j1 || 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]
}