# Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: /home/cvsroot/gentoo-x86/sys-cluster/util-vserver/util-vserver-0.29.ebuild,v 1.1 2004/03/25 12:25:10 tantive Exp $ DESCRIPTION="Util-Vserver s_context Management utilities" HOMEPAGE="http://savannah.nongnu.org/projects/util-vserver/" SRC_URI="http://www-user.tu-chemnitz.de/~ensc/util-vserver/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" KEYWORDS="x86" RESTRICT="nomirror" IUSE="" src_unpack() { unpack ${A} cd ${S} epatch ${FILESDIR}/configure.patch automake autoconf } src_compile() { # don't use costum cflags unset CFLAGS CXXFLAGS ./configure \ --host=${CHOST} \ --exec-prefix=/usr \ --prefix=/ \ --infodir=/usr/share/info \ --includedir=/usr/include \ --mandir=/usr/share/man || die "./configure failed" emake || die } src_install() { make DESTDIR=${D} install || die ## state-dir: keepdir /var/run/vservers ## the actual vservers go there: keepdir /vservers fperms 000 /vservers dodoc README ChangeLog NEWS AUTHORS INSTALL THANKS util-vserver.spec ## remove the non-gentoo init-scripts: rm -r ${D}/etc/init.d ## ... and install gentoo'ized ones: exeinto /etc/init.d/ newexe ${FILESDIR}/vservers.initd vservers newexe ${FILESDIR}/rebootmgr.initd rebootmgr }