# 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" }