Gentoo Archives: gentoo-commits

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