Magellan Linux

Contents of /smage/trunk/core/v86d/v86d-0.1.10-r6.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 6687 - (show annotations) (download)
Wed Jul 15 14:15:06 2015 UTC (8 years, 9 months ago) by niro
File size: 872 byte(s)
auto added: ver bump to 0.1.10-r6
1 # $Id$
2
3 PNAME="v86d"
4 PVER="0.1.10"
5 PBUILD="r6"
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 ALX_PKG_KEEP="usr/sbin/v86d"
19 sminclude mbuild mtools alx-split
20 msetfeature "!check"
21
22 SRC_URI=(
23 http://dev.gentoo.org/~spock/projects/uvesafb/archive/${SRCFILE}
24 mirror://${PNAME}/${SRCFILE}
25 )
26
27 UP2DATE="updatecmd ${HOMEPAGE} | grep ${PNAME}- | lasttarball"
28
29 src_compile()
30 {
31 cd ${SRCDIR}
32 ./configure --with-x86emu || die
33 make KDIR=/usr || die
34 }
35
36 alx_generic_src_install()
37 {
38 cd ${SRCDIR}
39 minstalldir /usr/sbin || die
40 minstallexec v86d /usr/sbin || die
41 minstalldocs AUTHORS ChangeLog README TODO || die
42 }