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/sam2p: ChangeLog sam2p-0.46.ebuild
Date: Wed, 24 Jun 2009 18:48:06
Message-Id: E1MJXVt-00056z-2l@stork.gentoo.org
1 aballier 09/06/24 18:48:05
2
3 Modified: ChangeLog
4 Added: sam2p-0.46.ebuild
5 Log:
6 version bump
7 (Portage version: 2.2_rc33/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.37 media-gfx/sam2p/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/sam2p/ChangeLog?rev=1.37&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/sam2p/ChangeLog?rev=1.37&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/sam2p/ChangeLog?r1=1.36&r2=1.37
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-gfx/sam2p/ChangeLog,v
19 retrieving revision 1.36
20 retrieving revision 1.37
21 diff -u -r1.36 -r1.37
22 --- ChangeLog 18 Mar 2009 19:19:09 -0000 1.36
23 +++ ChangeLog 24 Jun 2009 18:48:05 -0000 1.37
24 @@ -1,6 +1,11 @@
25 # ChangeLog for media-gfx/sam2p
26 -# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/sam2p/ChangeLog,v 1.36 2009/03/18 19:19:09 armin76 Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/sam2p/ChangeLog,v 1.37 2009/06/24 18:48:05 aballier Exp $
30 +
31 +*sam2p-0.46 (24 Jun 2009)
32 +
33 + 24 Jun 2009; Alexis Ballier <aballier@g.o> +sam2p-0.46.ebuild:
34 + version bump
35
36 18 Mar 2009; Raúl Porcel <armin76@g.o> sam2p-0.45-r1.ebuild:
37 arm/s390/sh stable wrt #253551
38
39
40
41 1.1 media-gfx/sam2p/sam2p-0.46.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/sam2p/sam2p-0.46.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/sam2p/sam2p-0.46.ebuild?rev=1.1&content-type=text/plain
45
46 Index: sam2p-0.46.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/media-gfx/sam2p/sam2p-0.46.ebuild,v 1.1 2009/06/24 18:48:05 aballier Exp $
51
52 inherit toolchain-funcs eutils autotools
53
54 DESCRIPTION="Utility to convert raster images to EPS, PDF and many others"
55 HOMEPAGE="http://www.inf.bme.hu/~pts/sam2p/"
56 SRC_URI="http://www.inf.bme.hu/~pts/${P}.tar.gz"
57 LICENSE="GPL-2"
58 SLOT="0"
59 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
60 IUSE="examples gif"
61 DEPEND="dev-lang/perl"
62 RDEPEND="virtual/libc"
63
64 RESTRICT="test"
65
66 src_unpack() {
67 unpack ${A}
68 cd "${S}"
69 epatch "${FILESDIR}/${PN}-0.45-fbsd.patch"
70 epatch "${FILESDIR}/${PN}-0.45-nostrip.patch"
71 epatch "${FILESDIR}/${PN}-0.45-cflags.patch"
72 eautoreconf
73 }
74
75 src_compile() {
76 tc-export CXX
77 econf --enable-lzw $(use_enable gif) || die "econf failed"
78 emake || die "make failed"
79 }
80
81 src_install() {
82 dobin sam2p || die "Failed to install sam2p"
83 dodoc README
84 if use examples; then
85 insinto /usr/share/doc/${PF}/examples
86 doins examples/*
87 fi
88 }