blob: 51b23d2105ce2363898829504cb840020f7e88bf (
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit eutils toolchain-funcs flag-o-matic udev
DESCRIPTION="IrDA management and handling utilities"
HOMEPAGE="http://irda.sourceforge.net"
SRC_URI="mirror://sourceforge/irda/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~arm ~ppc ~sh x86"
IUSE=""
RDEPEND="
dev-libs/glib:2
>=sys-apps/pciutils-2.2.7-r1
sys-process/procps
sys-apps/setserial
sys-apps/grep
virtual/udev
"
DEPEND="${RDEPEND}
virtual/pkgconfig
!app-laptop/smcinit
"
src_prepare() {
epatch "${FILESDIR}"/irda-utils-rh1.patch \
"${FILESDIR}"/${P}-makefile.diff \
"${FILESDIR}"/${P}-smcinit.diff \
"${FILESDIR}"/${P}-io.h.diff \
"${FILESDIR}"/${P}-dofail.patch \
"${FILESDIR}"/${P}-asneeded.patch \
"${FILESDIR}"/${P}-ldflags.patch \
"${FILESDIR}"/${P}-headers.patch
# fix crosscompile, respect CFLAGS (Bug 200295)
sed -i -e "/^CC/s:gcc:$(tc-getCC):" \
-e "/^LD/s:ld:$(tc-getLD):" \
-e "/^AR/s:ar:$(tc-getAR):" \
-e "/^RANLIB/s:ranlib:$(tc-getRANLIB):" \
-e "/^CFLAGS/s:-O2:${CFLAGS}:" Makefile */Makefile || die
# fix compile when pciutils is compiled with USE=zlib (Bug 200295)
sed -i -e "s:-lpci:$(pkg-config --libs libpci):g" smcinit/Makefile || die
# disable etc subdir in Makefile
sed -i -e "s:^\(DIRS.*=.* \)etc \(.*\):\1\2:g" Makefile || die
# disable write_pid(), because we don't need it
sed -i -e "s:\(write_pid();\):/* \1 */:g" irattach/util.c || die
append-flags "-fno-strict-aliasing" # bug????
}
src_compile() {
emake RPM_OPT_FLAGS="${CFLAGS}" RPM_BUILD_ROOT="${D}" ROOT="${D}"
}
src_install () {
dodir /usr/bin
dodir /usr/sbin
emake install RPM_OPT_FLAGS="${CFLAGS}" ROOT="${D}" \
MANDIR="${D}usr/share/man"
newdoc ethereal/README README.wireshark
newdoc irattach/README README.irattach
newdoc irdadump/README README.irdadump
newdoc irdaping/README README.irdaping
newdoc irsockets/README README.irsockets
newdoc tekram/README README.tekram
newdoc smcinit/README README.smcinit
newdoc smcinit/README.Peri README.smcinit.Peri
newdoc smcinit/README.Rob README.smcinit.Rob
newdoc smcinit/README.Tom README.smcinit.Tom
newdoc irattach/ChangeLog ChangeLog.irattach
newdoc irdadump/ChangeLog ChangeLog.irdadump
newdoc smcinit/ChangeLog ChangeLog.smcinit
dohtml smcinit/RobMiller-irda.html
dodoc README
newconfd "${FILESDIR}/irda.confd" irda
newinitd "${FILESDIR}/irda.initd" irda
insinto /etc/modprobe.d
newins "${FILESDIR}/irda.modsd" irda.conf
udev_newrules "${FILESDIR}/irda.rules" 53-irda.rules
exeinto "$(get_udevdir)"
newexe "${FILESDIR}/irda-setup.sh" irda-setup
newexe "${FILESDIR}/irda-usb.sh" irda-usb
}
|