blob: 171e8a569b24389b77e57344da8ece9208b903f7 (
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-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-dialup/gnokii/gnokii-0.6.0.ebuild,v 1.1 2004/03/22 21:28:48 lanius Exp $
DESCRIPTION="a client that plugs into your handphone"
SRC_URI="http://www.gnokii.org/download/${P}.tar.bz2"
HOMEPAGE="http://www.gnokii.org"
IUSE="nls X bluetooth irda"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86"
RDEPEND="X? ( =x11-libs/gtk+-1.2* )
bluetooth? ( net-wireless/bluez-libs )
irda? ( sys-kernel/linux-headers )"
DEPEND="${RDEPEND}
nls? ( sys-devel/gettext )"
MAKEOPTS="${MAKEOPTS} -j1"
src_unpack() {
unpack ${A}
EPATCH_OPTS="-d ${S}" epatch ${FILESDIR}/${PN}-0.5.4-nounix98pty.patch
}
src_compile() {
local myconf
econf \
`use_enable nls` \
`use_with X x` \
--enable-security || die "configure failed"
emake || die "make failed"
}
src_install () {
make DESTDIR=${D} install || die "install failed"
dodoc Docs/*
cp -r Docs/sample ${D}/usr/share/doc/${PF}/sample
cp -r Docs/protocol ${D}/usr/share/doc/${PF}/protocol
doman Docs/man/*
dodir /etc
sed -e 's:/usr/local/sbin:/usr/sbin:' ${S}/Docs/sample/gnokiirc > ${D}/etc/gnokiirc
# only one file needs suid root to make a psuedo device
fperms 4755 /usr/sbin/mgnokiidev
}
pkg_postinst() {
einfo "gnokii does not need it's own group anymore."
einfo "Make sure the user that runs gnokii has read/write access to the device"
einfo "which your phone is connected to. eg. chown <user> /dev/ttyS0"
# clean up old gnokii group perms
groupdel gnokii
}
pkg_postrm () {
# leaving to clean up the old mess we used to leave behind
# since we don't _really_ need suid gnokii, just the make sure
# the use has the right perms
groupdel gnokii
}
|