# 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/* }