blob: d41ef42dea4eb37a5bf9f9fcf6116cdbd2bc96f5 (
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.5 2004/06/24 23:07:17 agriffis 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/glibc"
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
}
|