Magellan Linux

Contents of /smage/trunk/core/hwinfo/hwinfo-21.12-r2.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 7024 - (show annotations) (download)
Thu Aug 20 12:01:13 2015 UTC (8 years, 9 months ago) by niro
File size: 2844 byte(s)
updated hwsetup emulation script
1 # $Id$
2
3 PNAME="hwinfo"
4 PVER="21.12"
5 PBUILD="r2"
6
7 PCAT="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 SDEPEND=">= sys-apps/dbus-dev-1.6
14 >= sys-libs/libx86emu-dev-1.1"
15
16 SRCFILE="${PNAME}-${PVER}.tar.xz"
17 SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
18
19 ALX_PKG_KEEP="etc/conf.d/hwsetup
20 usr/sbin/hwinfo
21 usr/sbin/hwsetup
22 usr/sbin/ddcxinfo-knoppix
23 usr/$(mlibdir)/*.so
24 usr/$(mlibdir)/*.so.*
25 var/lib/hardware"
26 sminclude mtools alx-split
27
28 EMHW_SVN_REV="2677"
29 EDDCX_REV="1.3"
30
31 SRC_URI=(
32 http://ftp.de.debian.org/debian/pool/main/h/${PNAME}/${SRCFILE}
33 mirror://${PNAME}/${SRCFILE}
34 mirror://${PNAME}/${PNAME}-18.1-add-intel-pineview-x11-drivers-i386.patch
35 mirror://${PNAME}/${PNAME}-18.1-use-r128-module-for-ati-rage-cards-i386.patch
36 mirror://${PNAME}/${PNAME}-18.1-use-mach64-module-for-ati-mach64-cards-i386.patch
37 mirror://${PNAME}/${PNAME}-18.1-add-openchrome-x11-drivers-i386.patch
38 mirror://${PNAME}/${PNAME}-18.5-no-xen.patch
39 mirror://${PNAME}/${PNAME}-18.5-tiocgdev-undefined.patch
40 mirror://${PNAME}/emulate-hwsetup.sh-${EMHW_SVN_REV}
41 mirror://${PNAME}/emulate-ddcxinfo-knoppix.sh-${EDDCX_REV}
42 )
43
44 #UP2DATE="updatecmd http://ftp.de.debian.org/debian/pool/main/h/${PNAME} | grep .tar.gz | sed -n 's/.*_\(.*\).orig.*/\1/;$ p'"
45 # fake - taken newest from suse
46 UP2DATE="echo ${PVER}"
47
48 src_prepare()
49 {
50 munpack ${SRCFILE} || die
51 cd ${SRCDIR}
52
53 # disable xen checks which are broken atm
54 mpatch ${PNAME}-18.5-no-xen.patch || die
55
56 # TIOCGDEV isn't supported in the mainline kernel
57 mpatch ${PNAME}-18.5-tiocgdev-undefined.patch || die
58
59 # add intel pineview to known x11 drivers
60 mpatch -Np1 ${PNAME}-18.1-add-intel-pineview-x11-drivers-i386.patch
61
62 # use r128 module for all ati rage cards
63 mpatch -Np1 ${PNAME}-18.1-use-r128-module-for-ati-rage-cards-i386.patch
64
65 # use mach64 module for all ati mach64 cards
66 mpatch -Np1 ${PNAME}-18.1-use-mach64-module-for-ati-mach64-cards-i386.patch || die
67
68 # add a bunch of via drivers to known x11 drivers using xf86-video-openchrome
69 mpatch -Np1 ${PNAME}-18.1-add-openchrome-x11-drivers-i386.patch || die
70 }
71
72 src_compile()
73 {
74 cd ${SRCDIR}
75 mmake -j1 EXTRA_FLAGS="${CFLAGS}" LIBDIR=/usr/$(mlibdir) || die
76 }
77
78 src_install()
79 {
80 cd ${SRCDIR}
81 mmake DESTDIR=${BINDIR} LIBDIR=/usr/$(mlibdir) install || die
82 mkeepdir /var/lib/hardware/udi || die
83
84 minstallman doc/hwinfo.8 || die
85 minstalldocs Changelog COPYING README VERSION || die
86
87 # broken Makefile, remove an empty dir
88 rmdir ${BINDIR}/sbin || die
89
90 # install hwsetup emulation script
91 minstalldir /usr/sbin || die
92 minstallexec -s emulate-hwsetup.sh-${EMHW_SVN_REV} /usr/sbin/hwsetup || die
93
94 # install ddcxinfo emulation script
95 minstalldir /usr/sbin || die
96 minstallexec -s emulate-ddcxinfo-knoppix.sh-${EDDCX_REV} /usr/sbin/ddcxinfo-knoppix || die
97 }