summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sys-power/apcupsd/ChangeLog7
-rw-r--r--sys-power/apcupsd/apcupsd-3.14.7.ebuild9
2 files changed, 13 insertions, 3 deletions
diff --git a/sys-power/apcupsd/ChangeLog b/sys-power/apcupsd/ChangeLog
index fef27d58ed2c..ea4bab3e9742 100644
--- a/sys-power/apcupsd/ChangeLog
+++ b/sys-power/apcupsd/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for sys-power/apcupsd
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-power/apcupsd/ChangeLog,v 1.52 2009/08/05 16:24:32 chainsaw Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-power/apcupsd/ChangeLog,v 1.53 2009/08/08 14:11:29 flameeyes Exp $
+
+ 08 Aug 2009; Diego E. Pettenò <flameeyes@gentoo.org>
+ apcupsd-3.14.7.ebuild:
+ Make sure that MANPAGER values won't break the build, bug #280674 by Semen
+ Maryasin.
05 Aug 2009; <chainsaw@gentoo.org> apcupsd-3.14.6.ebuild:
Marked stable on AMD64 as requested by Diego E. "Flameeyes" Pettenò
diff --git a/sys-power/apcupsd/apcupsd-3.14.7.ebuild b/sys-power/apcupsd/apcupsd-3.14.7.ebuild
index 05ee14bf4c00..541860f61ca0 100644
--- a/sys-power/apcupsd/apcupsd-3.14.7.ebuild
+++ b/sys-power/apcupsd/apcupsd-3.14.7.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-power/apcupsd/apcupsd-3.14.7.ebuild,v 1.1 2009/08/04 11:36:02 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-power/apcupsd/apcupsd-3.14.7.ebuild,v 1.2 2009/08/08 14:11:29 flameeyes Exp $
WEBAPP_MANUAL_SLOT="yes"
WEBAPP_OPTIONAL="yes"
@@ -66,7 +66,12 @@ src_compile() {
${myconf} \
APCUPSD_MAIL=/bin/mail \
|| die "econf failed"
- emake || die "emake failed"
+
+ # Workaround for bug #280674; upstream should really just provide
+ # the text files in the distribution, but I wouldn't count on them
+ # doing that anytime soon.
+ MANPAGER=$(type -p cat) \
+ emake || die "emake failed"
}
src_install() {