Gentoo Archives: gentoo-commits

From: "Anthony G. Basile (blueness)" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-i18n/enca: ChangeLog enca-1.13-r3.ebuild
Date: Sun, 01 Jul 2012 13:16:09
Message-Id: 20120701131558.266922004C@flycatcher.gentoo.org
1 blueness 12/07/01 13:15:58
2
3 Modified: ChangeLog
4 Added: enca-1.13-r3.ebuild
5 Log:
6 Make enca multilib aware, keyword ~mips, bug #424171
7
8 (Portage version: 2.1.10.65/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.80 app-i18n/enca/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/enca/ChangeLog?rev=1.80&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/enca/ChangeLog?rev=1.80&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/enca/ChangeLog?r1=1.79&r2=1.80
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-i18n/enca/ChangeLog,v
20 retrieving revision 1.79
21 retrieving revision 1.80
22 diff -u -r1.79 -r1.80
23 --- ChangeLog 15 May 2012 13:01:08 -0000 1.79
24 +++ ChangeLog 1 Jul 2012 13:15:58 -0000 1.80
25 @@ -1,6 +1,12 @@
26 # ChangeLog for app-i18n/enca
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/enca/ChangeLog,v 1.79 2012/05/15 13:01:08 aballier Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/enca/ChangeLog,v 1.80 2012/07/01 13:15:58 blueness Exp $
30 +
31 +*enca-1.13-r3 (01 Jul 2012)
32 +
33 + 01 Jul 2012; Anthony G. Basile <blueness@g.o> +enca-1.13-r3.ebuild,
34 + +files/enca-remove-dirty-path-hack.patch:
35 + Make enca multilib aware, keyword ~mips, bug #424171
36
37 15 May 2012; Alexis Ballier <aballier@g.o> enca-1.13-r2.ebuild:
38 keyword ~amd64-fbsd
39
40
41
42 1.1 app-i18n/enca/enca-1.13-r3.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/enca/enca-1.13-r3.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/enca/enca-1.13-r3.ebuild?rev=1.1&content-type=text/plain
46
47 Index: enca-1.13-r3.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/app-i18n/enca/enca-1.13-r3.ebuild,v 1.1 2012/07/01 13:15:58 blueness Exp $
52
53 EAPI="4"
54
55 inherit eutils toolchain-funcs autotools-utils
56
57 DESCRIPTION="ENCA detects the character coding of a file and converts it if desired"
58 HOMEPAGE="http://gitorious.org/enca"
59 SRC_URI="http://dl.cihar.com/${PN}/${P}.tar.bz2"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
64 IUSE="doc +recode"
65
66 DEPEND="recode? ( >=app-text/recode-3.6_p15 )"
67 RDEPEND="${DEPEND}"
68
69 AUTOTOOLS_AUTORECONF=2.52
70
71 src_prepare() {
72 epatch "${FILESDIR}"/${PN}-remove-dirty-path-hack.patch
73 autotools-utils_src_prepare
74 }
75
76 src_configure() {
77 local myeconfargs=(
78 --enable-external
79 --disable-static
80 $(use_with recode librecode "${EPREFIX}"/usr)
81 $(use_enable doc gtk-doc)
82 )
83 autotools-utils_src_configure
84 }
85
86 src_compile() {
87 if tc-is-cross-compiler; then
88 pushd tools > /dev/null
89 $(tc-getBUILD_CC) -o make_hash make_hash.c || die "native make_hash failed"
90 popd > /dev/null
91 fi
92 autotools-utils_src_compile
93 }
94
95 src_install() {
96 autotools-utils_src_install
97 }