blob: 8347dcf046544ff33c83ed46deb92301b2afaf85 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-wireless/wireless-tools/wireless-tools-27.ebuild,v 1.6 2005/01/21 20:47:30 pylon Exp $
# The following works with both pre-releases and releases
MY_P=${PN/-/_}.${PV/_/.}
S=${WORKDIR}/${MY_P/\.pre*/}
DESCRIPTION="A collection of tools to configure wireless lan cards."
SRC_URI="http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/${MY_P}.tar.gz"
HOMEPAGE="http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/Tools.html"
KEYWORDS="x86 ~amd64 ppc hppa ~alpha"
SLOT="0"
LICENSE="GPL-2"
DEPEND="sys-apps/sed"
RDEPEND="virtual/libc"
IUSE="nls"
src_unpack() {
unpack ${A}
sed -i "s:^CFLAGS=:CFLAGS=${CFLAGS} :" \
${S}/Makefile
sed -i "s:\(@\$(LDCONFIG).*\):#\1:" \
${S}/Makefile
sed -i "s:^\(INSTALL_MAN= \$(PREFIX)\)/man/:\1/share/man:" \
${S}/Makefile
}
src_compile() {
emake WARN="" || die "emake failed"
}
src_install () {
emake PREFIX=${D}/usr install || die "emake install failed"
if use nls; then
insinto /usr/share/man/fr/man5
doins fr/iftab.5
insinto /usr/share/man/fr/man7
doins fr/wireless.7
insinto /usr/share/man/fr/man8
doins fr/{ifrename,iwconfig,iwevent,iwgetid,iwlist,iwpriv,iwspy}.8
dodoc README.fr
fi
dodoc CHANGELOG.h COPYING INSTALL HOTPLUG.txt PCMCIA.txt README
}
|