blob: 7e7d14a3b4090cacbae7f506ba9b52753db480e2 (
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-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/qpage/qpage-3.3.ebuild,v 1.3 2006/02/25 18:16:54 chutzpah Exp $
inherit eutils
DESCRIPTION="Sends messages to an alphanumeric pager via TAP protocol."
HOMEPAGE="http://www.qpage.org/"
SRC_URI="http://www.qpage.org/download/${P}.tar.Z"
LICENSE="qpage"
SLOT="0"
KEYWORDS="alpha amd64 x86"
IUSE="tcpd"
DEPEND="tcpd? ( sys-apps/tcp-wrappers )"
RDEPEND="${DEPEND}
virtual/mta"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${P}-gentoo.patch
epatch ${FILESDIR}/${P}-fix-warning.patch
}
src_compile() {
econf || die "econf failed"
# There doesn't seem to be a clean way to disable tcp wrappers in
# this package if you have it installed, but don't want to use it.
if ! use tcpd ; then
sed -i 's/-lwrap//g; s/-DTCP_WRAPPERS//g' Makefile
echo '#undef TCP_WRAPPERS' >> config.h
fi
emake || die "emake failed"
}
src_install() {
einstall || die "einstall failed"
dodir /var/spool/qpage
fowners daemon:daemon /var/spool/qpage
fperms 770 /var/spool/qpage
dodir /var/lock/subsys/qpage
fowners daemon:daemon /var/lock/subsys/qpage
fperms 770 /var/lock/subsys/qpage
insinto /etc/qpage
doins example.cf || die "doins example.cf failed"
doinitd "${FILESDIR}"/qpage
}
pkg_postinst() {
einfo
einfo "Post-installation tasks:"
einfo
einfo "1. Create /etc/qpage/qpage.cf (see example.cf in that dir)."
einfo "2. Insure that the serial port selected in qpage.cf"
einfo " is writable by user or group daemon."
einfo "3. Set automatic startup with rc-update add qpage default"
einfo "4. Send mail to tomiii@qpage.org telling him how"
einfo " you like qpage! :-)"
einfo
}
|