Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/texinfo: texinfo-5.1.ebuild ChangeLog
Date: Sun, 31 Mar 2013 05:59:45
Message-Id: 20130331055942.04F5E2171C@flycatcher.gentoo.org
1 vapier 13/03/31 05:59:41
2
3 Modified: ChangeLog
4 Added: texinfo-5.1.ebuild
5 Log:
6 Version bump #462944 by Manuel Rüger.
7
8 (Portage version: 2.2.0_alpha169/cvs/Linux x86_64, signed Manifest commit with key FB7C4156)
9
10 Revision Changes Path
11 1.118 sys-apps/texinfo/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/texinfo/ChangeLog?rev=1.118&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/texinfo/ChangeLog?rev=1.118&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/texinfo/ChangeLog?r1=1.117&r2=1.118
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-apps/texinfo/ChangeLog,v
20 retrieving revision 1.117
21 retrieving revision 1.118
22 diff -u -r1.117 -r1.118
23 --- ChangeLog 3 Mar 2013 14:57:57 -0000 1.117
24 +++ ChangeLog 31 Mar 2013 05:59:41 -0000 1.118
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sys-apps/texinfo
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/texinfo/ChangeLog,v 1.117 2013/03/03 14:57:57 ssuominen Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/texinfo/ChangeLog,v 1.118 2013/03/31 05:59:41 vapier Exp $
30 +
31 +*texinfo-5.1 (31 Mar 2013)
32 +
33 + 31 Mar 2013; Mike Frysinger <vapier@g.o> +texinfo-5.1.ebuild:
34 + Version bump #462944 by Manuel Rüger.
35
36 03 Mar 2013; Samuli Suominen <ssuominen@g.o> texinfo-4.13-r2.ebuild,
37 +files/texinfo-4.13-tinfo.patch:
38
39
40
41 1.1 sys-apps/texinfo/texinfo-5.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/texinfo/texinfo-5.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/texinfo/texinfo-5.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: texinfo-5.1.ebuild
47 ===================================================================
48 # Copyright 1999-2013 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/sys-apps/texinfo/texinfo-5.1.ebuild,v 1.1 2013/03/31 05:59:41 vapier Exp $
51
52 EAPI="3"
53
54 inherit flag-o-matic
55
56 DESCRIPTION="The GNU info program and utilities"
57 HOMEPAGE="http://www.gnu.org/software/texinfo/"
58 SRC_URI="mirror://gnu/${PN}/${P}.tar.xz"
59
60 LICENSE="GPL-3"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
63 IUSE="nls static"
64
65 RDEPEND="!=app-text/tetex-2*
66 >=sys-libs/ncurses-5.2-r2
67 dev-lang/perl
68 dev-perl/libintl-perl
69 dev-perl/Unicode-EastAsianWidth
70 dev-perl/Text-Unidecode
71 nls? ( virtual/libintl )"
72 DEPEND="${RDEPEND}
73 app-arch/xz-utils
74 nls? ( sys-devel/gettext )"
75
76 src_configure() {
77 use static && append-ldflags -static
78 econf \
79 --with-external-libintl-perl \
80 --with-external-Unicode-EastAsianWidth \
81 --with-external-Text-Unidecode \
82 $(use_enable nls)
83 }
84
85 src_install() {
86 emake DESTDIR="${D}" install || die
87 dodoc AUTHORS ChangeLog NEWS README TODO
88 newdoc info/README README.info
89 }