blob: 1895a9025fbbdd58974d4c3284f33dc4d5a728d1 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-libs/lrmi/lrmi-0.7.ebuild,v 1.6 2004/07/02 08:49:04 eradicator Exp $
IUSE=""
DESCRIPTION="LRMI is a library for calling real mode BIOS routines under Linux."
HOMEPAGE="http://www.sourceforge.net/projects/lrmi/"
KEYWORDS="x86"
SLOT="0"
LICENSE="MIT"
DEPEND="virtual/libc"
RDEPEND=""
SRC_URI="mirror://sourceforge/lrmi/${P}.tar.gz"
S=${WORKDIR}/${P}
src_compile() {
emake CFLAGS="${CFLAGS}" || die
}
src_install () {
dobin vbetest
insinto /usr/lib
doins liblrmi.so
insinto /usr/include
doins lrmi.h vbe.h
}
|