summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlin Năstac <mrness@gentoo.org>2007-11-27 14:19:42 +0000
committerAlin Năstac <mrness@gentoo.org>2007-11-27 14:19:42 +0000
commit2648f43cfd74744a76decb09d573a8158dd682cb (patch)
tree74d4dfa54f35ffe0e1a2d29cbef94774f27d519f /net-dialup/mgetty
parentFixed quoting. (diff)
downloadgentoo-2-2648f43cfd74744a76decb09d573a8158dd682cb.tar.gz
gentoo-2-2648f43cfd74744a76decb09d573a8158dd682cb.tar.bz2
gentoo-2-2648f43cfd74744a76decb09d573a8158dd682cb.zip
Replace nofax USE flag with fax (#195467).
(Portage version: 2.1.3.19)
Diffstat (limited to 'net-dialup/mgetty')
-rw-r--r--net-dialup/mgetty/ChangeLog8
-rw-r--r--net-dialup/mgetty/files/digest-mgetty-1.1.36-r1 (renamed from net-dialup/mgetty/files/digest-mgetty-1.1.36)0
-rw-r--r--net-dialup/mgetty/mgetty-1.1.36-r1.ebuild (renamed from net-dialup/mgetty/mgetty-1.1.36.ebuild)14
3 files changed, 14 insertions, 8 deletions
diff --git a/net-dialup/mgetty/ChangeLog b/net-dialup/mgetty/ChangeLog
index 62a2dc3fe6a7..c700778cb9bc 100644
--- a/net-dialup/mgetty/ChangeLog
+++ b/net-dialup/mgetty/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for net-dialup/mgetty
# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-dialup/mgetty/ChangeLog,v 1.75 2007/11/25 08:21:35 mrness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dialup/mgetty/ChangeLog,v 1.76 2007/11/27 14:19:42 mrness Exp $
+
+*mgetty-1.1.36-r1 (27 Nov 2007)
+
+ 27 Nov 2007; Alin Năstac <mrness@gentoo.org> -mgetty-1.1.36.ebuild,
+ +mgetty-1.1.36-r1.ebuild:
+ Replace nofax USE flag with fax (#195467).
25 Nov 2007; Alin Năstac <mrness@gentoo.org>
+files/mgetty-1.1.36-nofax.patch, mgetty-1.1.36.ebuild:
diff --git a/net-dialup/mgetty/files/digest-mgetty-1.1.36 b/net-dialup/mgetty/files/digest-mgetty-1.1.36-r1
index 30482dab86c8..30482dab86c8 100644
--- a/net-dialup/mgetty/files/digest-mgetty-1.1.36
+++ b/net-dialup/mgetty/files/digest-mgetty-1.1.36-r1
diff --git a/net-dialup/mgetty/mgetty-1.1.36.ebuild b/net-dialup/mgetty/mgetty-1.1.36-r1.ebuild
index 8f311cf76ef8..80144bb8f399 100644
--- a/net-dialup/mgetty/mgetty-1.1.36.ebuild
+++ b/net-dialup/mgetty/mgetty-1.1.36-r1.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-dialup/mgetty/mgetty-1.1.36.ebuild,v 1.3 2007/11/25 08:30:55 mrness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dialup/mgetty/mgetty-1.1.36-r1.ebuild,v 1.1 2007/11/27 14:19:42 mrness Exp $
inherit toolchain-funcs flag-o-matic eutils
@@ -22,7 +22,7 @@ RDEPEND="${DEPEND}
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~sparc ~x86"
-IUSE="doc fidonet nofax"
+IUSE="doc fax fidonet"
pkg_setup() {
enewgroup fax
@@ -37,7 +37,7 @@ src_unpack() {
epatch "${FILESDIR}/${P}-qa-fixes.patch"
epatch "${FILESDIR}/${P}-callback.patch" # add callback install to Makefile
epatch "${FILESDIR}/Lucent.c.patch" # Lucent modem CallerID patch - bug #80366
- use nofax && epatch "${FILESDIR}/${P}-nofax.patch" # don't install fax related files - bug #195467
+ use fax || epatch "${FILESDIR}/${P}-nofax.patch" # don't install fax related files - bug #195467
sed -e 's:var/log/mgetty:var/log/mgetty/mgetty:' \
-e 's:var/log/sendfax:var/log/mgetty/sendfax:' \
@@ -115,7 +115,7 @@ src_install () {
docinto vgetty/doc
dodoc voice/doc/*
- if ! use nofax; then
+ if use fax; then
mv samples/new_fax.all samples_new_fax.all || die "move failed."
docinto samples
dodoc samples/*
@@ -133,7 +133,7 @@ src_install () {
dodir /var/spool/voice
keepdir /var/spool/voice/incoming
keepdir /var/spool/voice/messages
- if ! use nofax; then
+ if use fax; then
dodir /var/spool/fax
dodir /var/spool/fax/outgoing
keepdir /var/spool/fax/outgoing/locks
@@ -146,8 +146,8 @@ pkg_postinst() {
elog "of the group fax in order to access files"
elog
elog "If you want to grab voice messages from a remote location, you must save"
- elog "the password in ${ROOT}var/spool/voice/.code file"
+ elog "the password in /var/spool/voice/.code file"
echo
- ewarn "${ROOT}var/spool/voice/.code and ${ROOT}var/spool/voice/messages/Index"
+ ewarn "/var/spool/voice/.code and /var/spool/voice/messages/Index"
ewarn "are not longer created by this automatically!"
}