You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-libs/libx86emu/libx86emu-1.1.ebuild

40 lines
996 B

# Copyright 1999-2012 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.10 2012/11/29 21:23:04 ulm Exp $
EAPI=4
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="HPND"
SLOT="0"
KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
IUSE=""
src_prepare() {
sed -i \
-e 's:$(CC) -shared:& $(LDFLAGS):' \
Makefile || die
}
src_compile() {
emake CC="$(tc-getCC)" CFLAGS="${CFLAGS} -fPIC -Wall"
}
src_test() {
ln -sf libx86emu.so.1.1 libx86emu.so || die
ln -sf libx86emu.so.1.1 libx86emu.so.1 || die
emake \
CC="$(tc-getCC)" \
CFLAGS="${CFLAGS} ${LDFLAGS} -Wl,-rpath,${S} -fPIC -Wall -I../include/ -L../" test
}
src_install() {
emake DESTDIR="${ED}" LIBDIR="/usr/$(get_libdir)" install
dodoc Changelog README
}