blob: 41df223eb076e9f875628ccc884972409f4ecd61 (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libevent/libevent-0.6.ebuild,v 1.3 2003/01/08 06:06:15 kain Exp $
DESCRIPTION="A library to execute a function when a specific event occurs on a file descriptor"
HOMEPAGE="http://monkey.org/~provos/libevent/"
SRC_URI="http://monkey.org/~provos/${P}.tar.gz"
S=${WORKDIR}/${P}
LICENSE="BSD"
SLOT="0"
KEYWORDS="x86 ~ppc"
IUSE=""
DEPEND=""
src_unpack() {
unpack ${A}
cd ${S}
# Fails to compile for me if this file exists
rm compat/sys/time.h
}
src_compile() {
econf || die
emake || die
}
src_install() {
dolib libevent.a
doman event.3
insinto /usr/include
doins event.h
}
|