blob: 90ce87591a8cd89e692530f0cc2726bd47a71146 (
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
|
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Achim Gottinger <achim@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/net-misc/nut/nut-0.44.1.ebuild,v 1.6 2001/06/04 00:16:12 achim Exp $
P=nut-0.44.1
A=${P}.tar.gz
S=${WORKDIR}/${P}
DESCRIPTION="Network-UPS Tools"
SRC_URI="http://www.exploits.org/nut/release/"${A}
HOMEPAGE="http://www.exploits.org/nut/"
DEPEND="virtual/glibc
>=media-libs/libgd-1.8.3
>=media-libs/libpng-1.0.7"
REPEND="virtual/glibc
>=media-libs/libgd-1.8.3
>=media-libs/libpng-1.0.7"
src_compile() {
try ./configure --host=${CHOST} --prefix=/usr --sysconfdir=/etc/nut \
--with-user=daemon --with-group=daemon
try make
try make cgi
}
src_install() {
dodir /usr/bin
try make INSTALLROOT=${D} STATEPATH=${D}/var/state/ups \
install
cd clients
exeinto /usr/local/httpd/cgi-bin/nut
doexe *.cgi
into /usr
dolib upsfetch.o
insinto /usr/include
doins upsfetch.h
cd ..
rmdir ${D}/usr/misc
insinto /etc/rc.d/init.d
doins ${O}/files/upsd
dodoc COPYING CREDITS Changes QUICKSTART README
docinto docs
dodoc docs/*.txt docs/FAQ docs/Changes.trust
docinto cables
dodoc docs/cables/*.txt
}
pkg_config() {
. ${ROOT}/etc/rc.d/config/functions
einfo "Generating symlinks..."
${ROOT}/usr/sbin/rc-update add upsd
}
|