blob: 12c5873e7f68c7c711df102e64f58e7f23df6cb4 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-dialup/mwavem/mwavem-1.0.4.ebuild,v 1.3 2005/02/07 21:29:37 mrness Exp $
inherit eutils
DESCRIPTION="User level application for IBM Mwave modem"
HOMEPAGE="http://oss.software.ibm.com/acpmodem/"
SRC_URI="ftp://www-126.ibm.com/pub/acpmodem/1.0.4/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE="X"
DEPEND="virtual/libc
X? ( virtual/x11 )"
src_compile() {
epatch ${FILESDIR}/${P}-gentoo.diff
# The driver is no longer built by default.
econf || die "./configure failed"
emake || die
}
src_install() {
make DESTDIR=${D} install || die
exeinto /usr/sbin
doexe ${FILESDIR}/mwave-dev-handler
insinto /etc/devfs.d
newins ${FILESDIR}/mwave.devfs mwave
insinto /etc/modules.d
newins ${FILESDIR}/mwave.modules mwave
dodoc AUTHORS ChangeLog FAQ INSTALL NEWS README README.devfs THANKS
docinto doc
dodoc doc/mwave.sgml doc/mwave.txt
dohtml doc/mwave.html
}
pkg_postinst() {
# Below is to get /etc/modules.d/mwave loaded into /etc/modules.conf
if [ "${ROOT}" = "/" ]
then
[ -x /usr/sbin/update-modules ] && /usr/sbin/update-modules
fi
ewarn "If updating from mwavem-1.0.2, you should remove the line:"
ewarn "'alias char-major-10-219 mwave' from the file"
ewarn "/etc/modules.d/aliases. The line is now contained in the file"
ewarn "/etc/modules.d/mwave"
einfo
einfo "The MWave Modem device requires the proper entries in /dev."
einfo
einfo "If you are using devfs, the following entries are in the file"
einfo "/etc/devfs.d/mwave, so you just need to restart devfsd."
einfo
einfo "REGISTER ^misc/mwave$ EXECUTE /usr/sbin/mwave-dev-handler register"
einfo "UNREGISTER ^misc/mwave$ EXECUTE /usr/sbin/mwave-dev-handler unregister"
einfo
einfo "If you are not using devfs, execute the following commands:"
einfo
einfo "# mkdir -p /dev/modems"
einfo "# mknod --mode=660 /dev/modems/mwave c 10 219"
einfo
}
|