blob: 0ef21a9642d6fb48e6611191bd2fc0a8e120ba83 (
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
|
# Copyright 2010-2022 Martin V\"ath
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit estack rpm toolchain-funcs
RESTRICT="mirror"
MY_PN="smpppd"
case "${PV}" in
*.*.*.*)
MY_PV="${PV#*.*.*.}"
MY_PV=${PV%".${MY_PV}"}
MY_P="${MY_PN}-${MY_PV}-${PV#*.*.*.}"
;;
*)
MY_PV="${PV}"
MY_P="${MY_PN}-${MY_PV}"
;;
esac
S="${WORKDIR}/${MY_PN}-${MY_PV}"
DESCRIPTION="Give statistics about dialup connections. Originally part of SuSE's smpppd"
HOMEPAGE="http://www.opensuse.org"
SRC_URI="http://download.opensuse.org/source/distribution/11.3/repo/oss/suse/src/${MY_P}.src.rpm"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x64-cygwin ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE=""
: ${ACCOUNTING_LOG:="/var/log/accounting.log"}
DEPEND=">=net-dialup/ppp-2.4.4-r13"
RDEPEND="${DEPEND}"
CDIR="${S}/${MY_PN}"
DDIR="${S}/doc"
src_prepare() {
printf '%s "%s"\n' '#define VERSION' "${MY_PV}" >"${CDIR}"/config.h
sed -i -e's!^\(#define ACCOUNTING_LOG \).*$!\1"'"${ACCOUNTING_LOG}"'"!' \
"${CDIR}"/defines.h
sed -i -e's!/var/log/[^.]*\.log!'"${ACCOUNTING_LOG}"'!' \
"${DDIR}"/accounting.1
default
}
src_configure() {
:
}
src_compile() {
cd -- "${CDIR}"
"$(tc-getCXX)" ${CXXFLAGS} ${LDFLAGS} -o accounting \
accounting.cc utils.cc format.cc parse.cc tempus.cc filter.cc \
|| die "compiling failed"
}
my_sedbin() {
dodir "${2%/*}"
sed -e "s!ACCOUNTING_LOG!${ACCOUNTING_LOG}!" -- "${1}" >"${D}/${2}"
fperms 755 "${2}"
}
src_install() {
dobin "${CDIR}/accounting"
doman "${DDIR}/accounting.1"
my_sedbin "${FILESDIR}"/ip-up.sh /etc/ppp/ip-up.d/80-accounting.sh
my_sedbin "${FILESDIR}"/ip-down.sh /etc/ppp/ip-down.d/10-accounting.sh
}
pkg_postinst() {
ewarn "The accounting tool only interprets ${ACCOUNTING_LOG}"
ewarn "This file is updated by scripts in /etc/ppp/ip-up.d and /etc/ppp/ip-down.d"
ewarn "You might want to modify these scripts (e.g. add provider info)."
}
|