Magellan Linux

Contents of /trunk/extras/qemu/qemu-0.12.5-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 6457 - (show annotations) (download)
Mon Aug 23 21:23:08 2010 UTC (13 years, 9 months ago) by niro
File size: 1108 byte(s)
auto added: ver bump to 0.12.5-r1
1 # $Id$
2
3 PNAME="qemu"
4 PVER="0.12.5"
5 PBUILD="r1"
6
7 PCATEGORIE="app-emulation"
8 STATE="unstable"
9
10 DESCRIPTION="QEMU is a generic and open source machine emulator and virtualizer."
11 HOMEPAGE="http://qemu.org/"
12
13 DEPEND=">= sys-libs/zlib-1.2.3
14 >= sys-libs/ncurses-5.7
15 >= dev-libs/cyrus-sasl-2.1
16 >= media-libs/alsa-lib-1.0.21
17 >= media-libs/libsdl-1.2.14
18 >= net-libs/gnutls-2.8
19 >= net-wlan/bluez-4.56
20 >= net-misc/bridge-utils-1.4
21 >= sys-apps/iproute2-2.6"
22
23 SDEPEND=">= dev-util/pkgconfig-0.23
24 >= virtual/kernel-headers"
25
26 SRCFILE="${PNAME}-${PVER}.tar.gz"
27 SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
28
29 sminclude mbuild
30
31 SRC_URI=(
32 http://download.savannah.gnu.org/releases/${PNAME}/${SRCFILE}
33 mirror://${PNAME}/${SRCFILE}
34 )
35
36 # ignore -rc versions!
37 UP2DATE="updatecmd 'http://download.savannah.gnu.org/releases/${PNAME}?C=M;O=A' | grep ${PNAME}- | sed '/-rc/d' | lasttarball gz"
38
39 src_compile()
40 {
41 cd ${SRCDIR}
42
43 # mconfigure doesn't work
44 ./configure \
45 --prefix=/usr \
46 --disable-strip \
47 --audio-drv-list=alsa,oss,sdl \
48 --disable-darwin-user \
49 --disable-bsd-user \
50 --disable-vde \
51 || die
52
53 mmake || die
54 }