blob: 6f7408278db38295f2bf31735bd5db99182925b8 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/vrb/vrb-0.5.1.ebuild,v 1.2 2007/07/02 15:02:24 peper Exp $
inherit eutils
DESCRIPTION="Library for a virtual ring buffer"
HOMEPAGE="http://vrb.slashusr.org/"
SRC_URI="http://vrb.slashusr.org/download/${P}.tar.bz2"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~x86"
IUSE="static"
RESTRICT="strip"
DEPEND="virtual/libc"
src_compile() {
epatch ${FILESDIR}/${P}-configure.patch
./configure --prefix=/usr || die "Configure failed!"
make || die "Make failed!"
}
src_install() {
insinto /usr/include
doins build/include/vrb.h
mkdir ${D}usr/lib
if use static ; then
cp build/lib/libvrb.a* ${D}usr/lib/
fi
cp build/lib/libvrb.so* ${D}usr/lib/
dobin build/bin/vbuf
dodoc README
doman vrb/man/man3/*.3
}
|