summaryrefslogtreecommitdiff
blob: a3145b5c3c87793f14683138a83456396e0c5c12 (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
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/sys-apps/apcupsd/apcupsd-3.10.1.ebuild,v 1.4 2003/02/13 15:47:30 vapier Exp $

S=${WORKDIR}/${P}
DESCRIPTION="APC UPS daemon with integrated tcp/ip remote shutdown"
SRC_URI="ftp://ftp.apcupsd.com/pub/apcupsd/development/${P}.tar.gz \
	ftp://ftp.apcupsd.com/pub/apcupsd/contrib/gd1.2.tar.gz"
HOMEPAGE="http://www.sibbald.com/apcupsd/"
KEYWORDS="~x86 ~ppc"
SLOT="0"
LICENSE="GPL-2"
 
DEPEND=">=sys-apps/baselayout-1.8.4
	virtual/glibc
	virtual/mta
	sys-libs/ncurses"
 
XPIDDIR=/var/run
XLOGDIR=/var/log
XLOCKDIR=/var/lock
XSYSCONFDIR=/etc/apcupsd
XPWRFAILDIR=${XSYSCONFDIR}

src_unpack() {
	unpack ${A}

	cp -a ${WORKDIR}/gd1.2 ${S}/src/
	cp -a ${S} ${S}-orig
	cd ${S}
	sed -e 's:gentoo-version:gentoo-release:' configure >configure.1
	sed -e '10627s:DISTVER=`uname -r`:DISTVER=$(sed -e "s/Gentoo Base System version//" /etc/gentoo-release):' configure.1 >configure
	rm configure.1
	cd src
	mv powerflute.c powerflute.c.orig
	sed -e 's:true:one:g' powerflute.c.orig >powerflute.c
	rm powerflute.c.orig
}

src_compile() {
	MAIL=/usr/sbin/sendmail ./configure \
		--prefix=/usr \
		--sbindir=/usr/sbin \
		--sysconfdir=${XSYSCONFDIR} \
		--with-pwrfail-dir=${XPWRFAILDIR} \
		--with-lock-dir=${XLOCKDIR} \
		--with-pid-dir=${XPIDDIR} \
		--with-log-dir=${XLOGDIR} \
		--with-upstype=usb \
		--with-upscable=usb \
		--with-serial-dev=/dev/usb/hid/hiddev[0-9] \
		--with-net-port=6666 \
		--with-nis-port=7000 \
		--enable-usb \
		--enable-net \
		--enable-powerflute \
		--enable-pthreads \
		--with-css-dir=/home/httpd/apcupsd \
		--with-cgi-bin=/home/httpd/apcupsd \
		--enable-cgi \
		|| die   
	make || die
}
 
src_install () {
	make DESTDIR=${D} install

	echo "Installing full documentation into /usr/share/doc/${P}..."
	cd ${S}/doc
	dodoc README.*
	docinto developers_manual
	dodoc developers_manual/*
	docinto logo
	dodoc logo/*
	docinto manual
	dodoc manual/*
	docinto old_documents
	dodoc old_documents/*
	docinto vim
	dodoc vim/*
}