Gentoo Archives: gentoo-commits

From: "Alexis Ballier (aballier)" <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-gfx/pstoedit: ChangeLog pstoedit-3.70.ebuild
Date: Wed, 29 Apr 2015 15:23:05
Message-Id: 20150429152253.6D61D99B@oystercatcher.gentoo.org
1 aballier 15/04/29 15:22:52
2
3 Modified: ChangeLog
4 Added: pstoedit-3.70.ebuild
5 Log:
6 version bump, bug #541384; properly remove all .la files, bug #537476
7
8 Signed-off-by: Alexis Ballier <aballier@g.o>
9 (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
10
11 Revision Changes Path
12 1.93 media-gfx/pstoedit/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/pstoedit/ChangeLog?rev=1.93&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/pstoedit/ChangeLog?rev=1.93&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/pstoedit/ChangeLog?r1=1.92&r2=1.93
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/media-gfx/pstoedit/ChangeLog,v
21 retrieving revision 1.92
22 retrieving revision 1.93
23 diff -u -r1.92 -r1.93
24 --- ChangeLog 14 Apr 2015 13:23:57 -0000 1.92
25 +++ ChangeLog 29 Apr 2015 15:22:52 -0000 1.93
26 @@ -1,6 +1,11 @@
27 # ChangeLog for media-gfx/pstoedit
28 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/pstoedit/ChangeLog,v 1.92 2015/04/14 13:23:57 ago Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/pstoedit/ChangeLog,v 1.93 2015/04/29 15:22:52 aballier Exp $
31 +
32 +*pstoedit-3.70 (29 Apr 2015)
33 +
34 + 29 Apr 2015; Alexis Ballier <aballier@g.o> +pstoedit-3.70.ebuild:
35 + version bump, bug #541384; properly remove all .la files, bug #537476
36
37 14 Apr 2015; Agostino Sarubbo <ago@g.o> pstoedit-3.62.ebuild:
38 Stable for ia64, wrt bug #530658
39
40
41
42 1.1 media-gfx/pstoedit/pstoedit-3.70.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/pstoedit/pstoedit-3.70.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/pstoedit/pstoedit-3.70.ebuild?rev=1.1&content-type=text/plain
46
47 Index: pstoedit-3.70.ebuild
48 ===================================================================
49 # Copyright 1999-2015 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/media-gfx/pstoedit/pstoedit-3.70.ebuild,v 1.1 2015/04/29 15:22:52 aballier Exp $
52
53 EAPI=5
54
55 inherit autotools eutils
56
57 DESCRIPTION="Translate PostScript and PDF graphics into other vector formats"
58 HOMEPAGE="http://sourceforge.net/projects/pstoedit/"
59 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
64 IUSE="emf flash imagemagick plotutils pptx static-libs"
65
66 RDEPEND="
67 >=media-libs/gd-2.0.35-r1
68 >=app-text/ghostscript-gpl-8.71-r1
69 emf? ( >=media-libs/libemf-1.0.3 )
70 flash? ( >=media-libs/ming-0.4.3 )
71 imagemagick? ( >=media-gfx/imagemagick-6.6.1.2[cxx] )
72 plotutils? ( media-libs/plotutils )
73 pptx? ( dev-libs/libzip )
74 "
75 DEPEND="${RDEPEND}
76 virtual/pkgconfig
77 "
78
79 src_prepare() {
80 sed -i \
81 -e '/CXXFLAGS="-g"/d' \
82 -e 's:-pedantic::' \
83 configure.ac || die
84
85 epatch "${FILESDIR}"/${PN}-3.60-libdl.patch
86
87 eautoreconf
88 }
89
90 src_configure() {
91 econf \
92 $(use_enable static-libs static) \
93 $(use_with emf) \
94 $(use_with imagemagick magick) \
95 $(use_with plotutils libplot) \
96 $(use_with flash swf) \
97 $(use_with pptx)
98 }
99
100 src_install() {
101 default
102 doman doc/pstoedit.1
103 dodoc doc/*.txt
104 dohtml doc/*.htm
105
106 find "${ED}" -name '*.la' -delete
107 }