Gentoo Archives: gentoo-commits

From: "Hanno Boeck (hanno)" <hanno@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-libs/libhx: ChangeLog libhx-3.5.ebuild
Date: Fri, 20 Aug 2010 17:34:21
Message-Id: 20100820173413.D42302004E@flycatcher.gentoo.org
1 hanno 10/08/20 17:34:13
2
3 Modified: ChangeLog
4 Added: libhx-3.5.ebuild
5 Log:
6 libhx bump and security fix
7 (Portage version: 2.1.8.3/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.24 sys-libs/libhx/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libhx/ChangeLog?rev=1.24&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libhx/ChangeLog?rev=1.24&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libhx/ChangeLog?r1=1.23&r2=1.24
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-libs/libhx/ChangeLog,v
19 retrieving revision 1.23
20 retrieving revision 1.24
21 diff -u -r1.23 -r1.24
22 --- ChangeLog 13 Aug 2010 13:31:54 -0000 1.23
23 +++ ChangeLog 20 Aug 2010 17:34:13 -0000 1.24
24 @@ -1,6 +1,13 @@
25 # ChangeLog for sys-libs/libhx
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/libhx/ChangeLog,v 1.23 2010/08/13 13:31:54 josejx Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/libhx/ChangeLog,v 1.24 2010/08/20 17:34:13 hanno Exp $
29 +
30 +*libhx-3.5 (20 Aug 2010)
31 +
32 + 20 Aug 2010; Hanno Boeck <hanno@g.o> +libhx-3.5.ebuild,
33 + +files/libhx-3.5-buffer-overflow.patch:
34 + Version bump and fix for security bug #333635, thanks to Tim Sammut for
35 + notice.
36
37 13 Aug 2010; Joseph Jezak <josejx@g.o> libhx-3.4.ebuild:
38 Marked ppc stable for bug #328501.
39
40
41
42 1.1 sys-libs/libhx/libhx-3.5.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libhx/libhx-3.5.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libhx/libhx-3.5.ebuild?rev=1.1&content-type=text/plain
46
47 Index: libhx-3.5.ebuild
48 ===================================================================
49 # Copyright 1999-2010 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/sys-libs/libhx/libhx-3.5.ebuild,v 1.1 2010/08/20 17:34:13 hanno Exp $
52
53 EAPI=3
54
55 inherit eutils
56
57 DESCRIPTION="Platform independent library providing basic system functions."
58 HOMEPAGE="http://libhx.sourceforge.net"
59 SRC_URI="mirror://sourceforge/${PN}/libHX-${PV}.tar.xz"
60
61 LICENSE="GPL-3"
62 SLOT="0"
63 KEYWORDS="~amd64 ~ppc ~x86"
64 IUSE=""
65
66 DEPEND="app-arch/xz-utils"
67 RDEPEND=""
68
69 S="${WORKDIR}/libHX-${PV}"
70
71 src_prepare() {
72 epatch "${FILESDIR}/${P}-buffer-overflow.patch"
73 }
74
75 src_configure() {
76 econf --docdir="/usr/share/doc/${PF}" || die "econf failed"
77 }
78
79 src_install() {
80 emake DESTDIR="${D}" install || die "emake install failed"
81 dodoc doc/*.txt || die
82 }