blob: 4a016e44b1c8f2d105a559e7351aad1212435251 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/hwinfo/hwinfo-13.0.ebuild,v 1.1 2006/07/22 04:31:17 robbat2 Exp $
inherit eutils
DESCRIPTION="hwinfo is the hardware detection tool used in SuSE Linux."
HOMEPAGE="http://www.suse.com"
DEBIAN_PV="4"
DEBIAN_BASE_URI=" mirror://debian/pool/main/${PN:0:1}/${PN}/"
SRC_URI="${DEBIAN_BASE_URI}/${PN}_${PV}.orig.tar.gz
${DEBIAN_BASE_URI}/${PN}_${PV}-${DEBIAN_PV}.diff.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~ppc ~x86"
IUSE=""
DEPEND="sys-fs/sysfsutils
sys-apps/hal
sys-apps/dbus"
src_unpack (){
unpack ${PN}_${PV}.orig.tar.gz
mv ${S}/${P}.tar.gz ${WORKDIR} && rmdir ${S}
unpack ./${P}.tar.gz
EPATCH_OPTS="-p1 -d ${S}" epatch ${DISTDIR}/${PN}_${PV}-${DEBIAN_PV}.diff.gz
for p in ${S}/debian/patches/*; do
EPATCH_OPTS="-p1 -d ${S}" epatch ${p}
done
#EPATCH_OPTS="-p1 -d ${S}" epatch ${FILESDIR}/${P}-makefile-fixes.patch
#sed -i -e "s,^LIBS[ \t]*= -lhd,LIBS = -lhd -lsysfs," ${S}/Makefile
#sed -i -e "s,^LIBDIR[ \t]*= /usr/lib$,LIBDIR = /usr/$(get_libdir)," ${S}/Makefile
echo 'libs: $(LIBHD) $(LIBHD_SO)' >>${S}/Makefile
}
src_compile(){
# build is NOT parallel safe
emake -j1 EXTRA_FLAGS="${CFLAGS}" || die "emake failed"
}
src_install() {
emake install DESTDIR="${D}" || die
dodoc VERSION README COPYING ChangeLog
doman doc/hwinfo.8
# this is the SuSE version
# somebody needs to port it still
rm ${D}/etc/init.d/hwscan
}
|