Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-misc/efax-gtk: efax-gtk-3.2.12.ebuild ChangeLog
Date: Tue, 04 Jun 2013 19:18:18
Message-Id: 20130604191809.CC5682171D@flycatcher.gentoo.org
1 ssuominen 13/06/04 19:18:09
2
3 Modified: ChangeLog
4 Added: efax-gtk-3.2.12.ebuild
5 Log:
6 Version bump to make use of the new series of c++-gtk-utils >= 2.2.0
7
8 (Portage version: 2.2.0_alpha177/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)
9
10 Revision Changes Path
11 1.42 x11-misc/efax-gtk/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/efax-gtk/ChangeLog?rev=1.42&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/efax-gtk/ChangeLog?rev=1.42&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/efax-gtk/ChangeLog?r1=1.41&r2=1.42
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-misc/efax-gtk/ChangeLog,v
20 retrieving revision 1.41
21 retrieving revision 1.42
22 diff -u -r1.41 -r1.42
23 --- ChangeLog 31 May 2013 15:45:07 -0000 1.41
24 +++ ChangeLog 4 Jun 2013 19:18:09 -0000 1.42
25 @@ -1,6 +1,11 @@
26 # ChangeLog for x11-misc/efax-gtk
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/efax-gtk/ChangeLog,v 1.41 2013/05/31 15:45:07 xmw Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/efax-gtk/ChangeLog,v 1.42 2013/06/04 19:18:09 ssuominen Exp $
30 +
31 +*efax-gtk-3.2.12 (04 Jun 2013)
32 +
33 + 04 Jun 2013; Samuli Suominen <ssuominen@g.o> +efax-gtk-3.2.12.ebuild:
34 + Version bump to make use of the new series of c++-gtk-utils >= 2.2.0
35
36 *efax-gtk-3.2.11 (31 May 2013)
37
38
39
40
41 1.1 x11-misc/efax-gtk/efax-gtk-3.2.12.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/efax-gtk/efax-gtk-3.2.12.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/efax-gtk/efax-gtk-3.2.12.ebuild?rev=1.1&content-type=text/plain
45
46 Index: efax-gtk-3.2.12.ebuild
47 ===================================================================
48 # Copyright 1999-2013 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/x11-misc/efax-gtk/efax-gtk-3.2.12.ebuild,v 1.1 2013/06/04 19:18:09 ssuominen Exp $
51
52 EAPI=5
53
54 DESCRIPTION="A graphical frontend for the 'efax' application"
55 HOMEPAGE="http://efax-gtk.sourceforge.net/"
56 SRC_URI="mirror://sourceforge/${PN}/${P}.src.tgz"
57
58 LICENSE="GPL-2 LGPL-2.1"
59 SLOT="0"
60 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
61 IUSE="nls"
62
63 RDEPEND=">=dev-libs/glib-2.10
64 media-libs/tiff:0=
65 x11-libs/libX11
66 x11-libs/c++-gtk-utils:0
67 x11-libs/gtk+:3"
68 DEPEND="${RDEPEND}
69 virtual/pkgconfig
70 nls? ( sys-devel/gettext )"
71
72 DOCS="AUTHORS BUGS ChangeLog README"
73
74 src_prepare() {
75 # Prevent sandbox violation with chown/chgrp and existing spooldir
76 sed -i -e '/ch.*lp.*spooldir/d' efax-gtk-faxfilter/Makefile.in || die
77
78 sed -i \
79 -e '/^Encoding/d' \
80 -e '/^Categories/s:Office;::' \
81 ${PN}.desktop || die
82 }
83
84 src_configure() {
85 econf \
86 $(use_enable nls) \
87 --with-gtk-version=gtk3
88 }
89
90 src_install() {
91 default
92 # File collision with net-misc/efax wrt #401221
93 mv "${ED}"usr/share/man/man1/efax{,-0.9a}.1 || die
94 mv "${ED}"usr/share/man/man1/efix{,-0.9a}.1 || die
95 }
96
97 pkg_postinst() {
98 local spooldir="${EROOT}"/var/spool/fax
99 [[ -d ${spooldir} ]] && chown lp:lp "${spooldir}"
100 }