Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-arch/lzma: ChangeLog lzma-4.65.ebuild
Date: Thu, 30 Apr 2009 22:03:55
Message-Id: E1LzeMC-0007zt-0U@stork.gentoo.org
1 patrick 09/04/30 22:03:52
2
3 Modified: ChangeLog
4 Added: lzma-4.65.ebuild
5 Log:
6 Bump to 4.65, incorporating small changes from Tim Harder. Fixes #265712
7 (Portage version: 2.2_rc31/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.13 app-arch/lzma/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-arch/lzma/ChangeLog?rev=1.13&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-arch/lzma/ChangeLog?rev=1.13&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-arch/lzma/ChangeLog?r1=1.12&r2=1.13
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-arch/lzma/ChangeLog,v
19 retrieving revision 1.12
20 retrieving revision 1.13
21 diff -u -r1.12 -r1.13
22 --- ChangeLog 25 Jan 2009 19:56:29 -0000 1.12
23 +++ ChangeLog 30 Apr 2009 22:03:51 -0000 1.13
24 @@ -1,6 +1,11 @@
25 # ChangeLog for app-arch/lzma
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-arch/lzma/ChangeLog,v 1.12 2009/01/25 19:56:29 radek Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-arch/lzma/ChangeLog,v 1.13 2009/04/30 22:03:51 patrick Exp $
29 +
30 +*lzma-4.65 (30 Apr 2009)
31 +
32 + 30 Apr 2009; Patrick Lauer <patrick@g.o> +lzma-4.65.ebuild:
33 + Bump to 4.65, incorporating small changes from Tim Harder. Fixes #265712
34
35 *lzma-4.63 (25 Jan 2009)
36
37
38
39
40 1.1 app-arch/lzma/lzma-4.65.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-arch/lzma/lzma-4.65.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-arch/lzma/lzma-4.65.ebuild?rev=1.1&content-type=text/plain
44
45 Index: lzma-4.65.ebuild
46 ===================================================================
47 # Copyright 1999-2009 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/app-arch/lzma/lzma-4.65.ebuild,v 1.1 2009/04/30 22:03:51 patrick Exp $
50
51 inherit toolchain-funcs versionator
52
53 MY_P="${PN}$(replace_all_version_separators '')"
54 DESCRIPTION="LZMA Stream Compressor from the SDK"
55 HOMEPAGE="http://www.7-zip.org/sdk.html"
56 SRC_URI="mirror://sourceforge/sevenzip/${MY_P}.tar.bz2"
57
58 LICENSE="LGPL-2.1"
59 SLOT="0"
60 KEYWORDS="~arm ~amd64 ~ia64 ~mips ~sparc ~x86"
61 IUSE="doc"
62
63 S=${WORKDIR}
64
65 src_compile() {
66 cd CPP/7zip/Compress/LZMA_Alone
67 emake -f makefile.gcc \
68 CXX="$(tc-getCXX) ${CXXFLAGS}" \
69 CXX_C="$(tc-getCC) ${CFLAGS}" \
70 || die "Make failed"
71 }
72
73 src_install() {
74 newbin CPP/7zip/Compress/LZMA_Alone/lzma lzma_alone || die
75 dodoc history.txt
76 use doc && dodoc 7zC.txt 7zFormat.txt lzma.txt Methods.txt
77
78 einfo "Starting from app-arch/lzma version 4.63 binary name was changed"
79 einfo "to /usr/bin/lzma_alone to avoid conflict with lzma-utils package"
80 }