blob: c019c04b3bbd2e2769619a8593c34ce8e08bc8fb (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-libs/libfreevec/libfreevec-0.8.ebuild,v 1.2 2005/09/29 15:00:05 swegener Exp $
inherit flag-o-matic
DESCRIPTION="Altivec enabled libc memory function"
HOMEPAGE="http://freevec.org"
SRC_URI="http://freevec.org/downloads/${P}.tar.bz2"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="-ppc -ppc64"
IUSE=""
DEPEND=">=sys-devel/gcc-3.4
sys-devel/automake
sys-devel/autoconf
sys-devel/libtool"
src_unpack() {
unpack ${A}
cd "${S}"
libtoolize --copy --force
autoreconf
}
src_compile() {
append-flags -maltivec -mabi=altivec
econf || die "econf failed"
emake || die "emake failed"
}
src_install() {
make DESTDIR="${D}" install || die "install failed"
dodoc TODO README INSTALL
}
pkg_postinst() {
ewarn "Beware that library has known bugs, DO NOT PRELOAD IT"
}
|