blob: 52058aba0eb02ebdef6f3e81db85ac2a8c552278 (
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/nut/nut-1.4.1.ebuild,v 1.4 2004/04/26 18:56:27 agriffis Exp $
DESCRIPTION="Network-UPS Tools."
HOMEPAGE="http://www.networkupstools.org/"
SRC_URI="mirror://nut/source/${PV%.*}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ~sparc"
IUSE="cgi"
RDEPEND="cgi? ( =media-libs/libgd-1* )"
DEPEND="$RDEPEND
>=sys-apps/sed-4
>=sys-devel/autoconf-2.58"
src_unpack() {
unpack ${A} && cd "${S}"
sed -e "s:GD_LIBS.*=.*-L/usr/X11R6/lib \(.*\) -lXpm -lX11:GD_LIBS=\"\1:" \
-i configure.in || die "sed failed"
ebegin "Recreating configure"
WANT_AUTOCONF=2.5 autoconf || die "autoconf failed"
eend $?
}
src_compile() {
local myconf
myconf="${myconf} `use_with cgi` `use_with cgi cgipath /usr/share/nut`"
econf \
--with-user=nut \
--with-group=nut \
--with-drvpath=/lib/nut \
--sysconfdir=/etc/nut \
--with-logfacility=LOG_DAEMON \
--with-statepath=/var/lib/nut \
--with-linux-hiddev \
${myconf} || die "econf failed"
sed -e "s:= bestups:= hidups bestups:" \
-i drivers/Makefile || die "sed failed"
sed -e "s:= powercom.8:= hidups.8 powercom.8:" \
-i man/Makefile || die "sed failed"
emake || die "compile problem"
if use cgi ; then
emake cgi || die "compile cgi problem"
fi
}
src_install() {
make DESTDIR="${D}" install || die "make install failed"
dodir /sbin
dosym /lib/nut/upsdrvctl /sbin/upsdrvctl
for i in "${D}"/etc/nut/*.sample ; do
mv "${i}" "${i/.sample/}"
done
if use cgi ; then
make DESTDIR="${D}" install-cgi || die "make install-cgi failed"
einfo "CGI monitoring scripts are installed in /usr/share/nut,"
einfo "copy them to your web server's ScriptPath to activate."
fi
dodoc CHANGES COPYING CREDITS INSTALL MAINTAINERS NEWS README UPGRADING \
docs/{FAQ,*.txt,driver.list}
docinto cables
dodoc docs/cables/*
exeinto /etc/init.d
newexe "${FILESDIR}/upsd.rc6" upsd
newexe "${FILESDIR}/upsdrv.rc6" upsdrv
newexe "${FILESDIR}/upsmon.rc6" upsmon
keepdir /var/lib/nut
}
pkg_postinst() {
chown nut:nut ${ROOT}/var/lib/nut
chmod 0700 ${ROOT}/var/lib/nut
chown root:nut ${ROOT}/etc/nut/{upsd.conf,upsd.users,upsmon.conf}
chmod 0640 ${ROOT}/etc/nut/{upsd.conf,upsd.users,upsmon.conf}
}
|