Magellan Linux

Contents of /branches/magellan-next/core/hwinfo/hwinfo-18.5-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 8856 - (show annotations) (download)
Wed Aug 3 16:24:43 2011 UTC (12 years, 10 months ago) by niro
File size: 1921 byte(s)
-added patch to disable xen tests, which are broken atm
1 # $Id$
2
3 PNAME="hwinfo"
4 PVER="18.5"
5 PBUILD="r1"
6
7 PCATEGORIE="sys-apps"
8
9 DESCRIPTION="hwinfo is the hardware detection tool used in SuSE Linux."
10 HOMEPAGE="http://www.suse.com/"
11
12 DEPEND=">= sys-libs/libx86emu-1.1
13 >= sys-apps/dbus-1.4"
14
15 SRCFILE="${PNAME}-${PVER}.tar.bz2"
16 SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
17
18 sminclude mtools
19
20 SRC_URI=(
21 http://ftp.de.debian.org/debian/pool/main/h/${PNAME}/${SRCFILE}
22 mirror://${PNAME}/${SRCFILE}
23 mirror://${PNAME}/${PNAME}-18.1-add-intel-pineview-x11-drivers-i386.patch
24 mirror://${PNAME}/${PNAME}-18.1-use-r128-module-for-ati-rage-cards-i386.patch
25 mirror://${PNAME}/${PNAME}-18.1-use-mach64-module-for-ati-mach64-cards-i386.patch
26 mirror://${PNAME}/${PNAME}-18.1-add-openchrome-x11-drivers-i386.patch
27 mirror://${PNAME}/${PNAME}-18.5-no-xen.patch
28 )
29
30 #UP2DATE="updatecmd http://ftp.de.debian.org/debian/pool/main/h/${PNAME} | grep .tar.gz | sed -n 's/.*_\(.*\).orig.*/\1/;$ p'"
31 # fake - taken newest from suse
32 UP2DATE="echo ${PVER}"
33
34 src_prepare()
35 {
36 munpack ${SRCFILE} || die
37 cd ${SRCDIR}
38
39 # disable xen checks which are broken atm
40 mpatch ${PNAME}-18.5-no-xen.patch || die
41
42 # add intel pineview to known x11 drivers
43 mpatch -Np1 ${PNAME}-18.1-add-intel-pineview-x11-drivers-i386.patch
44
45 # use r128 module for all ati rage cards
46 mpatch -Np1 ${PNAME}-18.1-use-r128-module-for-ati-rage-cards-i386.patch
47
48 # use mach64 module for all ati mach64 cards
49 mpatch -Np1 ${PNAME}-18.1-use-mach64-module-for-ati-mach64-cards-i386.patch || die
50
51 # add a bunch of via drivers to known x11 drivers
52 mpatch -Np1 ${PNAME}-18.1-add-openchrome-x11-drivers-i386.patch || die
53 }
54
55 src_compile()
56 {
57 cd ${SRCDIR}
58 mmake -j1 EXTRA_FLAGS="${CFLAGS}" LIBDIR=/usr/$(mlibdir) || die
59 }
60
61 src_install()
62 {
63 cd ${SRCDIR}
64 mmake DESTDIR=${BINDIR} LIBDIR=/usr/$(mlibdir) install || die
65 mkeepdir /var/lib/hardware/udi || die
66
67 minstallman doc/hwinfo.8 || die
68 minstalldocs Changelog COPYING README VERSION || die
69 }