blob: 5570cf043064e42b549cabef19cb4af939cf37c7 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libaio/libaio-0.3.15.ebuild,v 1.14 2006/05/25 19:27:14 gmsoft Exp $
inherit eutils
DESCRIPTION="Asynchronous input/output library that uses the kernels native interface"
HOMEPAGE="http://www.kernel.org/pub/linux/kernel/people/andrea/libaio/"
#SRC_URI="mirror://gentoo/${P}.tar.bz2"
SRC_URI="http://www.kernel.org/pub/linux/kernel/people/andrea/libaio/${P}-2.5-2.tar.bz2"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="alpha amd64 ~arm -hppa ~ia64 ~m68k ~mips ~ppc ~s390 ~sh ~sparc ~x86"
IUSE=""
DEPEND=""
S=${WORKDIR}/${P}-2.5-2
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-2.5-2-Makefile.patch
epatch "${FILESDIR}"/${P}-more-arches.patch
}
src_compile() {
make || die
}
src_install() {
make \
prefix="${D}"/usr \
install || die
}
|