Magellan Linux

Contents of /branches/R11-unstable/core/v86d/v86d-0.1.10-r4.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 25086 - (show annotations) (download)
Tue Nov 25 02:58:31 2014 UTC (9 years, 5 months ago) by niro
File size: 821 byte(s)
-release branches/R11-unstable
1 # $Id$
2
3 PNAME="v86d"
4 PVER="0.1.10"
5 PBUILD="r4"
6
7 PCAT="sys-apps"
8
9 DESCRIPTION="v86d is the userspace helper for uvesafb that runs x86 code in an emulated environment."
10 HOMEPAGE="http://dev.gentoo.org/~spock/projects/uvesafb/"
11
12 DEPEND=">= virtual/glibc"
13 SDEPEND=">= virtual/kernel-headers"
14
15 SRCFILE="${PNAME}-${PVER}.tar.bz2"
16 SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
17
18 sminclude mbuild mtools
19 msetfeature "!check"
20
21 SRC_URI=(
22 http://dev.gentoo.org/~spock/projects/uvesafb/archive/${SRCFILE}
23 mirror://${PNAME}/${SRCFILE}
24 )
25
26 UP2DATE="updatecmd ${HOMEPAGE} | grep ${PNAME}- | lasttarball"
27
28 src_compile()
29 {
30 cd ${SRCDIR}
31 ./configure --with-x86emu || die
32 make KDIR=/usr || die
33 }
34
35 src_install()
36 {
37 cd ${SRCDIR}
38 minstalldir /usr/sbin || die
39 minstallexec v86d /usr/sbin || die
40 minstalldocs AUTHORS ChangeLog README TODO || die
41 }