Gentoo Archives: gentoo-commits

From: "Markos Chandras (hwoarang)" <hwoarang@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-gfx/icoutils: icoutils-0.29.1-r2.ebuild ChangeLog
Date: Sun, 03 Jun 2012 18:04:57
Message-Id: 20120603180416.117ED2004B@flycatcher.gentoo.org
1 hwoarang 12/06/03 18:04:16
2
3 Modified: ChangeLog
4 Added: icoutils-0.29.1-r2.ebuild
5 Log:
6 Fix building with newer gettext. Bug #418111
7
8 (Portage version: 2.1.10.64/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.25 media-gfx/icoutils/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/icoutils/ChangeLog?rev=1.25&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/icoutils/ChangeLog?rev=1.25&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/icoutils/ChangeLog?r1=1.24&r2=1.25
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-gfx/icoutils/ChangeLog,v
20 retrieving revision 1.24
21 retrieving revision 1.25
22 diff -u -r1.24 -r1.25
23 --- ChangeLog 15 Jan 2012 15:19:10 -0000 1.24
24 +++ ChangeLog 3 Jun 2012 18:04:15 -0000 1.25
25 @@ -1,6 +1,12 @@
26 # ChangeLog for media-gfx/icoutils
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/icoutils/ChangeLog,v 1.24 2012/01/15 15:19:10 phajdan.jr Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/icoutils/ChangeLog,v 1.25 2012/06/03 18:04:15 hwoarang Exp $
30 +
31 +*icoutils-0.29.1-r2 (03 Jun 2012)
32 +
33 + 03 Jun 2012; Markos Chandras <hwoarang@g.o>
34 + +files/icoutils-0.29.1-gettext.patch, +icoutils-0.29.1-r2.ebuild:
35 + Fix building with newer gettext. Bug #418111
36
37 15 Jan 2012; Pawel Hajdan jr <phajdan.jr@g.o>
38 icoutils-0.29.1-r1.ebuild:
39
40
41
42 1.1 media-gfx/icoutils/icoutils-0.29.1-r2.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/icoutils/icoutils-0.29.1-r2.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/icoutils/icoutils-0.29.1-r2.ebuild?rev=1.1&content-type=text/plain
46
47 Index: icoutils-0.29.1-r2.ebuild
48 ===================================================================
49 # Copyright 1999-2012 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/media-gfx/icoutils/icoutils-0.29.1-r2.ebuild,v 1.1 2012/06/03 18:04:15 hwoarang Exp $
52
53 EAPI="2"
54
55 inherit autotools eutils
56
57 DESCRIPTION="A set of programs for extracting and converting images in Microsoft Windows icon and cursor files (.ico, .cur)."
58 HOMEPAGE="http://www.nongnu.org/icoutils/"
59 SRC_URI="http://savannah.nongnu.org/download/icoutils/${P}.tar.bz2"
60
61 KEYWORDS="~amd64 ~ppc ~x86"
62 LICENSE="GPL-2"
63 SLOT="0"
64 IUSE="nls"
65
66 RDEPEND="media-libs/libpng
67 nls? ( virtual/libintl )
68 >=dev-lang/perl-5.6
69 >=dev-perl/libwww-perl-5.64"
70
71 DEPEND="${RDEPEND}
72 nls? ( sys-devel/gettext )"
73
74 src_prepare() {
75 epatch "${FILESDIR}"/${P}-locale.patch
76 epatch "${FILESDIR}"/${P}-gettext.patch
77 AT_M4DIR=m4 eautoreconf
78 }
79
80 src_configure() {
81 econf \
82 `use_enable nls` \
83 --disable-dependency-tracking || die
84 }
85
86 src_install() {
87 emake DESTDIR="${D}" mkinstalldirs="mkdir -p" install || die
88 dodoc AUTHORS ChangeLog NEWS README TODO || die "dodoc failed"
89 }