# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ DESCRIPTION="Library for handling the VESA BIOS Extension using LRMI" HOMEPAGE="http://www.mplayerhq.hu/vesautils/" SRC_URI="mirror://gentoo/${P}.tar.bz2" LICENSE="LGPL-2" # I'm not quite sure SLOT="0" KEYWORDS="~x86" IUSE="" RDEPEND="sys-libs/lrmi" DEPEND="${RDEPEND}" S=${WORKDIR}/${PN} src_compile() { emake || die } src_install() { SO=$(echo libvbe.so.*.*) install -m755 -d "${D}/usr/lib" install -m755 -s "${SO}" "${D}/usr/lib/${SO}" # LRMI has a file called vbe.h, too. So we install ours as libvbe/vbe.h. install -m755 -d "${D}/usr/include/libvbe" install -m644 vbe.h "${D}/usr/include/libvbe/vbe.h" }