Gentoo Archives: gentoo-commits

From: "Arfrever Frehtes Taifersar Arahesis (arfrever)" <arfrever@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-i18n/enca: ChangeLog enca-1.13.ebuild
Date: Thu, 25 Feb 2010 18:13:33
Message-Id: E1NkiDK-000595-Kc@stork.gentoo.org
1 arfrever 10/02/25 18:13:30
2
3 Modified: ChangeLog
4 Added: enca-1.13.ebuild
5 Log:
6 Version bump.
7 (Portage version: 15455-svn/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.61 app-i18n/enca/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/enca/ChangeLog?rev=1.61&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/enca/ChangeLog?rev=1.61&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/enca/ChangeLog?r1=1.60&r2=1.61
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-i18n/enca/ChangeLog,v
19 retrieving revision 1.60
20 retrieving revision 1.61
21 diff -u -r1.60 -r1.61
22 --- ChangeLog 25 Feb 2010 11:29:49 -0000 1.60
23 +++ ChangeLog 25 Feb 2010 18:13:29 -0000 1.61
24 @@ -1,6 +1,12 @@
25 # ChangeLog for app-i18n/enca
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/enca/ChangeLog,v 1.60 2010/02/25 11:29:49 phajdan.jr Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/enca/ChangeLog,v 1.61 2010/02/25 18:13:29 arfrever Exp $
29 +
30 +*enca-1.13 (25 Feb 2010)
31 +
32 + 25 Feb 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
33 + +enca-1.13.ebuild:
34 + Version bump.
35
36 25 Feb 2010; Pawel Hajdan jr <phajdan.jr@g.o> enca-1.12.ebuild:
37 Make recode support optional, wrt bug #257256 by Leonid Krivoshein
38
39
40
41 1.1 app-i18n/enca/enca-1.13.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/enca/enca-1.13.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/enca/enca-1.13.ebuild?rev=1.1&content-type=text/plain
45
46 Index: enca-1.13.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/app-i18n/enca/enca-1.13.ebuild,v 1.1 2010/02/25 18:13:29 arfrever Exp $
51
52 EAPI="2"
53
54 inherit toolchain-funcs
55
56 DESCRIPTION="ENCA detects the character coding of a file and converts it if desired"
57 HOMEPAGE="http://gitorious.org/enca"
58 SRC_URI="http://dl.cihar.com/${PN}/${P}.tar.bz2"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
63 IUSE="doc +recode"
64
65 DEPEND="recode? ( >=app-text/recode-3.6_p15 )"
66 RDEPEND="${DEPEND}"
67
68 src_configure() {
69 econf \
70 --enable-external \
71 $(use_with recode librecode /usr) \
72 $(use_enable doc gtk-doc)
73 }
74
75 src_compile() {
76 if tc-is-cross-compiler; then
77 pushd tools > /dev/null
78 $(tc-getBUILD_CC) -o make_hash make_hash.c || die "native make_hash failed"
79 popd > /dev/null
80 fi
81 emake || die "emake failed"
82 }
83
84 src_install() {
85 emake DESTDIR="${D}" install || die "emake install failed"
86 }