Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-editors/hteditor: ChangeLog hteditor-2.0.22.ebuild
Date: Tue, 02 Jul 2013 17:47:07
Message-Id: 20130702174703.63F522171C@flycatcher.gentoo.org
1 radhermit 13/07/02 17:47:03
2
3 Modified: ChangeLog
4 Added: hteditor-2.0.22.ebuild
5 Log:
6 Version bump (bug #475474).
7
8 (Portage version: 2.2.0_alpha186/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
9
10 Revision Changes Path
11 1.64 app-editors/hteditor/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/hteditor/ChangeLog?rev=1.64&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/hteditor/ChangeLog?rev=1.64&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/hteditor/ChangeLog?r1=1.63&r2=1.64
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-editors/hteditor/ChangeLog,v
20 retrieving revision 1.63
21 retrieving revision 1.64
22 diff -u -r1.63 -r1.64
23 --- ChangeLog 14 Feb 2013 22:04:08 -0000 1.63
24 +++ ChangeLog 2 Jul 2013 17:47:03 -0000 1.64
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-editors/hteditor
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-editors/hteditor/ChangeLog,v 1.63 2013/02/14 22:04:08 ago Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-editors/hteditor/ChangeLog,v 1.64 2013/07/02 17:47:03 radhermit Exp $
30 +
31 +*hteditor-2.0.22 (02 Jul 2013)
32 +
33 + 02 Jul 2013; Tim Harder <radhermit@g.o> +hteditor-2.0.22.ebuild:
34 + Version bump (bug #475474).
35
36 14 Feb 2013; Agostino Sarubbo <ago@g.o> hteditor-2.0.21.ebuild:
37 Stable for ppc, wrt bug #457232
38
39
40
41 1.1 app-editors/hteditor/hteditor-2.0.22.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/hteditor/hteditor-2.0.22.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/hteditor/hteditor-2.0.22.ebuild?rev=1.1&content-type=text/plain
45
46 Index: hteditor-2.0.22.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/app-editors/hteditor/hteditor-2.0.22.ebuild,v 1.1 2013/07/02 17:47:03 radhermit Exp $
51
52 EAPI=5
53
54 inherit toolchain-funcs
55
56 MY_P=${P/editor}
57
58 DESCRIPTION="A file viewer, editor and analyzer for text, binary, and executable files"
59 HOMEPAGE="http://hte.sourceforge.net/"
60 SRC_URI="mirror://sourceforge/hte/${MY_P}.tar.bz2"
61
62 LICENSE="GPL-2"
63 SLOT="0"
64 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x86-solaris"
65 IUSE="X"
66
67 RDEPEND="sys-libs/ncurses
68 X? ( x11-libs/libX11 )
69 >=dev-libs/lzo-2"
70 DEPEND="${RDEPEND}
71 virtual/yacc
72 sys-devel/flex"
73
74 DOCS=( AUTHORS ChangeLog KNOWNBUGS README TODO )
75
76 S=${WORKDIR}/${MY_P}
77
78 src_configure() {
79 econf \
80 $(use_enable X x11-textmode) \
81 --enable-maintainermode
82 }
83
84 src_compile() {
85 emake AR="$(tc-getAR)" CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}"
86 }
87
88 src_install() {
89 #For prefix
90 chmod u+x "${S}/install-sh"
91
92 default
93
94 dohtml doc/*.html
95 doinfo doc/*.info
96 }