# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-libs/libx86emu/libx86emu-1.1.ebuild,v 1.7 2011/07/29 04:19:34 zmedico Exp $ EAPI=3 inherit multilib rpm toolchain-funcs DESCRIPTION="A library for emulating x86" HOMEPAGE="http://www.opensuse.org/" SRC_URI="http://download.opensuse.org/source/factory/repo/oss/suse/src/${P}-9.8.src.rpm" LICENSE="as-is" SLOT="0" KEYWORDS="amd64 x86 ~x86-linux" IUSE="" RESTRICT="test" #339656 src_prepare() { sed -i \ -e 's:$(CC) -shared:& $(LDFLAGS):' \ Makefile || die } src_compile() { emake CC="$(tc-getCC)" CFLAGS="${CFLAGS} -fPIC -Wall" || die } src_install() { emake DESTDIR="${ED}" LIBDIR="/usr/$(get_libdir)" install || die dodoc Changelog README }