Gentoo Archives: gentoo-commits

From: "Radoslaw Stachowiak (radek)" <radek@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-arch/lzma: lzma-4.63.ebuild ChangeLog
Date: Sun, 25 Jan 2009 19:56:31
Message-Id: E1LRB5p-0003M9-OO@stork.gentoo.org
1 radek 09/01/25 19:56:29
2
3 Modified: ChangeLog
4 Added: lzma-4.63.ebuild
5 Log:
6 Version bump, and changed binary name due to #218459
7 (Portage version: 2.1.6.7/cvs/Linux i686)
8
9 Revision Changes Path
10 1.12 app-arch/lzma/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-arch/lzma/ChangeLog?rev=1.12&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-arch/lzma/ChangeLog?rev=1.12&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-arch/lzma/ChangeLog?r1=1.11&r2=1.12
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-arch/lzma/ChangeLog,v
19 retrieving revision 1.11
20 retrieving revision 1.12
21 diff -u -r1.11 -r1.12
22 --- ChangeLog 11 May 2008 19:44:38 -0000 1.11
23 +++ ChangeLog 25 Jan 2009 19:56:29 -0000 1.12
24 @@ -1,6 +1,11 @@
25 # ChangeLog for app-arch/lzma
26 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-arch/lzma/ChangeLog,v 1.11 2008/05/11 19:44:38 solar Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/app-arch/lzma/ChangeLog,v 1.12 2009/01/25 19:56:29 radek Exp $
30 +
31 +*lzma-4.63 (25 Jan 2009)
32 +
33 + 25 Jan 2009; Radoslaw Stachowiak <radek@g.o> +lzma-4.63.ebuild:
34 + Version bump, and changed binary name due to #218459
35
36 11 May 2008; <solar@g.o> lzma-4.57.ebuild:
37 - Keyworded ~arm
38
39
40
41 1.1 app-arch/lzma/lzma-4.63.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-arch/lzma/lzma-4.63.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-arch/lzma/lzma-4.63.ebuild?rev=1.1&content-type=text/plain
45
46 Index: lzma-4.63.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/app-arch/lzma/lzma-4.63.ebuild,v 1.1 2009/01/25 19:56:29 radek Exp $
51
52 inherit toolchain-funcs
53
54 DESCRIPTION="LZMA Stream Compressor from the SDK"
55 HOMEPAGE="http://www.7-zip.org/sdk.html"
56 SRC_URI="mirror://sourceforge/sevenzip/${PN}463.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 }