blob: b1f2e7118ca167e7eeb5566247cf61c6f9b8735d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-libs/libvserver/libvserver-2.0_rc1.ebuild,v 1.1 2007/06/20 18:09:28 hollow Exp $
DESCRIPTION="Linux-VServer syscall library"
HOMEPAGE="http://svn.linux-vserver.org/projects/libvserver/"
SRC_URI="http://people.linux-vserver.org/~hollow/libvserver/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
DEPEND="=dev-libs/lucid-0.1*"
src_compile() {
econf || die "econf failed"
emake || die "emake failed"
}
src_install() {
make DESTDIR="${D}" install || die "make install failed"
}
|