Gentoo Archives: gentoo-commits

From: "Sergey Popov (pinkbyte)" <pinkbyte@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-dialup/mgetty: ChangeLog mgetty-1.1.37.ebuild
Date: Sat, 02 Mar 2013 16:45:08
Message-Id: 20130302164505.79EAE2171D@flycatcher.gentoo.org
1 pinkbyte 13/03/02 16:45:05
2
3 Modified: ChangeLog mgetty-1.1.37.ebuild
4 Log:
5 Fix sed's paths in src_prepare, fix problem with doc building and installation wrt bug #459906. Thanks to Juergen Rose for discovering this issue
6
7 (Portage version: 2.2.0_alpha163/cvs/Linux x86_64, signed Manifest commit with key 0x1F357D42)
8
9 Revision Changes Path
10 1.104 net-dialup/mgetty/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dialup/mgetty/ChangeLog?rev=1.104&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dialup/mgetty/ChangeLog?rev=1.104&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dialup/mgetty/ChangeLog?r1=1.103&r2=1.104
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-dialup/mgetty/ChangeLog,v
19 retrieving revision 1.103
20 retrieving revision 1.104
21 diff -u -r1.103 -r1.104
22 --- ChangeLog 24 Feb 2013 22:14:10 -0000 1.103
23 +++ ChangeLog 2 Mar 2013 16:45:05 -0000 1.104
24 @@ -1,6 +1,11 @@
25 # ChangeLog for net-dialup/mgetty
26 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-dialup/mgetty/ChangeLog,v 1.103 2013/02/24 22:14:10 pinkbyte Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-dialup/mgetty/ChangeLog,v 1.104 2013/03/02 16:45:05 pinkbyte Exp $
29 +
30 + 02 Mar 2013; Sergey Popov <pinkbyte@g.o> mgetty-1.1.37.ebuild:
31 + Fix sed's paths in src_prepare, fix problem with doc building and
32 + installation wrt bug #459906. Thanks to Juergen Rose for discovering this
33 + issue
34
35 *mgetty-1.1.37 (24 Feb 2013)
36
37
38
39
40 1.2 net-dialup/mgetty/mgetty-1.1.37.ebuild
41
42 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dialup/mgetty/mgetty-1.1.37.ebuild?rev=1.2&view=markup
43 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dialup/mgetty/mgetty-1.1.37.ebuild?rev=1.2&content-type=text/plain
44 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dialup/mgetty/mgetty-1.1.37.ebuild?r1=1.1&r2=1.2
45
46 Index: mgetty-1.1.37.ebuild
47 ===================================================================
48 RCS file: /var/cvsroot/gentoo-x86/net-dialup/mgetty/mgetty-1.1.37.ebuild,v
49 retrieving revision 1.1
50 retrieving revision 1.2
51 diff -u -r1.1 -r1.2
52 --- mgetty-1.1.37.ebuild 24 Feb 2013 22:14:10 -0000 1.1
53 +++ mgetty-1.1.37.ebuild 2 Mar 2013 16:45:05 -0000 1.2
54 @@ -1,6 +1,6 @@
55 # Copyright 1999-2013 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 -# $Header: /var/cvsroot/gentoo-x86/net-dialup/mgetty/mgetty-1.1.37.ebuild,v 1.1 2013/02/24 22:14:10 pinkbyte Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/net-dialup/mgetty/mgetty-1.1.37.ebuild,v 1.2 2013/03/02 16:45:05 pinkbyte Exp $
59
60 EAPI=5
61 inherit eutils flag-o-matic toolchain-funcs user
62 @@ -44,16 +44,18 @@
63 -e 's:var/log/sendfax:var/log/mgetty/sendfax:' \
64 -e 's:\/\* \(\#define CNDFILE "dialin.config"\) \*\/:\1:' \
65 -e 's:\(\#define FAX_NOTIFY_PROGRAM\).*:\1 "/etc/mgetty+sendfax/new_fax":' \
66 - "${S}/policy.h-dist" > "${S}/policy.h" || die 'creating policy.h failed'
67 + policy.h-dist > policy.h || die 'creating policy.h failed'
68
69 sed -i -e 's:/usr/local/lib/mgetty+sendfax:/etc/mgetty+sendfax:' faxrunq.config || die 'changing mgetty config dir failed'
70 sed -i -e 's:/usr/local/bin/g3cat:/usr/bin/g3cat:' faxrunq.config fax/faxspool.rules || die 'changing g3cat path failed'
71
72 sed -e "/^doc-all:/s/mgetty.asc mgetty.info mgetty.dvi mgetty.ps/mgetty.info/" \
73 - -i "${S}/doc/Makefile" || die 'first sed on doc/Makefile failed'
74 + -i doc/Makefile || die 'first sed on doc/Makefile failed'
75 if use doc; then
76 - sed -e "s/^doc-all:/doc-all: mgetty.ps/" \
77 - -i "${S}/doc/Makefile" || die 'second sed on doc/Makefile failed'
78 + sed -i \
79 + -e "s/^doc-all:/doc-all: mgetty.ps/" \
80 + -e "s/^all:/all: doc-all/" \
81 + doc/Makefile || die 'second sed on doc/Makefile failed'
82 fi
83 }