# Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sys-apps/daemontools/daemontools-0.76-r3.ebuild,v 1.12 2004/06/30 14:50:12 agriffis Exp $ inherit eutils gcc DESCRIPTION="Collection of tools for managing UNIX services" HOMEPAGE="http://cr.yp.to/daemontools.html" SRC_URI="http://cr.yp.to/daemontools/${P}.tar.gz" LICENSE="freedist" SLOT="0" KEYWORDS="x86 ppc sparc alpha hppa amd64 ia64" IUSE="selinux static" DEPEND="virtual/libc" RDEPEND="selinux? ( sec-policy/selinux-daemontools )" S=${WORKDIR}/admin/${P} src_unpack() { unpack ${A} cd ${S} epatch ${FILESDIR}/${PV}-errno.patch epatch ${FILESDIR}/${PV}-head-1.patch use static && LDFLAGS="${LDFLAGS} -static" echo "$(gcc-getCC) ${CFLAGS}" > src/conf-cc echo "$(gcc-getCC) ${LDFLAGS}" > src/conf-ld echo ${S} > src/home } src_compile() { cd ${S}/src emake || die "make failed" } src_install() { einfo "Creating service directory ..." keepdir /service einfo "Installing package ..." cd ${S}/src exeinto /usr/bin for x in `cat ../package/commands` do doexe $x done dodoc CHANGES ../package/README TODO exeinto /etc/init.d doexe ${FILESDIR}/svscan }